SAS Analytics Guide - How to Estimate Frequency

  • Updated

Data version: Controlled Tier All of Us Curated Data Repository (CDR) v7 (2022Q4R11)

Analysis tool: SAS Studio

Authors:

Joyonna Gamble-George, Ph.D., MHA Blue circle with white envelope email icon.png
Yale University School of Public Health

 

Please note: This guide aims to demonstrate the utilization of PROC FREQ using SAS Studio. However, it is important to note that this guide is not comprehensive and does not encompass all facets of the scientific process which researchers are required to undertake. Specifically, it only does not delve into data cleaning and verification, assumption validation, model diagnostics, potential follow-up analyses, or any other possible approaches for estimating prevalence using PROC FREQ

This analytics guide is available as a downloadable PDF.

Table of Contents

Introduction

The objective of the study described in this guide is to estimate the prevalence of negative social determinants of health among adult patients that experienced a life-threatening medical event, episode, or accident (i.e., heart attack, stroke, severe allergic reaction, asthma attack, or traumatic injuries) or a terminal disease (i.e., HIV/AIDS, Alzheimer’s disease, organ failure, or advanced cancer) and understand its association with mood impairments, substance misuse, and health care utilization.

To begin our discussion, we first define a few terms used throughout this guide:

  • Descriptive statistics: Describes the characteristics of a dataset (e.g., sex at birth, race, ethnicity) in terms of averages, its spread, and the shape it produces.
  • PROC FREQ: A SAS procedure used for frequency analysis. It is used to calculate the frequency distribution and summary statistics for categorical variables.

Description of the dataset

For this example, we will use the following criteria to define the case cohort for this analysis:

  • Any adult participant (aged ≥18 years).
  • At least one occurrence of a diagnosis code for myocardial infarction (i.e., heart attack) or a cerebrovascular accident (i.e., stroke) in their electronic health records (EHR).

Categorical variables:

  • Gender identity 
  • Race
  • Ethnicity
  • Age
  • Sex at birth

Statistical analysis procedures

Estimating prevalence and extracting categorical variables

Step 1: Create a cohort.

Step 2: Create a dataset.

Step 3: Import the dataset into SAS Studio.

Step 4: Create a SAS program for descriptive analysis.

Step 5: Estimate lifetime prevalence.

  • You can use the PROC FREQ command to analyze the frequency distribution of categorical variables. 
  • For example, if you want to analyze the frequency distribution of the variable "Gender." The output of PROC FREQ will display the frequency distribution of the variable "Gender," along with summary statistics such as percentages and cumulative percentages.
  • You can also use PROC FREQ to analyze the frequency distribution of multiple variables at once. For example, if you want to analyze the frequency distribution of “Ethnicity,” “Gender,” “Race,” and “Sex at birth,” you can use the following code.

Example code:

proc freq data=combined;
tables ethnicity*group / chisq;
tables gender*group / chisq;
tables race*group / chisq;
tables sex_at_birth*group / chisq;
run;

Example results:

Step5.png

Calculating lifetime prevalence

Lifetime prevalence is calculated by the number of existing cases divided by the total population of participants with any EHR data.

Step 1: Count the number of heart attack cases.

Example code:

proc SQL;
select count(*) into :heartattack_cases;
from heartattack;
quit;

Step 2: Count the total number of participants in both datasets.

Example code:

proc SQL;
select count(*) into :total_population;
from combined;
quit;

Step 3: Calculate the prevalence.

Example code:

%let prevalence =%sysevalf(&heartattack_cases / &total_population *100);
%put Lifetime Prevalence of Heart Attack is &prevalence %
run;

Example results:

Step5-2.png

Additional resources

For additional information about using SAS Studio in the Researcher Workbench, explore the following articles: Exploring All of Us data using SAS Studio and How to run SAS in the Researcher Workbench.

You can also download this analytics guide as a PDF.

Was this article helpful?

1 out of 1 found this helpful

Have more questions? Submit a request

Comments

0 comments

Article is closed for comments.