data ttt (drop=value period);
set testing;
by region;
if first.region and last.region then output ttt;
else output =duplicate;
run;
I get the error message that variable duplicate is uninitialized. PLease advice.
That's very simply because "duplicate" is not in the input data set.
It is not due to FIRST. or LAST.
Place the data set names in the Output like:
data ttt (drop=value period) duplicate;
Just one more thing - as you mentioned duplicate in the data step statement, would it create a new dataset which will capture other values excluding the first and the last obs of the group.
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 lock in 2025 pricing—just $495!
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.