i have two variables first variables is number of teams, second variable is number of times this are two my variables ,
example : i have 10 cricket teams ,10 teams play each other only one time combination , total how many matches is happened , 45 matches is happened . how to calculate on sas.
data ds;
infile datalines ;
input no_of_teams no_of_times;
cards;
10 1
;
run;
total matches happened 45 how to calculate on sas anyone can help me this logic .
Hello @sas_university,
You can use the COMB function:
data want;
set ds;
no_of_matches=comb(no_of_teams,2)*no_of_times;
run;
Hello @sas_university,
You can use the COMB function:
data want;
set ds;
no_of_matches=comb(no_of_teams,2)*no_of_times;
run;
@FreelanceReinh tq sir
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.