LOOPS IN SAS - 3 | Do While Loop in SAS | Understanding the Flow of Do While Loop in SAS

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

КОМЕНТАРІ • 17

  • @MohdMuddasser
    @MohdMuddasser 3 роки тому +1

    Excellent and indetail explained every step..👏👏👍👌
    Keep up the good work..

  • @kmh2000
    @kmh2000 Рік тому +1

    Tq for valuable information way of explanation 👏👏

  • @shabnamkhan-qs7tx
    @shabnamkhan-qs7tx Рік тому +1

    Such a wonderful explanation

  • @poojag4335
    @poojag4335 Рік тому +1

    Best explanation

  • @Take_Off_Todayyy
    @Take_Off_Todayyy 8 місяців тому +1

    👍👍💯

  • @gopithammaboina1670
    @gopithammaboina1670 2 роки тому +1

    Great explanation

  • @dwarak7699
    @dwarak7699 3 роки тому

    Great channel

  • @prathyushal5454
    @prathyushal5454 3 роки тому

    Could you please share some examples for practicing

  • @dhirajgodase4207
    @dhirajgodase4207 2 роки тому +1

    subscribed 👍👌

    • @learnerea
      @learnerea  2 роки тому

      Thankyou for subscribing

  • @shenwaskijeff3388
    @shenwaskijeff3388 4 роки тому +1

    great

  • @magical_mary8799
    @magical_mary8799 3 роки тому

    this is such wonderful explanation. could you please help with code where i want to convert multiple observations of a particular variable into one cell -one variable example column i observations 1-10 and we want one variable as X where all values of i are comma separated, x=1,2,3,4,5,6,7,8,9,10. please help, god bless you :)

    • @learnerea
      @learnerea  3 роки тому +1

      Suppose the dataset name test has the variable named as i having value from 1 to 10, then one of the way you can try is:
      Proc SQL;
      Select I into: x separated by ','
      From test;
      Quit;
      Data test2;
      Set test;
      X="&x.";
      Run;