BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
L_L
Calcite | Level 5 L_L
Calcite | Level 5

Dear all

I have two questions:

1) Proc SGSCATTER:  is there the same statement used in PROC GPLOT:

    order=(x to xx by x)?

2) Proc GPLOT: How can I do not to show the digits after comma (.00) in Y AXIS ?

Thanks in advance for any help

1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

To answer the SGSCATTER question:

If you are creating single-cell scatter plots like you would with GPLOT, you should be using SGPLOT instead of SGSCATTER. SGSCATTER is designed to create panels of scatter plots and matrices. In SGPLOT, there are four axis statements: XAXIS, YAXIS, X2AXIS, and Y2AXIS. You can specify VALUES=(x to y by z) on the necessary axis. Also, the optional VALUESHINT option changes the interpretation of VALUES such that the start and end values do not dictate the axis range.

Hope this helps!

Dan

View solution in original post

2 REPLIES 2
GraphGuy
Meteorite | Level 14

Per the gplot question ... you can use a format statement on the y-variable to control its appearance.  For example:

proc gplot data=sashelp.stocks;

format close comma8.0;

plot close*date;

run;

DanH_sas
SAS Super FREQ

To answer the SGSCATTER question:

If you are creating single-cell scatter plots like you would with GPLOT, you should be using SGPLOT instead of SGSCATTER. SGSCATTER is designed to create panels of scatter plots and matrices. In SGPLOT, there are four axis statements: XAXIS, YAXIS, X2AXIS, and Y2AXIS. You can specify VALUES=(x to y by z) on the necessary axis. Also, the optional VALUESHINT option changes the interpretation of VALUES such that the start and end values do not dictate the axis range.

Hope this helps!

Dan

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1284 views
  • 3 likes
  • 3 in conversation