I have a frequency table given by PROC FREQ that looks like this:
PROC FREQ DATA = have; TABLES SurgeryGroup * InsuranceStatus / nopercent; RUN;
It gives me the correct table that looks like this:
I would like to make a separate calculation off of this table called the "Reconstruction Rate" - subdivided by insurance status like above - which is basically:
No BCT w/ Recon / (No BCT w/ Recon + No BCT)
Example: 36/(36 + 69) & 563/(563 + 595)
It should be coded so that if the frequencies of the table change (possibly due to more data added at a later date), then so does the answer to the calculation.
Any help is appreciated. Thank you!
Create an output data set, and then do the additional calculations using this output data set from PROC FREQ.
To create an output data set, use
TABLES SurgeryGroup * InsuranceStatus / nopercent out=results;
OR
If I am udnerstanding the additional calculations correctly, you could run another PROC FREQ wihtout the category "Had Breast Conserving Surgery" and then this second PROC FREQ would give you the results directly.
Create an output data set, and then do the additional calculations using this output data set from PROC FREQ.
To create an output data set, use
TABLES SurgeryGroup * InsuranceStatus / nopercent out=results;
OR
If I am udnerstanding the additional calculations correctly, you could run another PROC FREQ wihtout the category "Had Breast Conserving Surgery" and then this second PROC FREQ would give you the results directly.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.