R/anovaTableII.R

Defines functions anovaTableII.HH

Documented in anovaTableII.HH

## this is an exact copy of John Fox's anovaTable from Rcmdr/R/model-menu.R

anovaTableII.HH <- function(){
    .activeModel <- ActiveModel()
    if (is.null(.activeModel)) return()
    if (!checkMethod("Anova", .activeModel)) {
        errorCondition(message=gettextRcmdr("There is no appropriate Anova method for a model of this class."))
        return()
        }
    doItAndPrint(paste("Anova(", .activeModel, ")", sep=""))
    }

Try the RcmdrPlugin.HH package in your browser

Any scripts or data that you put into this service are public.

RcmdrPlugin.HH documentation built on June 24, 2024, 9:08 a.m.