Box and whiskers plot (without statistics toolbox)

Creates nice boxplots from data. You don't need a toolbox. Simple yet fully featured.
ダウンロード: 11.6K
更新 2015/9/16

ライセンスの表示

bplot(X)
This function will create a nice boxplot from a set of data. You don't
need a toolbox.
bplot(D) will create a boxplot of data D, no fuss.
T = bplot(D) If X is a matrix, there is one box per column; if X is a
vector, there is just one box. On each box, the central
mark is the median, the edges of the box are the 25th and
75th percentiles
array 'T' for a legend. You can add the legend as legend(T)

T = bplot(D,x) will plot the boxplot of data D above the 'x' value x

T = bplot(D,y,'horiz') will plot a horizontal boxplot at the 'y' value of y

T = bplot(...,'Property', . . . )
T = bplot(...,'PropertyName',PropertyValue, . . . )

% Jitter feature
The boxplot has a cool jitter feature which will help you view each
outlier separately even if two have identical values. It jitters the
points around the other axis so that you can see exactly how many are
there.

% Examples:
bplot(randn(30,3),'outliers')
bplot(randn(30,3),'color','black');
----
X = round(randn(30,4)*5)/5; % random, with some duplicates
T = bplot(X,'points');
legend(T,'location','eastoutside');

% This function was created for inclusion in my larger nhist function.

引用

Jonathan C. Lansey (2024). Box and whiskers plot (without statistics toolbox) (https://www.mathworks.com/matlabcentral/fileexchange/42470-box-and-whiskers-plot-without-statistics-toolbox), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2010b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
謝辞

ヒントを得たファイル: simple box whiskers plot (for those who don't have the statistics toolbox)

ヒントを与えたファイル: Boxplot: boxplotx without toolboxes

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0

Minor update