我正在研究季节性的每月时间序列,我喜欢在 SAS 中按月绘制季节性子序列图或箱线图。类似于以下链接中页面底部的内容:
http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc443.htm
我不确定如何在 SAS 中完成这项工作。我很感激任何帮助。东南
我正在研究季节性的每月时间序列,我喜欢在 SAS 中按月绘制季节性子序列图或箱线图。类似于以下链接中页面底部的内容:
http://www.itl.nist.gov/div898/handbook/pmc/section4/pmc443.htm
我不确定如何在 SAS 中完成这项工作。我很感激任何帮助。东南
无法说明季节性,但箱形图非常简单。假设您从该网站中的数据创建 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;