How can I create a scatterplot matrix?

Good evening,
can anyone tell me how to do a scatterplot matrix out of these 4 variables and insert also the groups in different colors??

답변 (1개)

the cyclist
the cyclist 2020년 8월 29일

0 개 추천

Here is one way:
T = readtable('Stress_Reactivity.xlsx');
figure
gscatter(T.cort_3,T.diastolic_3,T.condition)
I recommend reading the documentation for gscatter for details.
I didn't know exactly what you meant by "scatterplot matrix out of these 4 variables", so I just did two variables. I assumed the binary variable condition was how you wanted to group them.

카테고리

도움말 센터File Exchange에서 Scatter Plots에 대해 자세히 알아보기

질문:

2020년 8월 29일

답변:

2020년 8월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by