umxPlotPredict: 'umxPlotPredict' takes a model and plots the y value against...

umxPlotPredictR Documentation

umxPlotPredict takes a model and plots the y value against predicted(y)

Description

umxPlotPredict takes a model and plots the y value against predicted(y)

Usage

umxPlotPredict(
  model,
  xlab = "Predicted Y",
  ylab = "Observed Y",
  r2x = 1.5,
  r2y = 4.5,
  font_size = 13,
  font = "Times"
)

Arguments

model

lm or other model that understands predict()

xlab

X-axis label (default x).

ylab

Y-axis label (default y).

r2x

x location for the fit summary.

r2y

y location for the fit summary.

font_size

Default 13

font

Default "Times"

Value

  • plot you can edit.

See Also

  • ggplot2::qplot()

Other Plotting functions: ggAddR(), plot.MxLISRELModel(), plot.MxModel(), plot.MxModelTwinMaker(), umx, umxPlot(), umxPlotACE(), umxPlotACEcov(), umxPlotACEv(), umxPlotCP(), umxPlotDoC(), umxPlotFun(), umxPlotGxE(), umxPlotGxEbiv(), umxPlotIP(), umxPlotSexLim(), umxPlotSimplex()

Examples

data(mtcars)
tmp = lm(mpg ~ wt, data = mtcars)
umxPlotPredict(tmp, fitx = 2, fity = 10)

tbates/umx documentation built on Feb. 27, 2025, 8:19 a.m.