Plotting without showing the window to extract a summary statistic?
Hey all, Given a column, the code below takes the critical value of a normality test of its distribution: z = Report(Distribution(
Continuous Distribution(Column("Column 1")),
Fit Distribution(Normal(Goodness of Fit(1)))
);
);
prob = z[Outline Box("Goodness-of-Fit Test")][Number Col Box(2)] << Get(1); Now I plan to have this implemented across tables with varying amounts of columns. So wha...