Add a shadow column to dataframe
As an alternative to bind_shadow()
, you can add specific individual shadow
columns to a dataset. These also respect the dplyr verbs
starts_with
, contains
, ends_with
, etc.
add_shadow(data, ...)
data |
data.frame |
... |
One or more unquoted variable names, separated by commas. These also
respect the dplyr verbs |
data.frame
airquality %>% add_shadow(Ozone) airquality %>% add_shadow(Ozone, Solar.R)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.