我正在研究一个季节性的月度时间序列,我喜欢在SAS中绘制季节性子系列图或月份的箱形图。 类似于以下链接页面底部的内容:
http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc443.htm
我不确定如何在SAS中完成这项工作。我感谢任何帮助。 SE
答案 0 :(得分:1)
不能说季节性,但是盒子图非常简单。假设您从该网站中的数据创建SAS数据集,请尝试以下操作:
proc format ;
value mn_name 1='January'
2='February'
3='March'
4='April'
5='May'
6='June'
7='July'
8='August'
9='September'
10='October'
11='November'
12='December'
other='Invalid';
run;
proc sort data=have;
by month;
run;
proc boxplot data=have;
plot Oscillation*month;
format month mn_name.;
run;