Which are SAS Windows Clients & SAS Java Clients
Answer Posted / venu
SAS AMO & EG --- tools are back-end run by Windows (Windows Based Applications)
OLAPCube Studio, InfoMap Studio, DI, SMC etc tools are back-end run by JAVA (JAVA Based Applications).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Mention how to limit decimal places for the variable using proc means?
How to sort in descending order?
what is change analysis in sas di ? : Sas-di
Do you need to rearrange the order of the data for the report?
Explain translate function?
how does sas handle missing values in procs? : Sas programming
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
Explain proc univariate?
Name types of category in which SAS Informats are placed?
data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.
Are you involved in writing the inferential analysis plan? Tables specfications?
what is the use of proc contents and proc print in sas? : Sas-administrator
What is the difference between order and group variable in proc report?
How to limit decimal places for variable using proc means?
what is the Population you used in your project, is it ITT or PP?