[R] How to access a column by its label?

2006-08-03 Thread Neil McLeod
Hi all, Is there any way to access a column of a data frame by its label (title) rather than its column index? For example, I'd like to be able to select animals[,weight] rather than animals[,3], if the third column of the animals data frame has the label weight. Thank you!

Re: [R] How to access a column by its label?

2006-08-03 Thread vincent
?colnames hih __ R-help@stat.math.ethz.ch 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.

Re: [R] How to access a column by its label?

2006-08-03 Thread Marc Schwartz (via MN)
On Thu, 2006-08-03 at 14:44 -0400, Neil McLeod wrote: Hi all, Is there any way to access a column of a data frame by its label (title) rather than its column index? For example, I'd like to be able to select animals[,weight] rather than animals[,3], if the third column of the animals data