Unbind (remove) shadow from data, and vice versa
Remove the shadow variables (which end in _NA) from the data, or vice versa.
This will also remove the nabular class from the data.
unbind_shadow(data) unbind_data(data)
data |
data.frame containing shadow columns (created by |
data.frame without shadow columns if using unbind_shadow(), or
without the original data, if using unbind_data().
# bind shadow columns aq_sh <- bind_shadow(airquality) # print data aq_sh # remove shadow columns unbind_shadow(aq_sh) # remove data unbind_data(aq_sh) # errors when you don't use data with shadows ## Not run: unbind_data(airquality) unbind_shadow(airquality) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.