pVal {melt} | R Documentation |
p
-valueExtracts the p
-value from a model.
## S4 method for signature 'EL'
pVal(object, ...)
## S4 method for signature 'ELMT'
pVal(object, ...)
## S4 method for signature 'ELT'
pVal(object, ...)
## S4 method for signature 'SummaryEL'
pVal(object, ...)
## S4 method for signature 'SummaryELT'
pVal(object, ...)
## S4 method for signature 'SummaryELMT'
pVal(object, ...)
## S4 method for signature 'SummaryLM'
pVal(object, ...)
object |
An object that contains the |
... |
Further arguments passed to methods. |
The form of the value returned by pVal()
depends on the class of
its argument.
pVal(EL)
: Extracts the p
-value.
pVal(ELMT)
: Extracts the multiplicity adjusted p
-values.
pVal(ELT)
: Extracts the p
-value.
pVal(SummaryEL)
: Extracts the p
-value.
pVal(SummaryELT)
: Extracts the p
-value.
pVal(SummaryELMT)
: Extracts the multiplicity adjusted p
-values.
pVal(SummaryLM)
: Extracts the p
-value.
data("precip")
fit <- el_mean(precip, par = 40)
pVal(fit)