plot.haldensify {haldensify} | R Documentation |
Plot Method for HAL Conditional Density Estimates
Description
Plot Method for HAL Conditional Density Estimates
Usage
## S3 method for class 'haldensify'
plot(x, ..., type = c("risk", "density"))
Arguments
x |
Object of class |
... |
Additional arguments to be passed |
type |
A |
Value
Object of class ggplot
containing a plot of the desired
type
.
Examples
# simulate data: W ~ U[-4, 4] and A|W ~ N(mu = W, sd = 0.5)
n_train <- 50
w <- runif(n_train, -4, 4)
a <- rnorm(n_train, w, 0.5)
# learn relationship A|W using HAL-based density estimation procedure
haldensify_fit <- haldensify(
A = a, W = w, n_bins = 3,
lambda_seq = exp(seq(-1, -10, length = 50)),
# the following arguments are passed to hal9001::fit_hal()
max_degree = 3, reduce_basis = 0.1
)
plot(haldensify_fit)
[Package haldensify version 0.2.3 Index]