I am having issues associating the characters within the datalines to the do variable 'time'. can anyone assist me with that?
data new;
do time=1 to 4;
input m1-m3 @;
output;
end;
datalines;
na 4 56
bo 2 45
so 4 30
zd 1 55
;
run;
Create and apply either a format or informat.
You have to provide more info. Are you just trying to do something like:
proc format;
invalue mtime
'na'=1
'bo'=2
'so'=3
'zd'=4
;
run;
data new;
informat time mtime.;
input time m2-m3;
datalines;
na 4 56
bo 2 45
so 4 30
zd 1 55
;
run;
Not sure what you're question is, but the following will do what I think your code was trying to do:
data new;
format time best32.;
informat m1 $2.;
input m1-m3;
time=_n_;
datalines;
na 4 56
bo 2 45
so 4 30
zd 1 55
;
I am trying to associate the characters in the first column with the 1-4 in the do "time" variable. i want to read the read the na as 1, bo as 2.
Create and apply either a format or informat.
You have to provide more info. Are you just trying to do something like:
proc format;
invalue mtime
'na'=1
'bo'=2
'so'=3
'zd'=4
;
run;
data new;
informat time mtime.;
input time m2-m3;
datalines;
na 4 56
bo 2 45
so 4 30
zd 1 55
;
run;
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.