given a data table setup like this:
Where the samples is the sample size of the groups, you can then run the below script
Names Default To Here( 1 );
dt = Current Data Table();
nw = New Table( "simulate", New Column( "group", character ), New Column( "value" ) );
For( i = 1, i <= N Rows( dt ), i++,
For( k = 1, k <= dt:samples[k], k++,
nw << add rows( 1 );
rr = N Rows( nw );
nw:group[rr] = dt:group[i];
nw:value[rr] = Random Normal( dt:mean[i], dt:stdev[i] );
)
);
nw << Oneway(
Y( :value ),
X( :group ),
All Pairs( 1 ),
Wilcoxon Each Pair( 1 ),
SendToReport(
Dispatch(
{},
"Nonparametric Comparisons For Each Pair Using Wilcoxon Method",
OutlineBox,
{Close( 1 )}
)
)
);
And get the below results
Jim