cols | R Documentation |
Identifies dataframe column names that have all of the pattern arguments .
cols(patterns, df, w = NA, x = NA, y = NA, z = NA)
patterns |
character vector or vector of regular expressions passed to grep pattern argument |
df |
a dataframe with column names to index |
w, x, y, z |
(for backwards compatibility) separate arguments for patterns, if used patterns argument will be ignored |
Be aware that column data labels that are part of another data label are not advisable (e.g. mut1, mut2, mut1.mut2; cols(df,'mut1') will return indices for both 'mut1' and 'mut1.mut2' labeled columns
returns a vector of integer indices of the column names of df
that match to all of patterns
cols(df=data.frame(xyz=1:5,zay=6:10,ybz=11:15,tuv=16:20),patterns = c('y','z')) ## returns 1 2 3
cols(df=data.frame(xyz=1:5,zay=6:10,ybz=11:15,tuv=16:20), w = 'y', x = 'z') ## returns 1 2 3
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.