Description Usage Arguments Details Value Examples
Print: Highly Adaptive Lasso Conditional Density Estimates
1 2 |
x |
An object of class |
... |
Other options (not currently used). |
The print
method for objects of class haldensify
None. Called for the side effect of printing an informative summary
of slots of objects of class haldensify
.
1 2 3 4 5 6 7 8 9 10 11 12 13 | # simulate data: W ~ U[-4, 4] and A|W ~ N(mu = W, sd = 0.5)
set.seed(429153)
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 = c(3, 5),
lambda_seq = exp(seq(-1, -15, length = 50L)),
max_degree = 3, reduce_basis = 0.1
)
print(haldensify_fit)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.