Closed
Description
Arose from this discussion. When the user can specify desired output columns or arguments to their own functions in ...
, there is the danger of partial [see clarification below; this can be the source of problems, but not our current problems] argument name matching assigning args the user meant to be part of ...
to one of our built-in parameters, and getting incorrect output or cryptic errors. Ryan has already encountered this once. The approach of dplyr
and purrr
is to put a dot prefix on all their built-in parameters, as users typically won't use dots as the first character in their own column or function parameter names. We should consider doing the same in epi_slide
, epix_slide
, and any other similar functions.