Skip to content

Instantly share code, notes, and snippets.

@SolClover
Created August 8, 2020 02:36
Show Gist options
  • Save SolClover/89270a8237a8698822c9a38a6e8d2657 to your computer and use it in GitHub Desktop.
Save SolClover/89270a8237a8698822c9a38a6e8d2657 to your computer and use it in GitHub Desktop.
Read in CSV into SAS
proc import datafile="C:\temp\test.csv"
out=test_dataset
dbms=csv
replace;
getnames=yes;
run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment