modelsSummaryTable: Make Model Coef Table

View source: R/modelsSummary.R

modelsSummaryTableR Documentation

Make Model Coef Table

Description

Make Model Coef Table

Usage

modelsSummaryTable(x, vanilla = TRUE)

Arguments

x

An object of class modelSummary

vanilla

A logical

Value

A flextable

Examples

fit1=lm(mpg~wt,data=mtcars)
fit2=lm(mpg~wt*hp,data=mtcars)
fit3=lm(mpg~wt*hp*am,data=mtcars)
x=modelsSummary(list(fit1))
modelsSummaryTable(x)
x=modelsSummary(list(fit1,fit2))
modelsSummaryTable(x,vanilla=FALSE)
x=modelsSummary(list(fit1,fit2,fit3))
modelsSummaryTable(x)

cardiomoon/semMediation documentation built on Nov. 16, 2023, 4:26 a.m.