Give some examples where proc report’s defaults are different than proc print’s defaults?
No Answer is Posted For this Question
Be the First to Post Answer
what is OLAP?
what is washout period?
for what purpose would you use the retain statement? : Sas programming
for whom is sas data integration studio designed? : Sas-di
Why is SAS considered self-documenting?
What is SAS Information Map Studio and its purpose ?
Approximately what date is represented by the SAS date value of 730?
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
The below code we are using for creating more than one macro variables in proc sql using into clause. How we can use same code to create macro variables vara, varb, varc instead of var1, var2, var3.? proc sql noprint; select count(distinct(patient)) into :var1 - :var3 from dataset1 group by trtreg1c ; quit;
How do you control the number of observations and/or variables read or written?
In a shcool there are 1000 students. After completion of every test in 6 subjects , each subject teacher submit the marks of every student at different times and loaded in the database commonly. How will you seperate the top two subject marks for each each studet using SAS?
There is a field containing a date. It needs to be displayed in the format “ddmonyy” if it’s before 1975,”dd mon ccyy” if it’s after 1985, and as ‘disco years’ if its between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT.