What are the parameters of scan function?
No Answer is Posted For this Question
Be the First to Post Answer
Describe a time when you were really stuck on a problem and how you solved it?
is there any difference between proc summary and proc means?
data study; input Subj : $3. Group : $1. Dose : $4. Weight : $8. Subgroup; x= input(Weight,5.1); datalines; 001 A Low 220 2 002 A High 90 1 003 B Low 193.6 1 004 B High 165 2 005 A Low 123.4 1 ; Why does X get truncated? X shows up as 22 instead of 220,9 instead of 90 and 19.8 instead of 198? This problem doesnt happen with the values 193.6 and 123.4. This does not happen if x is read on the 5. informat instead of the 5.1 informat
i want to upload titles and footnotes to excel file?how it is possible?
How would you include common or reuse code to be processed along with your statements?
how to read raw data in sas. Do it manually and throw the 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.
PROC SQL always ends with QUIT statement.Why cant you use RUN in PROQ SQL ?
who is the best SAS clinical Trainer in Hyderabad?
What are the applications primarily used by business analyst? : Sas-bi
What are the difference between the sas data step and sas procs?
What does P-value signify about the statistical data?