data_pop_filter {quickcode} | R Documentation |
Remove elements from a data matching filter
Description
Shorthand to remove elements from a data frame based on filter and save as the same name
Usage
data_pop_filter(., remove)
Arguments
. |
data object |
remove |
expression for filter |
Value
data filtered out based on the expression
Examples
# this function removes rows matching the filter expression
data.01 <- mtcars
data.02 <- airquality
#task: remove all mpg > 20
data.01 #data.01 data before pop
data_pop_filter(data.01,mpg > 15) #computes and resaves to variable
#note: this is different from subset(data.01,data.01$mpg > 15)
data.01 #modified data after pop based on filter
#task: remove all multiple. remove all elements where Month == 5 or Solar.R > 50
data.02 #data.02 data before pop
data_pop_filter(data.02,Month == 5 | Solar.R > 50) #computes and resaves to variable
data.02 #modified data after pop based on filter
[Package quickcode version 0.9.1 Index]