Welcome to your Test Quiz
What would be the result from submitting this step? proc print data=work.newsales run;
How many step boundaries does this program contain? data work.newpatients; length First_Name $ 12 Last_Name $ 18 insurance $ 25; infile "&path\newpatients.csv" dlm=','; input First_Name $ Last_Name$ insurance ; run;
This Post Has 0 Comments