pairplot(meas, label, group, colors, mode)

버전 1.26.0.1 (2.66 KB) 작성자: Ryosuke F Takeuchi
plot pairwise relationships in matrix
다운로드 수: 1K
업데이트 날짜: 2020/2/28

라이선스 보기

plot pairwise relationships in matrix : similar to 'pairplot' in seaborn (http://seaborn.pydata.org/generated/seaborn.pairplot.html)
easier than 'plotmatrix'
% e.g.
% For stat toolbox users
load fisheriris.mat
colors = lines(3);
label = {'sepal-length', 'sepal-width', 'petal-length', 'petal-width'}
figure; pairplot(meas, label, species, colors, 'both');
% For all users
load Fisher.mat % included in zip
group= Fisher(:,1);
colors = lines(length(unique(group)));
figure;
pairplot(Fisher(:,2:size(Fisher,2)), {'PW', 'PL', 'SW', 'SL'}, num2cell(num2str(group)), colors, 'bar'), ylabel('Probability')
figure; pairplot(meas, label, species, colors, 'both');

인용 양식

Ryosuke F Takeuchi (2024). pairplot(meas, label, group, colors, mode) (https://www.mathworks.com/matlabcentral/fileexchange/60866-pairplot-meas-label-group-colors-mode), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2007b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

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

Start Hunting!

pairplot

버전 게시됨 릴리스 정보
1.26.0.1

update Example code

1.26.0.0

bug fixed : auto color definition

1.25.0.0

add sample data of fisher iris

1.23.0.0

add xlim for each scatter

1.22.0.0

add 'bar' option for old version of MATLAB

1.21.0.0

bug fixed about 'both' mode & example code

1.2.0.0

- add cdf plot & small cdf plot mode

1.1.0.0

bug fixed

1.0.0.0