Sir please do video on Sas string functions aswell as proc means transpose format and freq
@GreatOnlineTraining6 ай бұрын
Sure
@T.M.K.0026 ай бұрын
Title "List of students"; Proc print data= students noobs; Var name age major; Run;
@GreatOnlineTraining6 ай бұрын
Yes
@AmbadasYakkaldevi-p1s6 ай бұрын
Proc print data=Students noobs ; Var Name Age Major; Title "List of Students"; Run;
@GreatOnlineTraining6 ай бұрын
Yes
@tejusgunjikar11605 ай бұрын
Data students; length Major $15; input Name $ Age Grade $ Major $; datalines; Alice 20 A Mathmatices Bob 22 B Physis Carol 21 A Chemistry Dave 23 C Biology Eve 20 B Sanskrit ; run; proc print data=students noobs; var Name Age Major; title "list of Students"; run;