BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
lillymaginta1
Obsidian | Level 7
PROC SGPLOT DATA= nt;
HISTOGRAM var1/GROUP=var2 TRANSPARENCY=.5 ;RUN;

I am trying to create a histogram and want to specify the y-axis tick marks. 

Thank you 

1 ACCEPTED SOLUTION

Accepted Solutions
lillymaginta1
Obsidian | Level 7

thank you, the following worked: 

yaxis min=0 max=6;

View solution in original post

5 REPLIES 5
PeterClemmensen
Tourmaline | Level 20

You can control that from the YAXIS Statement. Which values do you want?

 

lillymaginta1
Obsidian | Level 7

thank you I tried the following statement  but I got an error : 

PROC SGPLOT DATA= nt;

HISTOGRAMvar1/GROUP=var2 TRANSPARENCY=.5 yaxis= (1 2 3 4 5 6);RUN;
PeterClemmensen
Tourmaline | Level 20

See if you can use this as a template

 

proc sgplot data=sashelp.class;
   histogram age;
   yaxis values = (1 2 3 4 5 6);
run;
lillymaginta1
Obsidian | Level 7

thank you, the following worked: 

yaxis min=0 max=6;
PeterClemmensen
Tourmaline | Level 20
Im glad. Please remember to close the thread 🙂

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 5 replies
  • 1634 views
  • 2 likes
  • 2 in conversation