CvMcens
object.print.CvMcens.Rd
Printing method for CvMcens
object.
An object of class CvMcens
.
Logical to indicate if the estimations of the Cramér-von Mises statistic and p-value should be printed. Default is TRUE
.
Indicator of how the output will be displayed. The possible formats are list
and table
.
Integer indicating the number of decimal places of the numeric results of the output.
Logical to indicate if the AIC of the model should be printed. Default is TRUE
Logical to indicate if the BIC of the model should be printed. Default is TRUE
Logical to indicate if the number of bootstrap samples used should be printed. Default is FALSE
Additional arguments.
If prnt = TRUE
, a list or table (if outp = "table"
) containing the following components:
Distribution
Null distribution.
Hypothesis
Parameters under the null hypothesis (if params0
is provided).
Test
Vector containing the value of the Cramér-von Mises statistic (CvM
) and the
estimated p-value (p-value
).
Estimates
Vector with the maximum likelihood estimates of the parameters of the distribution under study.
StdErrors
Vector containing the estimated standard errors.
aic
The Akaike information criterion.
bic
The so-called BIC or SBC (Schwarz Bayesian criterion).
BS
The number of bootstrap samples used.
The list is also returned invisibly.
# List output
set.seed(123)
CvMcens(times = rweibull(100, 12, scale = 4), distr = "weibull",
BS = 149)
#> Distribution: weibull
#>
#> CvM Test results:
#> CvM p-value
#> 0.021 0.967
#>
#> Parameter estimates (se):
#> shape scale
#> 12.241 (0.938) 4 (0.034)
#>
#> AIC: 84.375
#> BIC: 89.585
#>
# Table output
set.seed(123)
print(CvMcens(times = rweibull(100, 12, scale = 4), distr = "weibull",
BS = 99), outp = "table")
#> Distribution: weibull
#>
#> CvM Test results:
#> ------- | -------
#> Metric | Value
#> ------- | -------
#> CvM | 0.021
#> p-value | 0.98
#> ------- | -------
#>
#> Parameter estimates:
#> --------- | --------- | ---------
#> Parameter | Value | s.e.
#> --------- | --------- | ---------
#> shape | 12.241 | 0.938
#> scale | 4 | 0.034
#> --------- | --------- | ---------
#>
#> AIC: 84.375
#> BIC: 89.585
#>