boxplotPerc

Allows user to specify the percentile values of boxplot whiskers while still using the standard MATLAB boxplot syntax & options.
85 téléchargements
Mise à jour 13 mars 2021

Afficher la licence

PURPOSE: A boxplot function which allows users to specify the percentile
values of boxplot whiskers while still using the standard MATLAB boxplot options.

INPUTS: Use syntax exactly as with the standard "boxplot" command, but
with a scalar or vector of percentile values as the second input.

data - a data matrix as with normal boxplot

percentile - a vector of 2 percentile values [lower, upper],
specified as percentages --OR-- a single scalar indicating the
desired span of percentiles. If the scalar is used, the program
solves for the necessary [lower, upper] values.
Examples: [5 95] or equivalently [90]
[2.5 97.5] or equivalently [95];

varargin - all the remaining boxplot options, according to the
typical MATLAB syntax.

OUTPUT: a boxplot with the whiskers set to the specified percentile or
percentile range values.

EXAMPLE: Here is a highly asymmetric data set along with a call to the boxplotPerc function:

data = normrnd(-1,1,100,5).^3;
boxplotPerc(data,90, 'notch','on','symbol','o','Widths',[0.1:0.1:0.5])

NOTE: This code was inspired by "Box Plot with Whiskers Plotted at Fixed Percentiles" by Robert:
https://www.mathworks.com/matlabcentral/fileexchange/22526-box-plot-with-whiskers-plotted-at-fixed-percentiles

Citation pour cette source

Douglas Cook (2024). boxplotPerc (https://www.mathworks.com/matlabcentral/fileexchange/88808-boxplotperc), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2020b
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.1.0

Added additional visualization examples and fixed issues associated with plotting jitter within the outliers.

1.0.0