Which is the best training institute for SAS in hyderabad.
Answer Posted / kranthi
I have been working as a Clinical SAS Programmer in a
Clinical Research Industry for the last 3 years and I am
SAS Certified professional. I will provide training in
Clinical SAS programming . My training includes BASE SAS,
ADV.SAS,Certification guidance, Domain Explanation like
Drug development process, Drug approval process, USFDA
Guidelines, 21CFR part 11, Software installation, Projects-
Dummy and realtime, Resume preparation, Interview
preparation, Practice questions, Interview FAQ's, Mock
tests etc.,
It's a job oriented online training. Good for Pharmacy
students those who are looking to work in Clinical Research
organisations as a SAS programmer.
Kranthi
SAS Online, Corporate trainer and
Clinical Programmer
kranthi.micro@gmail.com,
sasonline@ymail.com
864-507-6149 (USA)
0919849676190(India).
| Is This Answer Correct ? | 8 Yes | 93 No |
Post New Answer View All Answers
What are the parameters of scan function?
Why and when do you use proc sql?
What are the functions which are used for character handling functions?
What is the use of function Proc summary?
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
Which command is used to perform sorting in sas program?
Describe crosslist option in tables statement?
what are some differences between proc summary and proc means? : Sas programming
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
explain the key concept of sas? : Sas-administrator
i want for interview question & answer plz it need immediate send t my mail raviprakashmot@gmal.cm
what is sas database server? : Sas-di
do you need to know if there are any missing values? : Sas programming
What is the basic structure of a sas program?
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.