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

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: 

table.jpg

 

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!

 



 
1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

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. 

--
Paige Miller

View solution in original post

1 REPLY 1
PaigeMiller
Diamond | Level 26

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. 

--
Paige Miller

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!

What is Bayesian Analysis?

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.

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
  • 1 reply
  • 621 views
  • 3 likes
  • 2 in conversation