Excellent and indetail explained every step..👏👏👍👌 Keep up the good work..
@kmh2000 Жыл бұрын
Tq for valuable information way of explanation 👏👏
@learnerea Жыл бұрын
So nice of you
@shabnamkhan-qs7tx Жыл бұрын
Such a wonderful explanation
@poojag4335 Жыл бұрын
Best explanation
@learnerea Жыл бұрын
Thanks for liking
@Take_Off_Todayyy8 ай бұрын
👍👍💯
@gopithammaboina16702 жыл бұрын
Great explanation
@learnerea2 жыл бұрын
Glad it was helpful!
@dwarak76993 жыл бұрын
Great channel
@prathyushal54543 жыл бұрын
Could you please share some examples for practicing
@dhirajgodase42072 жыл бұрын
subscribed 👍👌
@learnerea2 жыл бұрын
Thankyou for subscribing
@shenwaskijeff33884 жыл бұрын
great
@learnerea4 жыл бұрын
Thank you Jeff
@magical_mary87993 жыл бұрын
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 :)
@learnerea3 жыл бұрын
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;