View source: R/modelsSummary.R
modelsSummaryTable | R Documentation |
Make Summary Table for Model Coefficients
modelsSummaryTable(x = NULL, vanilla = TRUE, ...)
x |
An object of class modelSummary |
vanilla |
A logical |
... |
further arguments to be passed to modelsSummary() |
A flextable
fit1=lm(mpg~wt,data=mtcars) fit2=lm(mpg~wt*hp,data=mtcars) fit3=lm(mpg~wt*hp*am,data=mtcars) labels=list(X="wt",W="hp",Y="mpg",Z="am") x=modelsSummary(fit1,labels=labels) modelsSummaryTable(x) modelsSummaryTable(x,vanilla=FALSE) x=modelsSummary(list(fit1,fit2),labels=labels) modelsSummaryTable(x) modelsSummaryTable(x,vanilla=FALSE) x=modelsSummary(list(fit1,fit2,fit3),labels=labels) modelsSummaryTable(x) modelsSummaryTable(x,vanilla=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.