Ahmed
Ahmed

Reputation: 1

How to divide 2 numeric columns in SAS

Please, how to divide 2 numeric columns in SAS. For example, the first colum is readmission, the second column is the total_admission, and I need to create a third column called readmission_rate by dividing column A / B

Upvotes: 0

Views: 1872

Answers (1)

Chris J
Chris J

Reputation: 7769

Simply

readmission_rate = readmission / total_admission ;

Upvotes: 1

Related Questions