data ds;
infile datalines;
input teams$9.;
cards;
abcdfghij
;
run;
How to find unique combination,anyone help .
Unique combinations of what?
Since your dataset has only one observation there is only one combination of one value.
suppose i have 10 teams what are the possible combinations can occur not the number but combinations
Cartesian join?
proc sql;
create table want as
select
a.teams as team_a,
b.teams as team_b
from ds a, ds b
;
quit;
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.