Rename a Single Column in an R Data Frame



We can do this by defining the newname as shown below −

> Samp <- data.frame(sample(1:100,10))
> Samp
  sample.1.100..10.
1 47
2 63
3 57
4 16
5 53
6 7
7 54
8 2
9 13
10 14
> colnames(Samp) <- "Sampled Values"
> Samp
  Sampled Values
1 47
2 63
3 57
4 16
5 53
6 7
7 54
8 2
9 13
10 14

Since we only have one column in the data frame, so it is sufficient to use the object name.

Updated on: 2020-07-06T14:11:56+05:30

184 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements