统计 Posted on 2019-08-31 | In matlab | | Words count in article: 117 | Reading time ≈ 1 Figures are always more powerful123456789101112>> 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]);>> Boxplot 123456789>> marks = [80 81 81 84 88 92 92 94 96 97];>> boxplot(marks)>> prctile(marks,[25 50 75]) % 百分比处的值ans = 81 90 94>> Skewness Kurtosis Donate? comment? Donate WeChat Pay Alipay