proc univariate data=existing;
var a b c;
output out=existing sum=Asum Bsum Csum N=Act Bct Cct;
run;
I already have an existing dataset with 10 variables. I want to add the additional 6 variables from the proc univariate procedure but when I use the output statement, it overwrites all the existing variables instead of adding additional columns.
How can I make so it so that the outputs I want (sum and N) are added to an existing dataset?
Thank you very much.
Hi,
Your syntax will replace your existing dataset with calculated summary stats. To add stats in your original data set save stats to another dataset (want) and merge back to original one to get desired dataset (final).
proc univariate data=existing;
var a b c;
output out=want sum=Asum Bsum Csum N=Act Bct Cct;
run;
data final;
if _n_=1 then set want;
set have;
run;
Hi,
Your syntax will replace your existing dataset with calculated summary stats. To add stats in your original data set save stats to another dataset (want) and merge back to original one to get desired dataset (final).
proc univariate data=existing;
var a b c;
output out=want sum=Asum Bsum Csum N=Act Bct Cct;
run;
data final;
if _n_=1 then set want;
set have;
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.