1. 业奇农业网 > 百科 >

怎么用SAS软件绘制茎叶?

下面的例子是用proc univariate语句画茎叶图,希望对你有帮助

怎么用SAS软件绘制茎叶?

data test;

input Score @@;

datalines;

87 73 65 46 76 69 92 84 67 61 77 76 58 88 71 78 92

46 70 64 59 85 74 69 41 97 53 76 50 50 43 78 90 47

61 67 75 81 89 74 80 87 84 64 81 75 83 70 60 70

ods select plots;

proc univariate data=test plots;

var score;

run;

本文由用户上传,如有侵权请联系删除!转转请注明出处:https://nongye.s666.cn/bk/6_6572049654.html