The following SAS program is submitted:
data work.january;
set work.allmonths (keep = product month num_sold cost);
if month = 'Jan' then output work.january;
sales = cost * num_sold;
keep = product sales;
run;
Which variables does the WORK.JANUARY data set contain?
mhminkov
3 years, 5 months agoKleinstone
3 years, 10 months agoKleinstone
3 years, 10 months ago