外部CSVファイルをdataステップで読み込み、データセット化する

filename sample "C:\SAS_Study\test2.csv";
data work.test;
    infile sample dim="," firstobs=2;
    input id:$8. name:$32. class:8.;
run;

Revision #1
Created 27 September 2024 09:53:08 by nonoha
Updated 28 September 2024 03:38:10 by nonoha