The censor mark and quantile functions explicitly list a default value that is being passed to the underlying geom. Would it be more consistent to just wrap those into the ... and users can still overwrite them easily by passing an argument. Update the default with modifyList()
add_confidence_interval(type = c("ribbon", "lines"), ...)
add_censor_mark(shape = 3, size = 2, ...)
add_quantile(y_value = 0.5, linetype = 2, ...)
The censor mark and quantile functions explicitly list a default value that is being passed to the underlying geom. Would it be more consistent to just wrap those into the
...
and users can still overwrite them easily by passing an argument. Update the default withmodifyList()