BookmarkSubscribeRSS Feed
deleted_user
Not applicable
i have a dataset

data x;
input id tot;
cards;
5 1
6 2
7 .
5 1
6 2
9 .

Now i want a new variable i want the sum of id having 1 and 2
2 REPLIES 2
Andre
Obsidian | Level 7
This kind of problem looks like homework.

Here is thus an answer but you have to read documentation
about the "retain" statement to understand the first step which is calculating your results

http://support.sas.com/onlinedoc/913/getDoc/fr/lrdict.hlp/a000214163.htm

the second datastep is showing you that the result are in the table on the last observation
but understanding this step is not trivial and need a 'sum' of practice.

Andre

[pre]
data x;
infile cards ;
input id tot; retain one two 0;
if tot=1 then one+id;
if tot=2 then two+id;
cards;
5 1
6 2
7 .
5 1
6 2
9 .
run;
data _null_;
set x nobs=l point=l;
put one= two= ;
stop;
run;
[/pre]
deleted_user
Not applicable
PROC SQL;
create table y as
select sum(id) as sum_id
from x
where tot =1 or tot = 2;
QUIT;

OR

PROC SQL;
create table y as
select sum(id) as sum_id, tot
from x
where tot =1 or tot = 2
group by tot;
QUIT;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is Bayesian Analysis?

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.

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
  • 723 views
  • 0 likes
  • 2 in conversation