March 2019
Beginner to intermediate
448 pages
13h 14m
English
In this recipe, we will use the sjPlot package to generate tables for lm and lmer outputs, and we will explore some of its basic capabilities:
library(sjPlot) clients <- read.csv("./clients.csv") model1 <- lm(Sales ~ Strategy + (Client) + (Salesman),data=clients) tab_model(model1)
The following screenshot shows the estimated coefficients (the <0.001 are highly significative):

Read now
Unlock full access