The following SAS SORT procedure step generates an output data set: proc sort data = sasuser.houses out = report; by style; run;In which library is the output data set stored?
The SAS data sets WORK.EMPLOYEE and WORK.SALARY are listed below:WORK.EMPLOYEE WORK.SALARY -fname age fname salaryBruce 30 Bruce 25000 -Dan 40 Bruce 35000 -Dan 25000 -The following SAS program is submitted:data work.empdata;merge work.employeework.salary;by fname;totsal + salary;run;How many variables are output to the WORK.EMPDATA data set?
The contents of two SAS data sets named EMPLOYEE and SALARY are listed below:EMPLOYEE SALARY -name age name salaryBruce 30 Bruce 40000 -Dan 35 Bruce 35000 -Dan 37000 -Dan .The following SAS program is submitted:data work.empsalary;merge work.employee (in = inemp)work.salary (in = insal);by name;if inemp and insal;run;How many observations will the data set WORK.EMPSALARY contain?
A raw data file is listed below:RANCH,1250,2,1,Sheppard Avenue,"$64,000"SPLIT,1190,1,1,Rand Street,"$65,850"CONDO,1400,2,1.5,Market Street,"80,050"TWOSTORY,1810,4,3,Garris Street,"$107,250"RANCH,1500,3,3,Kemble Avenue,"$86,650"SPLIT,1615,4,3,West Drive,"94,450"SPLIT,1305,3,1.5,Graham Avenue,"$73,650"The following SAS program is submitted using the raw data file as input: data work.condo_ranch; infile 'file-specification' dsd; input style $ @; if style = 'CONDO' or style = 'RANCH'; input sqfeet bedrooms baths street $ price : dollar10.; run;How many observations will the output data set contain?
A raw data file is listed below:RANCH,1250,2,1,Sheppard Avenue,"$64,000"SPLIT,1190,1,1,Rand Street,"$65,850"CONDO,1400,2,1.5,Market Street,"80,050"TWOSTORY,1810,4,3,Garris Street,"$107,250"RANCH,1500,3,3,Kemble Avenue,"$86,650"SPLIT,1615,4,3,West Drive,"94,450"SPLIT,1305,3,1.5,Graham Avenue,"$73,650"The following SAS program is submitted using the raw data file as input: data work.condo_ranch; infile 'file-specification' dsd; input style $ @; if style = 'CONDO' or style = 'RANCH' then input sqfeet bedrooms baths street $ price : dollar10.; run;How many observations does the WORK.CONDO_RANCH data set contain?
The contents of the raw data file FURNITURE are listed below:--------10-------20-------30chair,,tablechair,couch,tableThe following SAS program is submitted:data stock;infile 'furniture' dsd;input item1 $ item2 $ item3 $;run;Which one of the following is the value of the variable named ITEM2 in the first observation of the output data set?