what is cummaltive frequency,and varience in proc unviarte
Answer Posted / guest
Cumulative Frequency corresponding to a particular value is
the sum of all the frequencies up to and including that value.
-Cumulative frequency is nothing but the running total of
frequencies.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what is the difference between floor and ceil functions in sas? : Sas-administrator
how sas deals with business intelligence? : Sas-bi
What is the function of Stop statement in a SAS Program?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
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 are the difference between the sas data step and sas procs?
Name few SAS functions?
Name validation tools used in SAS
What is connection profile? : sas-grid-administration
Enlist the functions performed by sas.
How to create list output for cross-tabulations in proc freq?
what are validation tools that are used in sas? : Sas-administrator
explain about data integrator metadata reports? : Sas-di
Hi Friends, Am Priya,new to your forum. am looking for Interview questions on SAS Platform Administration. I searched everywhere but I couldn't find them,please can anyone help me with complete interview questions normally everyone will face in the interviews on SAS Administration. am really facing problems in the interviews,am not able to answer any of their questions. I would really appreciate all your help if you can email the complete Interview Questions to priyafeb84@gmail.com Kindly awaiting for your reply with eager
In ARRAY processing, what does the DIM function do?