report_model | R Documentation |
Create a simplified report of a model's summary
report_model(model_object = NULL, response_name = "Score")
model_object |
A model object |
response_name |
Name of the response variable. Defaults to "Score". |
A data.frame object showing a simple model report that includes the effect of each predictor variable on the response.
models<-fit_models(df=yields,yname=c("height","yield"),xname="weight",
modeltype=c("lm", "glm"))
report_model(models[[2]][[1]])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.