results.bamlss.default.Rd
The results function combines estimated parameters and/or samples with the
bamlss.frame
and computes the data that can be used, e.g., for
creating effect plots or summary statistics. The function is usually used
internally within bamlss
. The object returned is of class "bamlss.results",
which has a plotting method, see plot.bamlss.results
.
results.bamlss.default(x, what = c("samples", "parameters"),
grid = -1, nsamps = NULL, burnin = NULL, thin = NULL, ...)
A bamlss.frame
which has estimated parameters
or samples. See also bfit
and GMCMC
.
Should the results data be prepared using estimated parameters or samples?
Integer, sets the number of grid points for univariate functions to be used for creating results data, e.g., for plotting. This is more efficient when using data sets with a large number of unique covariate values. If negative suitable defaults are chosen.
Integer, if results are computed using parameter samples, this argument controls
the number of samples that should be used, e.g., if nsamps = 100
only 100 samples
with equidistant intervals are selected. Basically similar to argument thin
.
Integer, sets the number of samples that should be dropped from the beginning of the MCMC chain when creating results.
Integer, should the MCMC chain be thinned additionally?
Currently not used.
An object of class "bamlss.results"
.
if (FALSE) ## Simulate data.
d <- GAMart()
## Estimate model with no results.
b <- bamlss(num ~ s(x1) + s(x2) + s(x3),
data = d, results = FALSE)
#> Error in eval(expr, envir, enclos): object 'd' not found
## Compute model results
a <- results.bamlss.default(b)
#> Error in eval(expr, envir, enclos): object 'b' not found
## Plot results for smooth terms.
plot(a)
#> Error in h(simpleError(msg, call)): error in evaluating the argument 'x' in selecting a method for function 'plot': object 'a' not found