How could you generate test data with no input data?
Answer Posted / k ramesh
data testdata_anlyse;
do i=1 to 100;
x=rannor(i);
output;
end;
run;
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
How can you limit the variables written to output dataset in data step?
What is Linear Regression?
Explain the purpose of retain statement.
What does P-value signify about the statistical data?
what is the function of catx syntax? : Sas-administrator
Define run-group processing?
How to convert a numeric variable to a character variable?
what is data governance? : Sas-di
it will become easy if uuu provide website linkssss and list of consultanciessssss
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 enterprise guide? What is the use of it? : Sas programming
What is the difference between SAS functions and procedures?
Explain why double trailing @@ is used in input statement?
Explain proc sort?
what are the component of range? : Sas-bi