Learn R Programming

probemod (version 0.2.1)

plot.pickapoint: Plot Function For Pick-a-Point

Description

Plot function for objects of class "pickapoint".

Usage

## S3 method for class 'pickapoint':
plot(x, xlab = "", ylab = "", xlim = 0, ylim = 0,
  axlwd = 10, cesize = 1.2, cilwd = 5, \dots)

Arguments

x
An object of class "pickapoint".
xlab
A title for the x axis (character).
ylab
A title for the y axis (character).
xlim
Coordinates range for x axis (numeric vector). Determined by the range of the given data by default.
ylim
Coordinates range for y axis (numeric vector). Determined by the range of the given data by default.
axlwd
Axis line width (numeric vector). axlwd=10 by default.
cesize
Size of the conditional effect marker (numeric vector). cesize=1.2 by default.
cilwd
Conditional interval line width (numeric vector). cilwd=5 by default.
...
Additional arguments (not supported yet).

Value

  • none

Examples

Run this code
myModel <- lm('DV ~ IV + MOD', data=someData)
papresults <- pickapoint(myModel, dv='DV', iv='IV', mod='MOD')
plot(papresults)

Run the code above in your browser using DataLab