Hello everyone,
I hope you are all well.
I am trying to find the quickest way to save the observed value of a variable "pm" at the last "time" for each "id" per "dat" as a variable.
So far I tried this code:
proc sort data=dir.sampler;
by date id time;
run;
data test;
set dir.sampler;
by date id time;
lastpm=last.pm;
run;
But it didn't work with the error "Variable lastpm uninitialized "
so I tried to at least record the last "time";
data test;
set dir.sampler;
by date id time;
lasttime=last.time;
run;
And it didn't work, and the variable lasttime had the value 0 for all the time series.
Any suggestions?
And as always, Thank you!
You can use if clause with last. to derive your variable.
Replace this line lastpm=last.pm; with if last.time then variable=value;
Hello RamKumar,
If I understand correctly you are suggesting to write the code like so:
data test;
set dir.sampler;
by date id time;
if last.time then lastpm=pm;
run;
In this case, sas just gives lastpm the value of pm.
What do you reckon the problem is?
Thanks
Try this:
data test (drop=pm);
set dir.sampler;
by date id time;
lastpm=pm;
if last.time;
run;
I my be misunderstanding your need, but if you need all the rows to remain and just retain the value of the last pm value then you will have to do something like:
proc sort data=dir.sampler;
by date id descending time ; /*places last time row first in the dataset*/
run;
data test;
set dir.sampler;
by date id descending time;
if first,id then lastpm = pm;
retain lastpm; /*keeps the value until changes at the next id*/
run;
I dont have anything to test this with so this is untested code.
Eric
Hello Esjackso,
Thanks for you reply. However, it was retaining pm not the last observed pm.
So, based on your code, I created a new dataset with only last observations using this code:
proc sort data=dir.sampler;
by date id descending time ;
run;
data test;
set dir.sampler;
by date id descending time;
if first.id then output test;
run;
It seems to work. Thanks for your help.
Cheers!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.