ebplot(x, sig=.05, method=<<see below>>, n.effects= <<see below>>, ...)
If neffects is specified, based on knowledge from previous analysis graphical displays, alpha is neffects/length(feffects). If n.effects is not specified, significant effects are identified from the test based on sig and method. alpha is then estimated as the fraction of significant effects. The scale factor, k, is estimated by the square root of the F-value from the least squares model containing only the significant effects.
buffer.fac <- fac.aov(buffer.df) ebplot(buffer.fac) # use all defaults# specify 2 as the number of effects thought to be significant: ebplot(buffer.fac,n.effects=2)
# use estimated standard errors to identify significant effects: ebplot(buffer.fac,.05,'ase') ebplot(buffer.fac,.2,'tse')