Suppose I have a data frame, df
with 30 columns: A1
to A30
. I know that I can subset this data frame by writing a command like:
filteredrows = subset(df, A1 == 30 & A2 == 2 & A3 == "this")
The above example filters data based on values in three columns, but I have to do this for values in about say 12 columns. Writing those 12 values in the subset() function will make it too long. To make the code cleaner, is there a way I can specify the condition as a variable or a function and then use that specify the conditions in the subset function. Is something like the following possible?
x = (A1 == 30 & A2 == 2 & A3 == "this")
filteredrows = subset(df, x)
Thanks in advance.
You can specify the condition as an
expression
and then pass it to subset usingeval
:Your suggestion almost works, you just need a
with
when you getx
.You could also get the subset this way.
You may also want to put
x
in the data framedf
; otherwise reordering the data frame can mess things up, something like