Jitter distribution figure

Function to create a figure showing the individual data points, mean, standard deviation, and distribution of multiple categories.
134 téléchargements
Mise à jour 30 août 2023

Afficher la licence

Function to create a figure showing the individual data points, mean, standard deviation, and distribution of multiple categories.
Plot the distribution to the right of the figure outline (default) or next to the error bars. Choose between a kernel (default) or gaussian distribution. If the distribution is plotted to the right of the figure outline, the figure contains two subplots: Fig.jit and Fig.dist. If the distribution is plotted next to the error bars, the figure contains one subplot: Fig.jit.
Options such as personalized colors, marker size, linewidth, etc. are included.
% Example code with random data
data = [randn(1,50) randn(1,50)+1.6 randn(1,50)+1.4];
cats = [cellstr(repmat('Group A',50,1)); cellstr(repmat('Group B',50,1)); cellstr(repmat('Group C',50,1))];
figure
Fig = jitter_distribution_figure(data, cats, 'YLabel', 'Y label');
set(Fig.jit,'FontSize',23,'linewidth',2,'box','on')

Citation pour cette source

Eline Zwijgers (2024). Jitter distribution figure (https://www.mathworks.com/matlabcentral/fileexchange/110835-jitter-distribution-figure), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2019b
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.0.3

Typing error

1.0.2

Updated description.

1.0.1

Updated description.

1.0.0