ERSA (version 0.1.3)

plotSum: Plots of model summaries

Description

Plots of model summaries

Usage

plotAnovaStats(
  fit0,
  barcols = NULL,
  preds = NULL,
  alpha = 0.05,
  type = "SS",
  width = 0.3
)

plottStats(fit0, barcols = NULL, preds = NULL, alpha = 0.05, width = 0.3)

plotCIStats( fit0, barcols = NULL, preds = NULL, alpha = 0.05, stdunits = FALSE, width = 0.3 )

Value

a ggplot

Arguments

fit0

is an lm object

barcols

a vector of colours, one per term in lm

preds

terms to include in plot

alpha

significance level

type

"SS" or "F", from type 3 Anova

width

bar width

stdunits

TRUE or FALSE. If TRUE, coefficients refer to standardised predictor units.

Functions

  • plotAnovaStats: Plots barchart of F or SS from lm

  • plottStats: Plots barchart of t stats from lm

  • plotCIStats: Plots confidence intervals from lm

Examples

Run this code
plotAnovaStats(lm(mpg ~ wt+hp+disp, data=mtcars))
plottStats(lm(mpg ~ wt+hp+disp, data=mtcars))
plotCIStats(lm(mpg ~ wt+hp+disp, data=mtcars))

Run the code above in your browser using DataCamp Workspace