1

我试图绘制的数据是一个月内温度与日期时间(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;
4

1 回答 1

1

SAS datetimes 存储秒数,因此 86400 将给您天数,而 3600 将给您小时数。

于 2012-05-06T23:06:18.683 回答