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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.