[R] Change name of a specific column of a data frame

jim holtman jholtman at gmail.com
Tue Jul 1 21:28:39 CEST 2008


> x <- data.frame(a=1,b=2,c=3)
> x
  a b c
1 1 2 3
> colnames(x)[2] <- "done"
> x
  a done c
1 1    2 3
>


On Tue, Jul 1, 2008 at 3:17 PM,  <naw3 at duke.edu> wrote:
> Hi,
>
> Sorry for the simple question. Is there a way to change the name of only one
> column of an existing data frame?
>
> I know colnames allows you to set the name of all the columns, but only one
> column in the middle of my data frame needs a new name.
>
> Thanks,
> -Nina
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>



-- 
Jim Holtman
Cincinnati, OH
+1 513 646 9390

What is the problem you are trying to solve?



More information about the R-help mailing list