Answer Posted / solasa
You can use aggregate (or summary) functions to summarize
the data in your tables. These functions can act on
multiple columns in a row or on a single column across rows.
Avg average of values •
NMiss number of missing values
Count number of non-missing values
• Prt probability of a greater absolute value of Student’s t
. CSS corrected sum of squares.
Freq (same as Count)
Nmiss,STDERR,MEan,Min,MAx etc
use this link:
http://www2.sas.com/proceedings/sugi30/257-30.pdf.
from
Solasa
solasa@in.com
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
explain about sas business intelligence? : Sas-bi
what versions of sas have you used (on which platforms)? : Sas programming
explain what is data set in sas? : Sas-administrator
how does sas handle missing values in sort order? : Sas programming
explain the concepts and capabilities of business object? : Sas-bi
What is run-group processing?
what has been your most common programming mistake? : Sas programming
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.
What is SAS informats?
This entry was posted in General. Bookmark the permalink. Post a comment or leave
Explain what Proc glm does?
What is the difference between where and if statement?
name the scheduler for scheduling job and explain the scheduler? : Sas-di
What are the implications?
What is the general format of function in sas? : sas-grid-administration