Which is the best training institute for SAS in hyderabad.
Answer Posted / vineel
Go for Dimensionality Software Services,beside aditya trade
center,Ameerpet.Its the best buddy..
Uma Shankar is the experieced faculty and even a dull
student also can understand his teaching.Very good.Still you
have doubts you can ask the ongoing batch.All the best
buddy.All the other institutes are useless.They take money
but no subject and lab.Here the lab is awesome.Try to spend
more time for praticsing.
All the best
Vineel
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
for report generation which one you used proc report or data_null_?
what is data access? : Sas-di
Explain the special input delimiters used in sas programming.
How do you specify the number of iterations and specific condition within a single do loop?
How do dates work in sas?
what is hierarchy flattening? : Sas-di
What is maximum number of rows and cols can be handled in SAS?
Can you explain the process of calendar?
What do you code to create a macro? : sas-macro
what is SAS OPTIMIZATION?
Name types of category in which SAS Informats are placed?
How would you identify a macro variable? : sas-macro
Compare sas with other data analytics tools.
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 to include or exclude specific variables in a data set?