Last active
April 14, 2022 14:52
-
-
Save mepsrajput/a98cf4043a6b4477b214525763841bea to your computer and use it in GitHub Desktop.
Simple proc freq
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Import the CSV */ | |
| FILENAME Gov_C "/folders/myfolders/Assignments/governors_county.csv"; | |
| PROC IMPORT DATAFILE=Gov_C DBMS=CSV OUT=WORK.Gov_C_SAS; | |
| GETNAMES=YES; | |
| RUN; | |
| /* freq procedure */ | |
| proc freq data=Gov_C_SAS; | |
| tables state; | |
| run; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment