print method for an object object of class "summary.evpost".

# S3 method for summary.evpost
print(x, ...)

Arguments

x

An object of class "summary.evpost", a result of a call to summary.evpost.

...

Additional arguments passed on to print.

Value

Prints

  • information about the ratio-of-uniforms bounding box, i.e. object$box

  • an estimate of the probability of acceptance, i.e. object$pa

  • a summary of the simulated values, via summary(object$sim_vals)

See also

ru or ru_rcpp for descriptions of object$sim_vals and $box.

plot.evpost for a diagnostic plot.

Examples

# GP posterior
u <- stats::quantile(gom, probs = 0.65)
fp <- set_prior(prior = "flat", model = "gp", min_xi = -1)
gpg <- rpost_rcpp(n = 1000, model = "gp", prior = fp, thresh = u,
                  data = gom)
summary(gpg)
#> ru bounding box:  
#>                box       vals1       vals2 conv
#> a        1.0000000  0.00000000  0.00000000    0
#> b1minus -0.1477092 -0.23028294 -0.00571716    0
#> b2minus -0.1397605  0.07992048 -0.21248500    0
#> b1plus   0.1913469  0.34032616 -0.01569524    0
#> b2plus   0.2034900  0.10510904  0.37350176    0
#> 
#> estimated probability of acceptance:  
#> [1] 0.5149331
#> 
#> sample summary 
#>     sigma[u]           xi          
#>  Min.   :1.013   Min.   :-0.13880  
#>  1st Qu.:1.568   1st Qu.: 0.06628  
#>  Median :1.732   Median : 0.13637  
#>  Mean   :1.738   Mean   : 0.14471  
#>  3rd Qu.:1.888   3rd Qu.: 0.20982  
#>  Max.   :2.655   Max.   : 0.56157