ModelInterface | R Documentation |
R6 interface class representing modelling result
R6 interface class representing modelling result
get_coefficients()
return model coefficients
ModelInterface$get_coefficients()
data.frame
get_anova()
perform ANOVA analysis
ModelInterface$get_anova()
data.frame
coef_histogram()
plot histogram of coefficients
ModelInterface$coef_histogram()
ggplot
coef_volcano()
plot volcano of coefficients
ModelInterface$coef_volcano()
ggplot
coef_pairs()
pairs plot of coefficients
ModelInterface$coef_pairs()
ggplot
anova_histogram()
histogram of p-values and FDR for anova results
ModelInterface$anova_histogram()
ggplot
clone()
The objects of this class are cloneable with this method.
ModelInterface$clone(deep = FALSE)
deep
Whether to make a deep clone.
mi <- ModelInterface$new()
testthat::expect_error(mi$get_coefficients())
testthat::expect_error(mi$get_anova())
testthat::expect_error(mi$coef_histogram())
testthat::expect_error(mi$coef_volcano())
testthat::expect_error(mi$coef_pairs())
testthat::expect_error(mi$anova_histogram())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.