*/ /* creating the macro to make the little sparklines */ %macro sparky2(statenm,state); ods graphics on / width=.75in height=.15in border=off outputfmt=png imagemap=on imagename="&state.try2"; proc sgplot data=tempx (where=(fipsst=&statenm.)) ; series y=propgplus x=year ...
9 proc sgplot data=forecasts; series y=forecast x=date/; scatter y=number x=date/markerattrs=(symbol=diamond color=red); series x=date y=LCL/lineattrs=(pattern=solid color=black); series x=date y=UCL/lineattrs=(pattern=solid color=black); where (year(date)=2013 and month(date)=12)...
Based on the SYMBOL options from your previous program, you should try something like this: proc sgplot data=want; series x=day y=test_a / markerattrs=(color=vligb symbol=circlefilled size=9) lineattrs=(color=vligb thickness=2); series x=day y=test_b / y2axis markerattrs=(color=sal...
Proc sgplot data labels are not displayed - warning -bar labels are su... SAS Sgplot graph label custom Line graphs: How to make values on X-axis appear in chronological orde... Discussion stats 11 replies 06-14-2013 01:08 PM 3070 views 3 likes 2 in conversation SA...