Skip to content

Instantly share code, notes, and snippets.

@SolClover
Last active August 8, 2020 03:53
Show Gist options
  • Save SolClover/7b2770c6e006e93954768c646ef0f5fa to your computer and use it in GitHub Desktop.
Save SolClover/7b2770c6e006e93954768c646ef0f5fa to your computer and use it in GitHub Desktop.
Create SAS dataset from scratch
data new_ds;
input Col_A $ Col_B Col_C;
datalines;
X 2 3
Y 5 6
Z 12 13
;
run;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment