BookmarkSubscribeRSS Feed
riya275
Obsidian | Level 7

 

proc means data = c1.od noprint nonobs;
var  Total_Media_Value ;
class _probability___/ descending;
output out=data (drop = _TYPE_ _FREQ_)
sum = Total_Budget
n= num_of_optys;
run;

 in the output i am getting a row which gives me total of columns. I want to give  that row a name - Total , how do i do that?

eg- my result looks like this - 

               probability  total budget  num

1	.	3200531	361
2	100	68100	7
3	90	56000	4
4	70	23200	8
5	50	156500	18
6	30	112000	5
7	10	2784731	319

i want the first row at the end and have it named total
2 REPLIES 2
Astounding
PROC Star

In SAS, rows don't have names.  What you will need to do is add a column to the output data set that you named DATA.  For example:

 

data want;

set data;

if _n_=1 then row_name = 'Total';

else row_name = put(_probability___, 5.);

run;

 

Then when you print the data set, you can print ROW_NAME instead of _PROBABILITY___.

Ksharp
Super User

I guessed you only need the total sum.Add NWAY option.

 

proc means data = c1.od noprint nonobs nway;

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2121 views
  • 0 likes
  • 3 in conversation