what are the component of range? : Sas-bi
No Answer is Posted For this Question
Be the First to Post Answer
if x=round(26.3,10)-1 then x= how much and how explain?
explain what is factor analysis? : Sas-administrator
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.
Explain why double trailing @@ is used in input statement?
Which is the Best SAS training Institute in Delhi NCR for SAS certification preparation
How would you combine 3 or more tables with different structures?
What are the different operating system platforms in which we can use sas? : sas-grid-administration
how to read raw data in sas. Do it manually and throw the programming.
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
Describe the types of SAS programming tasks that you performed like Tables? Listings? Graphics? Ad hoc reports? Other?
How would you generate 1000 observations from a normal distribution with a mean of 50 and standard deviation of 20. How would you use PROC CHART to look at the distribution? Describe the shape of the distribution.
if reading an external file to produce an external file, what is the shortcut to write that record without coding every single variable on the record