SAS Course Training : Module 8 - Take Control of Your Output with PROC PRINT

Поділитися
Вставка
  • Опубліковано 22 жов 2024

КОМЕНТАРІ • 8

  • @swamygannabathula3335
    @swamygannabathula3335 4 місяці тому +1

    Sir please do video on Sas string functions aswell as proc means transpose format and freq

  • @T.M.K.002
    @T.M.K.002 4 місяці тому +1

    Title "List of students";
    Proc print data= students noobs;
    Var name age major;
    Run;

  • @AmbadasYakkaldevi-p1s
    @AmbadasYakkaldevi-p1s 4 місяці тому +1

    Proc print data=Students noobs ;
    Var Name Age Major;
    Title "List of Students";
    Run;

  • @tejusgunjikar1160
    @tejusgunjikar1160 3 місяці тому +1

    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;