Description Usage Arguments Value Examples
Construct the results of the analysis
1 |
data |
The blueprint data object. |
... |
Additional args. |
na.rm |
Whether to remove missing values. |
Uses the blueprint to construct the results of the statistical analysis. Outputs a tibble.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | design(iris, 'cor') %>%
add_settings() %>%
add_variables('xvars', c('Sepal.Length', 'Sepal.Width')) %>%
construct()
design(iris, 't.test') %>%
add_settings() %>%
add_variables('yvars', c('Sepal.Length', 'Sepal.Width')) %>%
add_variables('xvars', c('Petal.Length', 'Petal.Width')) %>%
construct()
design(iris, 'glm') %>%
add_settings() %>%
add_variables('yvars', c('Sepal.Length', 'Sepal.Width')) %>%
add_variables('xvars', c('Petal.Length', 'Petal.Width')) %>%
construct()
design(iris, 'gee') %>%
add_settings('Species') %>%
add_variables('yvars', c('Sepal.Length', 'Sepal.Width')) %>%
add_variables('xvars', c('Petal.Length', 'Petal.Width')) %>%
construct()
design(iris, 'pls') %>%
add_settings() %>%
add_variables('yvars', c('Sepal.Length', 'Sepal.Width')) %>%
add_variables('xvars', c('Petal.Length', 'Petal.Width')) %>%
construct()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.