Printing method for CvMcens object.

# S3 method for class 'CvMcens'
print(x, prnt = TRUE, outp = c("list", "table"),  degs = 3, print.AIC = TRUE,
      print.BIC = TRUE, print.infoBoot = FALSE, ...)

Arguments

x

An object of class CvMcens.

prnt

Logical to indicate if the estimations of the Cramér-von Mises statistic and p-value should be printed. Default is TRUE.

outp

Indicator of how the output will be displayed. The possible formats are list and table.

degs

Integer indicating the number of decimal places of the numeric results of the output.

print.AIC

Logical to indicate if the AIC of the model should be printed. Default is TRUE

print.BIC

Logical to indicate if the BIC of the model should be printed. Default is TRUE

print.infoBoot

Logical to indicate if the number of bootstrap samples used should be printed. Default is FALSE

...

Additional arguments.

Value

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.

Author

K. Langohr, M. Besalú, M. Francisco, A. Garcia, G. Gómez.

Examples

# 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 
#>