Probably something like df[grepl("mood", names(df))] if your data called df
– David Arenburg
df[grepl("mood", names(df), fixed = TRUE)] does not use regular expressions, i.e. in "mood." the dot is not for an arbitrary char - probably that what the op wants? Additionally it is faster (which will not really matter here)
– Patrick Roocks
I know very well that the "," is not necessary and
colnames
could be replaced by
names
but it would not work with matrices and I hate to change the formalism when changing objects.
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
df[grepl("mood", names(df))]
if your data calleddf
– David Arenburgdf[grepl("mood", names(df), fixed = TRUE)]
does not use regular expressions, i.e. in "mood." the dot is not for an arbitrary char - probably that what the op wants? Additionally it is faster (which will not really matter here) – Patrick Roocks