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
How are missing values handled by the package? If you assume there are no missing values, then I think it would be good to include something at the beginning of detect.outliers like:
stopifnot(
'Missing values are not allowed in the input dataset.
Please considering removing or imputing missing values first.' = 0 == sum(is.na(data))
);
The text was updated successfully, but these errors were encountered:
How are missing values handled by the package? If you assume there are no missing values, then I think it would be good to include something at the beginning of
detect.outliers
like:The text was updated successfully, but these errors were encountered: