
Print a three-line table.
print_table(x, row.names = TRUE, nsmalls = 3)
Matrix, data.frame (or data.table), or any model object (e.g., lm, glm, lmer, glmer, ...
).
Whether to print row names. Default is TRUE
.
A number or numeric vector specifying the number of decimal places of output. Default is 3
.
No return value.
# NOT RUN {
model=lm(Temp ~ Month + Day + Wind + Solar.R, data=airquality)
print_table(model)
# }
Run the code above in your browser using DataLab