统计

Figures are always more powerful

1
2
3
4
5
6
7
8
9
10
11
12
>> x = 1:14;
>> freqy = [1 0 1 0 4 0 1 0 3 1 0 0 1 1];
>> subplot(1,3,1);
>> bar(x, freqy);
>> xlim([0 15]);
>> subplot(1,3,2);
>> area(x, freqy);
>> xlim([0 15]);
>> subplot(1,3,3);
>> stem(x, freqy);
>> xlim([0 15]);
>>

1

Boxplot

1

1
2
3
4
5
6
7
8
9
>> marks = [80 81 81 84 88 92 92 94 96 97];
>> boxplot(marks)
>> prctile(marks,[25 50 75]) % 百分比处的值

ans =

81 90 94

>>

1

Skewness

1

Kurtosis

1

Donate? comment?