Hi,
This is a program to transpose using arrays
can i rename in the SET statement and use the renamed variables in the same datastep like shown(i used them as list of variables in the array???
Thanks
data want;
set have(rename=(inner=in outer=out);
by mrn1;
array val {2} in out ;
if first.mrn1 then cnt=0;
cnt+1;
do i = 1 to dim(val);
serial= cnt;
vpfx = vname(val{i});
vnttm= datepart(val{i});
output want;
end;
Funny, you have program and ask if it's works..? Why don't you just try it?
But from a conceptual view, the data step (which uses the PDV) will not know about the original names. So after a rename, only the new names is available for your program logic.
Funny, you have program and ask if it's works..? Why don't you just try it?
But from a conceptual view, the data step (which uses the PDV) will not know about the original names. So after a rename, only the new names is available for your program logic.
You missed parentheses:
set have(rename=(inner=in outer=out) );
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.