Hi R helpers,

I have a data frame and I want to change the column names to names I have held 
in another data frame, but I am having difficulty. All data framnes are large 
so i can't input manually. Below is what i have tried so far:

df<-data.frame(a=1:5, b=2:6, d=3:7, e=4:8)
coltitles<-data.frame(v1="col number one", v2="col number two", v3="col number 
three", v4="col number four")

##first attempt

names(df)<-coltitles
names(df)
[1] "1" "1" "1" "1"   ###not what i wanted as I want names(df) to return [1] 
"col number one" "col number two" "col number three" "col number four"



##second attempt

coltitles<-as.vector(coltitles, mode="character")  ##trying to convert to a 
character vector after looking at help
is.vector(coltitles)
[1] TRUE
names(df)<-coltitles
names(df)
[1] "1" "1" "1" "1"   ###again not what I wanted

How can I convert the column names?

Thanks in advance,

Tom

Beyond Hotmail - see what else you can do with Windows Live. Find out more.
_________________________________________________________________


        [[alternative HTML version deleted]]

______________________________________________
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.

Reply via email to