Description Usage Arguments Value Examples
Plot Method for HAL Conditional Density Estimates
1 2 |
x |
Object of class |
... |
Additional arguments to be passed |
type |
A |
Object of class ggplot
containing a plot of the desired
type
.
1 2 3 4 5 6 7 8 9 10 11 12 | # 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.