You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#' modifies the list of preditors so that any which have been modified have the
30
30
#' modified versions included, and not the original. Should only be applied
31
31
#' after both rolling_mean and rolling_sd.
32
-
#' @param epi_data the epi_df
33
-
#' @param cols_modified the list of columns to modify. If this is `NULL`, that means we were modifying every column.
34
-
#' @param predictors the initial set of predictors; any unmodified are kept, any modified are replaced
32
+
#' @param epi_data the epi_df, only included to get the non-key column names
33
+
#' @param cols_modified the list of columns which have been modified. If this is `NULL`, that means we were modifying every column.
34
+
#' @param predictors the initial set of predictors; any unmodified are kept, any modified are replaced with the modified versions (e.g. "a" becoming "a_m17").
35
35
#' @importFrom purrr map map_chr reduce
36
+
#' @return returns an updated list of predictors, with modified columns replaced and non-modified columns left intact.
0 commit comments