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