how do you derive descriptive statistics?
Answer / mahesh
by using univariate procedure....we can able to calculate
or derive descriptive statistics.
By using proc means, it gives only n, mean, min, max,sd,
statistic by default only....
| Is This Answer Correct ? | 17 Yes | 2 No |
what is the difference between x=substr(name,1,2); and substr(name,1,2)='x';
what is sas application server? : Sas-di
How sas treats the dsd delimiters?
Name the option to produce a frequency line items rather that a table.
what do you mean by data staging area? : Sas-di
How to write duplicate records into a separate dataset using sort?
what is the function of catx syntax? : Sas-administrator
I need to find the numeric field which contains blank in between..Ex:123 456...there is blank in between the 123 456..I need to know if there is any SAS function to find a field.. Please suggest...
how the sas basic syntax style described? : Sas-administrator
How substr function works in sas?
What is the role of unrestrictive users? : sas-grid-administration
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.