SAS MACROS Creating Dummy Variables: SAS for Beginners (Lesson 32)

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ธ.ค. 2024

ความคิดเห็น • 9

  • @michokoto
    @michokoto ปีที่แล้ว +1

    As always, great content

  • @tonyzalla1546
    @tonyzalla1546 ปีที่แล้ว +2

    very good video!! Could you save the code so that we can copy it? Thank you

  • @PhillyDog
    @PhillyDog ปีที่แล้ว +1

    Great content

  • @pamplus4392
    @pamplus4392 ปีที่แล้ว +1

    Thank you!

  • @CreativeCartoons2401
    @CreativeCartoons2401 28 วันที่ผ่านมา

    31.CREATING MACRO VARIABLES-2 IN SAS CLICK HERE:sasall4you.blogspot.com/2024/11/31way-to-create-macro-variablesinto.html

  • @YiZhang-l4n
    @YiZhang-l4n 11 หลายเดือนก่อน

    Jelly, I tried your code for this dummy variable example, but it seems your code does not give a correct output, can you fix that?

    • @learningwithjelly
      @learningwithjelly  11 หลายเดือนก่อน

      What piece of the code are you referring to?

    • @YiZhang-l4n
      @YiZhang-l4n 11 หลายเดือนก่อน

      *%MACRO GETSITE;
      %DO I = 1 %TO &LastSite;
      %IF &&Site&I = 0 %THEN %GOTO OUT;
      IF Site = &&Site&I THEN Site&I = 1;
      ELSE Sites&I = 0;
      %OUT: %END;
      %MEND GETSITE;
      This piece.@@learningwithjelly