plot_box_scatter

版本 2.0.1 (1.8 KB) 作者: Hui WANG
A function to plot box as well as scatter
517.0 次下载
更新时间 2019/9/11

查看许可证

%% plot_box_scatter(data, groupIdx, pos, color, symbol, opt)
% Plot boxplot and scatter overlaid figure
% INPUT:
% - data, <vector>, M * 1, M number of total points.
% - groupIdx, <vector>, M * 1, mark different groups of data
% OPTIONAL INPUTS:
% - pos, <vector>, position of each boxplot
% Default: 1 : N, N number of groups
% - color, <cellarray>, cell, N * 1, scatter color of each group
% Default: random
% - symbol, <cellarray>, cell, N * 1, scatter symbol of each group
% Default: random
% - opt, <scalar>, scatter along center of box (0) or fullfill box (1)
% Default: 1
% OUTPUT:
% - ax, current axis
% Example:
% A = rand(100,1); B = rand(20,1); C = rand(60,1); % data
% data = [A;B;C]
% groupIdx = [ones(size(A)); 2* ones(size(B)); 3* ones(size(C))];
% plot_box_scatter(data, groupIdx)
%
% Hui Wang
% wang.hui@wustl.edu
% 2019/09/11

引用格式

Hui WANG (2026). plot_box_scatter (https://ww2.mathworks.cn/matlabcentral/fileexchange/72722-plot_box_scatter), MATLAB Central File Exchange. 检索时间: .

MATLAB 版本兼容性
创建方式 R2019a
兼容任何版本
平台兼容性
Windows macOS Linux
版本 已发布 发行说明
2.0.1

update output

2.0.0

Update colors

1.0.0