Assuming {et} is randomly drawn from N(0,1) and e0 = 0,
generate 200 observations of
xt = et − 0.5e(t−1) and draw a line graph of xt.
No Answer is Posted For this Question
Be the First to Post Answer
what are the best practices to process the large data sets in sas programming? : Sas-administrator
what is the use of proc sql?
how to generate report for 0 observation dataset?
How would you code the criteria to restrict the output to be produced?
What are the efficacy variables in your study?
2 Answers Accenture, Quintiles,
data abc; input x y ; cards; 1 2 5 6 7 8 7 8 1 7 5 7 ; run; Proc Freq data=abc; tables x*y / chisq nopercent nocol norow PLCORR; RUN; If we run the code, we have Polychoric Correlation = 0.9054 in the last table. I want to extract this particular entry with the value. Means I will create one dataset in which this value will be stored/extracted. I need your help in coding this. Please help me out.
What are the table names in oracle database...?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
What is the maximum length of the macro variable? : sas-macro
What is the purpose of the trailing @? The @@? How would you use them?
List down the reasons for choosing sas over other data analytics tools.
calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15