-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
Description
Is it possible to create a 'clean' function that removes the flagged observations.
Suggestions:
Add an argument "which" that can either be "ALL" or a list of rules with the default being ALL.
Add an argument that simply deletes the whole row.
clean(flaggedobject, which=ALL, replace=NA)
clean(flaggedobject, which=c(1,2,4), replace=99999)
clean(flaggedobject, which=ALL, deleterow=TRUE)