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
Function that allows you to specify where to cut the data. Takes 2 parameters - data source and at which percentages to show cuts.
quantile(SampleMeans, probs=c(0.15, 0.85))
to show quartiles, would be
quantile(SampleMeans, probs=c(0.25, 0.5, 0.75)).
The text was updated successfully, but these errors were encountered:
Function that allows you to specify where to cut the data. Takes 2 parameters - data source and at which percentages to show cuts.
quantile(SampleMeans, probs=c(0.15, 0.85))
to show quartiles, would be
quantile(SampleMeans, probs=c(0.25, 0.5, 0.75)).
The text was updated successfully, but these errors were encountered: