symbol1 pointlabel = ("#N" h=.5 font=simplex nodropcollisions) value=none;
N is a number of cases. I'd like to see that number as label in a scatterplot, instead of a dot.
proc gplot data=have;
plot X * Y = 1; /* Surmised that "= 1" means symbol1 */
run;
quit;
Unfortunately N shows in the plot having many decimal places, all 0.
I figured using int() would do the trick, to just show N alone, no superfluous unwanted decimal places.
I tried several ways, but none seem to work. One approach that does not work is:
"#int(N)"
Another possibility would be to create an ad-hoc variable, N2, that is int(N), and then to use N2 instead of N in the pointlabel. But I'm not sure how to code such.
Any help toward a solution greatly appreciated.
Nicholas Kormanik
... View more