Skip to content

Instantly share code, notes, and snippets.

@nanthony007
Last active January 26, 2023 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanthony007/f939577d635e3b1956ed7d6e83c3ff01 to your computer and use it in GitHub Desktop.
Save nanthony007/f939577d635e3b1956ed7d6e83c3ff01 to your computer and use it in GitHub Desktop.
testing out SAS
proc import datafile="C:\temp\test.csv"
out=shoes
dbms=csv
replace;
getnames=no;
run;
proc print data=work.shoes;
run;
@nanthony007
Copy link
Author

These loading files are the same, we should delete one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment