View source: R/print_residualrwa.R
print.residualrwa | R Documentation |
Print residualrwa objects
## S3 method for class 'residualrwa' print(x, ...)
x |
An object of class |
... |
Currently ignored. |
Print summarized information about the residualrwa
object.
n <- 100 X1 <- rnorm(n) X2 <- rnorm(n) X3 <- rnorm(n) Y <- X2^3 + 10 * X1 * X2 data <- as.data.frame(cbind(Y, X1, X2, X3)) ex <- residualrwa( response = "Y", control = NULL, fixed = NULL, free = c("X1", "X2", "X3"), data = data, include_interactions = TRUE, boot_ci = TRUE, n_boot = 5 ) print(ex)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.