我在 SAS 中运行 proc sgplot 来创建直方图。Y 轴:人数,X 轴:英里数。问题是直方图使用 30+ 条非常小的 x 轴间隔来显示数据。我只想在直方图中显示 10 个条形图。我可以在代码中添加一个简单的功能来限制直方图只显示 10 条吗?下面的代码:
proc sgplot data= miles;
title "Cumulative Miles Driven by Number of Individuals"
histogram CumulativeMiles/scale= count
fillattrs=(color=blue);
xaxis values= (0 to 1000 by 100)
label= "Cumulatve Miles Driven"
yaxis values= (0 to 50000 by 10000)
label= "Number of Individuals";
run;