what are all the default values getting in PROC MEANS...???
Answer Posted / rahul
By default Proc Means produces the following for each
numeric variable-
Mean
Number of non-missing values
Standard deviation
Minimum value
Maximum value
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
Explain the use of proc gplot? : sas-grid-administration
What are the functions which are used for character handling functions?
explain the main difference between the nodup and nodupkey options? : Sas-administrator
What is program data vector (pdv)?
How are numeric and character missing values represented internally?
: and & modifiers.
What is a method to debug and test your SAS program?
What is data _null_?
what is snowflake schema? : Sas-di
Define run-group processing?
Describe the function and untility of the most difficult SAS macro that you have written.
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 type of graphs we will create(for 2+years candidates)?
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
What is the function of output statement in a SAS Program?