I have a dataset like
Trial treat1 treat2
123 23.2 34.2
234 78 87
Now i want a last column naming all with sum of the rows
Trial treat1 treat2
123 23.2 34.2
234 78 87
all 101,2 121,2
Can any one help me in this
PROC PRINT.
proc sql; create table sum_row as select 'all' as trial, sum(treat1) as treat1, sum(treat2) as treat2 from have; quit;
proc append base=have data=sum_row;
run;
I am always very leery of any inserted summary rows inside a data set. What happens if you run the same summary program later on the same data? Or you run a report procedure like Proc Report that generates summary totals. You have now included the summary into a new summary.
At a very minimum I would add an indicator variable to show that the row is indeed some sort of summary and the other rows aren't with appropriate label for the indicator.
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 how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.