Data Science Desktop Survival Guide
by Graham Williams |
|||||
Removing Ignored Variables |
20180726 Once we have identified all of the variables to ignore we remove them from our list of variables to use.
# Check the number of variables currently.
length(vars)
# Remove the variables to ignore.
vars <- setdiff(vars, ignore) # Confirm they are now ignored. length(vars)
|