bayesx_logfile {R2BayesX} | R Documentation |
BayesX Log-Files
Description
Function to show the internal BayesX log-files.
Usage
bayesx_logfile(x, model = 1L)
Arguments
x |
a fitted |
model |
integer, for which model the log-file should be printed, i.e. if |
Value
The log-file returned from BayesX.
Author(s)
Nikolaus Umlauf, Thomas Kneib, Stefan Lang, Achim Zeileis.
See Also
Examples
## Not run:
## generate some data
set.seed(111)
n <- 500
## regressor
dat <- data.frame(x = runif(n, -3, 3))
## response
dat$y <- with(dat, 1.5 + sin(x) + rnorm(n, sd = 0.6))
## estimate model
b <- bayesx(y ~ sx(x), data = dat)
## now see the log-file
bayesx_logfile(b)
## End(Not run)
[Package R2BayesX version 1.1-5 Index]