I'd like to cut off really long tails from a histogram. There are a few outliers at either side. Histogram shows everything bunched up in the very middle, as a result.
SAS instructions are sorta crazy. A zillion options. But I can't find the option for this need.
I'd like to ONLY histogram data between, say, 100 and 300.
I could create a new dataset, as needed. But I'm hoping there is a more direct approach, by using some option on the histogram line, or in the univariate line. Or maybe some other ingenious way?
Thanks!
Nicholas Kormanik
Easiest way out would be to add
where N between 100 and 300;
Hope this helps,
- Jan.
Usually you can control the number and values of your midpoints. If you'd like to share your data and your current attempt and results we may be better able to help you.
Regards, Jan.
proc univariate data=have;
var N;
histogram;
run;
Data range from 1 to 4000. Mean=200. Total rows=A million.
The early numbers are bogus, as are the high numbers. I'd like to cut those off, and just see a histogram of the stuff in the middle.
Best would be to cut off via standard deviation, + or - one sd.
But it would be okay to use actual values, histogram values between 100 and 300.
Easiest way out would be to add
where N between 100 and 300;
Hope this helps,
- Jan.
Thanks Jan! Wow, was that easy, or what?! Beautiful!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.