sgplot中的SAS时间序列数据 - x轴

时间:2012-05-05 13:07:16

标签: sas time-series

我试图绘制的数据是一个月内的温度与日期时间(SAS日期时间格式)。我希望x轴上的间隔为一小时或一天。你知道在我把问号放在下面的代码中的地方吗?

谢谢!

%macro makeplot;
proc sgplot data = temp.heating;
where dwelling = 8 & room = 1;
series x = datetime y = temp;
*xaxis values = (&start_date_time to &end_date_time by ?);
run;

%mend makeplot;
%makeplot;

1 个答案:

答案 0 :(得分:1)

SAS datetimes存储秒数,因此86400会给你几天,而3600会给你几个小时。