> 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, <[EMAIL PROTECTED]> 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@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? ______________________________________________ R-help@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.