se.aov
Standard Error of AOV Objects
Description
Internal functions used by model.tables to get standard error from aov objects.
Usage
se.aov(object, n, type = "means")
se.aovlist(object, dn.proj, dn.strata, factors, mf, efficiency, n,
           type = "diff.means", ...)
Arguments
  
| object | an aov object, or any object that inherits 
from class "aov" or "aovlist". | 
  | n | a list corresponding to the tables component, giving the replication factor for each table element 
(i.e. the number of observations contributing to each element of the table). 
If type="residuals", then n is the degrees of freedom. See value of model.tables for more details. | 
  | type | character string specifying the type of tables desired. See model.tables for more details. 
Only "means" and "effects" are implemented for se.aov, "effects" is implemented for se.aovlist | 
| dn.proj | a list of projection columns. | 
| dn.strata | a list of "strata" attribute of projection. | 
| factors | a list of "factors" attribute of projection. Not used currently. | 
| mf | a model frame object. Not used currently. | 
| efficiency | a vector of efficiency. | 
| ... | other arguments pass to or from function | 
 
Value
se.aov returns an standard error table of class "mtable". 
se.aovlist returns a list of standard error tables, each table has class "mtable". 
See Also
Examples
# See function body of model.tables.aov and model.tables.aovlist for example.