[R] column extraction by name ?

ryszard.czerminski@pharma.novartis.com ryszard.czerminski at pharma.novartis.com
Wed Nov 12 13:50:37 CET 2003


I have a data frame (df) with colums x, y and z.
e.g.  df <- data.frame(x = sample(4), y = sample(4), z = sample(4))
I can extract column z by: df$z or df[3]
I can also extract columns x,y by: df[1:2] or by df[-3].

Is it possible to extract x,y columns in a "symbolic" fashion i.e.
by equivalent of df[-z] (which is illegal) ???

Or alternativeley, is there an equivalent of "index" function,
which would return index of the column given name ?

Ryszard




More information about the R-help mailing list