A SAS Viya data analyst is tasked with selecting a random subset of data from a dataset called 'CustomerData', which contains over 1 million records. The requirement is to analyze a manageable subset without any bias. How should the analyst use the 'subSet=' parameter in a procedure to ensure a random selection?
data work.quarterly_sales;
array qtr_sales[3];
do i=1 to 3;
set sales_data(keep=jan feb mar);
qtr_sales[i] = sales_data{i};
end;
avg_sales = mean(of qtr_sales[*]);
run;
The dataset `sales_data` has three variables named `jan`, `feb`, and `mar`, containing the sales for each month of the first quarter. Which statement is true regarding this code?
Which of the following is a true statement regarding variable scope in CASL?
© Copyrights DumpsEngine 2026. All Rights Reserved
We use cookies to ensure your best experience. So we hope you are happy to receive all cookies on the DumpsEngine.
