I Here clinical SAS training by Ramesh Azmeera is good. Is it confirm ?
Answer Posted / durga rao
I here that his good at training and provide placements also.
one of my friend trained at Ramesh now he is working with MNC.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the maximum length of the macro variable?
is data integration and etl programming is same? : Sas-di
Explain the use of proc gplot? : sas-grid-administration
how would you create multiple observations from a single observation? : Sas programming
List down the reasons for choosing sas over other data analytics tools.
What are all the problems you faced while validating tables and reports?
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.
How is character variable converted into numeric variable and vice versa?
Mention what is SAS data set?
How to limit decimal places for the variable using proc means?
what are _numeric_ and _character_ and what do they do? : Sas programming
how do the in= variables improve the capability of a merge? : Sas programming
What is SAS informats?
What is the function of output statement in a SAS Program?
Describe crosslist option in tables statement?