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
windsorize() is expected to replace a given percentage of the top and bottom values from some observations, in our case a vector of numbers. It actually does not effect the lower value , only the higher value.
windsorize(c(2,4,6,8,10))
[1] 2.0 4.0 6.0 8.0 9.2
The text was updated successfully, but these errors were encountered:
windsorize() is expected to replace a given percentage of the top and bottom values from some observations, in our case a vector of numbers. It actually does not effect the lower value , only the higher value.
windsorize(c(2,4,6,8,10))
[1] 2.0 4.0 6.0 8.0 9.2
The text was updated successfully, but these errors were encountered: