plotSum {ERSA}R Documentation

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
)

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.

Value

a ggplot

Functions

Examples

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

[Package ERSA version 0.1.4 Index]