Hi! I'd like a variable that is just the sum of all 1's in a given column.
both are numeric variables
example:
given want
1 4
0 4
1 4
1 4
1 4
0 4
0 4
Hello @jmmedina25 Enjoy remerge
data have;
input given ;* want;
cards;
1 4
0 4
1 4
1 4
1 4
0 4
0 4
;
proc sql;
create table want as
select *,sum(given) as want
from have;
quit;
or
proc sql;
create table want as
select *,sum(given=1) as want
from have;
quit;
PROC MEANS
https://github.com/statgeek/SAS-Tutorials/blob/master/proc_means_basic.sas
There are lots of ways, choose of which to use, usually depends on what you plan to do next.
@jmmedina25 wrote:
Hi! I'd like a variable that is just the sum of all 1's in a given column.
both are numeric variables
example:
given want
1 4
0 4
1 4
1 4
1 4
0 4
0 4
Hello @jmmedina25 Enjoy remerge
data have;
input given ;* want;
cards;
1 4
0 4
1 4
1 4
1 4
0 4
0 4
;
proc sql;
create table want as
select *,sum(given) as want
from have;
quit;
or
proc sql;
create table want as
select *,sum(given=1) as want
from have;
quit;
The above is the same as
proc sql;
create table want as
select *
from have a,(select sum(given) as want from have);
quit;
data want;
do until(lr);
set have end=lr;
sum+given;
end;
lr=0;
do until(lr);
set have end=lr;
output;
end;
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 save with the early bird rate—just $795!
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.