Help! Scatter command question

조회 수: 1 (최근 30일)
Leah
Leah 2023년 5월 2일
편집: VBBV 2023년 5월 2일
Plot the data below [hint: use the scatter command] so that you can compare the activity levels of the two genes across the group of patients. Add the correct titles to the axes and set the range to be -10 to 30 on the x-axis and -10 to 30 on the y-axis. This should yield Figure 1. DATA: GeneA = [1.1 0.5 27 1.4 1.9 2.6 3.2 8.1 4.1 0.4 9.4 13 14.1 9.1 18.2 2.1 5.3 16.4 7 21.1 0.3 7.5 17.1 5.2 13.1]; GeneB = [0.2 0.6 11 0.9 1.2 0.9 1.8 4.4 2.5 0.3 5.9 7.9 5.9 6.1 7.2 1.8 1.6 6.1 5 10.1 0.2 4.0 8.8 1.5 4.2];

답변 (1개)

VBBV
VBBV 2023년 5월 2일
편집: VBBV 2023년 5월 2일
GeneA = [1.1 0.5 27 1.4 1.9 2.6 3.2 8.1 4.1 0.4 9.4 13 14.1 9.1 18.2 2.1 5.3 16.4 7 21.1 0.3 7.5 17.1 5.2 13.1];
GeneB = [0.2 0.6 11 0.9 1.2 0.9 1.8 4.4 2.5 0.3 5.9 7.9 5.9 6.1 7.2 1.8 1.6 6.1 5 10.1 0.2 4.0 8.8 1.5 4.2];
Patientdata = [GeneA;GeneB]
Patientdata = 2×25
1.1000 0.5000 27.0000 1.4000 1.9000 2.6000 3.2000 8.1000 4.1000 0.4000 9.4000 13.0000 14.1000 9.1000 18.2000 2.1000 5.3000 16.4000 7.0000 21.1000 0.3000 7.5000 17.1000 5.2000 13.1000 0.2000 0.6000 11.0000 0.9000 1.2000 0.9000 1.8000 4.4000 2.5000 0.3000 5.9000 7.9000 5.9000 6.1000 7.2000 1.8000 1.6000 6.1000 5.0000 10.1000 0.2000 4.0000 8.8000 1.5000 4.2000
X = linspace(-10,30,length(GeneA));
Y = X;
scatter3(X,Y,Patientdata);
xlabel('x-range:[-10,30]');ylabel('y-range:[-10,30]')
legend('GeneA','GeneB')
view([30 45])

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by