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
Currently, msqrobAggregate() does not allow to pass further arguments to aggregateFeatures(), but this would be useful to have better control on the aggregation. For example, one would want to provide an na.rm = TRUE to methods that are susceptible to missing values.
The easiest option is to implement ... in the function signature. It's straightforward and easy to document.
The text was updated successfully, but these errors were encountered:
Currently,
msqrobAggregate()
does not allow to pass further arguments toaggregateFeatures()
, but this would be useful to have better control on the aggregation. For example, one would want to provide anna.rm = TRUE
to methods that are susceptible to missing values.The easiest option is to implement
...
in the function signature. It's straightforward and easy to document.The text was updated successfully, but these errors were encountered: