在SAS图表中,我有一个图表,表示axis2,日期(Batch_date)从2015年6月24日到12/8/2015,以6天为增量。如果我使用声明 -
proc gplot data=datasets.x_batch;
plot
prcnt_10*batch_date=1
prcnt_20*batch_date=2
prcnt_30*batch_date=3
prcnt_40*batch_date=4
prcnt_50*batch_date=5
prcnt_60*batch_date=6
prcnt_70*batch_date=7
prcnt_80*batch_date=8
prcnt_90*batch_date=9
prcnt_100*batch_date=10
prcnt_110*batch_date=11
prcnt_120*batch_date=12....
它成功创建了我的绘图,但刻度线似乎标有默认值(6 / 16,7 / 1 ......等)。我理解如何使用minor=(n=n h=n) and major=(h=n)
来控制刻度线,但它仍然会选择不同的值来显示主刻度线。
有没有办法明确指定每个刻度标记标签(或者更好的是,只调出刻度标记标签的日期变量值),而不明确地说明(order)
语句中的每个日期值?