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

I have been searching for a long time for the correct code to do this, but I have not found it yet. I have n = 20,000 cases. I have already sorted the order of the data by RESERVE from low to high. Basically I would like to see how all 20,000 records distribute with either the count or the % on the y-axis. No need for another variable. Sort of a very big histogram turned into a line graph.

Then, to add a little complexity to it, I would like to mark a few points on the graph. Currently my RESERVE variable goes from 100 to about 5 million. But it would be nice if I could denote where 100,000 is, or where 20,000 is in my distribution.

Thank you very much in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

You might want to consider using a kernel density estimate instead of a histogram. Run these two programs and compare the output:

proc sgplot data=sashelp.heart;

histogram weight;

run;

proc sgplot data=sashelp.heart;

density weight / type=kernel scale=percent;

run;

View solution in original post

4 REPLIES 4
DanH_sas
SAS Super FREQ

You might want to consider using a kernel density estimate instead of a histogram. Run these two programs and compare the output:

proc sgplot data=sashelp.heart;

histogram weight;

run;

proc sgplot data=sashelp.heart;

density weight / type=kernel scale=percent;

run;

Zachary
Obsidian | Level 7

Thank you very much Dan. Unfortunately my data is a bit on the side of being "super skewed." So I use the following code to graph it when I break my full distribution into 100 bins. The graph is much more healthy looking. Any suggestions on how to get markers in here to denote particular breaks in the distribution?

proc rank data = CLAIMS_DATA out = CLAIMS_DATA groups = 100;
   var TRENDED_INCURRED;
   ranks B_TRENDED_INCURRED;
run;

ods output "Summary statistics"=STATS;
proc means data = CLAIMS_DATA mean;
  var TRENDED_INCURRED;
  class B_TRENDED_INCURRED;
run;
quit;
ods output close;

proc sgplot data = STATS;
  series x = B_TRENDED_INCURRED Y = TRENDED_INCURRED_Mean;
run;

DanH_sas
SAS Super FREQ

You could put those break points in a separate data set and merge it back into the original. Then, just add a scatter overlay to your series plot referencing  those two columns.

Zachary
Obsidian | Level 7

Thanks. Feel free to send along the code to accomplish this, if you wish. I have never even remotely tried to pull something like that off.

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1078 views
  • 7 likes
  • 2 in conversation