I want to completely disable outlier removal. My data is not normally distributed, so I need all the points to affect the mean.
No products are associated with this question.
Can you explain more about what you want? Ordinarily the boxplot doesn't remove outliers, but instead shows them as separate markers on the plot. Is that what you want to prevent? Here are two invocations of boxplot, one of which includes the outlier in the box-like part rather than as a separate marker:
boxplot([1:10,100]') boxplot([1:10,100]','whisker',1000)
The line across the center of the box is at the median, not the mean, so the outlier doesn't really affect its value directly.
0 Comments