Untitled
Anonymous
plain_text
11/28/2023 6:03 PM
972 B
26
Indexable
/*Create Library SASMS*/
LIBNAME SASMS '/home/u63685870';
/*Change Customers.csv to sas file and save in SASMS library*/
proc import DATAFILE='/home/u63685870/Customers.csv'
OUT=SASMS.Customers
DBMS=CSV REPLACE;
GETNAMES=YES;
run;
/*Change Invoice.csv to sas file and save in SASMS library*/
proc import DATAFILE='/home/u63685870/Invoice.csv'
OUT=SASMS.Invoice
DBMS=CSV REPLACE;
GETNAMES=YES;
DELIMITER=';';
run;
/*Change Payment_Method.csv to sas file and save in SASMS library*/
proc import DATAFILE='/home/u63685870/Payment_Method.csv'
OUT=SASMS.Payment_Method
DBMS=CSV REPLACE;
GETNAMES=YES;
DELIMITER=';';
run;
Editor is loading...
Leave a Comment