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;

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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