Which is the Best SAS training Institute in Delhi NCR for SAS certification preparation
Answer Posted / anamika.preity
Professional SAS Tutors is the best SAS Training institute for SAS Training and SAS certification examinamtion preparation.
They have the highest numbers of reviews on google and all the reviews are highly posivitive and the same you can find on Facebook, Justdial and sulekha.
I did a lot of research and finally found no one is providing better training then Professional SAS Tutors in Delhi NCR
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do dates work in SAS data?
In SAS explain which statement does not perform automatic conversions in comparisons?
Mention few capabilities of sas framework.
how can you create zero observation dataset? : Sas programming
Explain the use of proc print and proc contents?
what is intially documentation in sas?
Why and when do you use proc sql?
how would you determine the number of missing or nonmissing values in computations? : Sas programming
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.
Give an example where SAS fails to convert character value to numeric value automatically?
Explain the purpose of retain statement.
Name any two sas spawners? : sas-grid-administration
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
What would you change about your job?
why a stop statement is needed for the point= option on a set statement?