DATA INPUT_METHODS1; infile datalines dlm=',' dsd; INPUT AGE NAME $ HEIGHT WEIGHT; DATALINES; ST 4 30 10 NT 7 40 12 XY 2 42 3 AB 9 37 ; RUN;
... View more
Hello SAS community, I want to make a project for resume prep to secure entry level job in Clinical SAS programming. if anybody can help out please reach out to me at: Mail- shaileshrt6@gmail.com Contact- +919762455625 Linked- https://www.linkedin.com/in/shailesh-thombare-221a81214
... View more
i am not happy with the results. data set A and B has not merged in output window despite showing no error in log. As per my knowledge the code is also right. I have attached code and log window for your referance
... View more
Hey @PaigeMiller i am beginner, currently learning SAS basics. Even i don't have solution for this, i tried with proc print it worked out but still don't know if its the right way, if anyone came across solution for this please approach or discuss. Can anyone help me with mock tests or daily quiz for practice purpose for base sas examination
... View more
DATA A; INPUT id name$ Height; datalines; 1 A 1 3 B 1 5 C 2 7 D 2 9 E 2 ; run; DATA B; INPUT id name$ weight; datalines; 2 A 2 4 B 3 5 C 4 7 D 5 ; run; ; proc sort data=A; by ID; run; ; proc sort data=B; by ID; run; DATA xyz; MERGE A B; BY ID; RUN;
... View more
data SRT; input ProjID $ Manager :$15. Budget CompletionPercent; datalines; P001 James Lee 100000 85 P002 Sophia Ray 120000 90 P003 Michael Chen 75 P004 Emma Stone 95000 . P005 Olivia Park 110000 88 ; run;
proc print data=SRT; run;
... View more