summary.ocf.marginal {ocf} | R Documentation |
Summary Method for ocf.marginal Objects
Description
Summarizes an ocf.marginal
object.
Usage
## S3 method for class 'ocf.marginal'
summary(object, latex = FALSE, ...)
Arguments
object |
An |
latex |
If |
... |
Further arguments passed to or from other methods. |
Details
Compilation of the LATEX code requires the following packages: booktabs
, float
, adjustbox
. If
standard errors have been estimated, they are printed in parenthesis below each point estimate.
Value
Summarizes an ocf.marginal
object.
Author(s)
Riccardo Di Francesco
See Also
Examples
## Load data from orf package.
set.seed(1986)
library(orf)
data(odata)
odata <- odata[1:100, ] # Subset to reduce elapsed time.
y <- as.numeric(odata[, 1])
X <- as.matrix(odata[, -1])
## Fit ocf. Use large number of trees.
forests <- ocf(y, X, n.trees = 4000)
## Marginal effects at the mean.
me <- marginal_effects(forests, eval = "atmean")
summary(me)
summary(me, latex = TRUE)
## Add standard errors.
honest_forests <- ocf(y, X, n.trees = 4000, honesty = TRUE)
honest_me <- marginal_effects(honest_forests, eval = "atmean", inference = TRUE)
summary(honest_me, latex = TRUE)
[Package ocf version 1.0.0 Index]