🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 07-20-2020 09:43 AM
(849 views)
Hi!
How can I change the scale of the bar so I can see more easily my data? Would like my graph to be more "spread" and also cut my xaxis at a certain max point...
proc sgplot
data=work.qulac;
histogram SCC/group=type_lit scale=count nbins=20 transparency=0.70;
density SCC / type=kernel group=type_lit;
run;
Thanks a lot!:0)
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Use the XAXIS MAX= option.
- Remove outliers.
- Use a logarithmic scale.
--
Paige Miller
Paige Miller
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Use the XAXIS MAX= option.
- Remove outliers.
- Use a logarithmic scale.
--
Paige Miller
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
ok thanks!