compPlot: Scatterplot to Compare two Variables

Description Usage Arguments Author(s) Examples

View source: R/compPlot.R

Description

Plot a scatterplot to compare two variables.

Usage

1
compPlot( x, y, lim = NULL, ... )

Arguments

x

values of the first variable (on the X axis).

y

values of the second variable (on the Y axis).

lim

optional vector of two elements specifying the limits of both axes).

...

further arguments are passed to plot.

Author(s)

Arne Henningsen

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
   set.seed( 123 )
   x <- runif( 25 )
   y <- 2 + 3 * x + rnorm( 25 )
   ols <- lm( y ~ x )
   
   compPlot( y, fitted( ols ) )
   compPlot( y, fitted( ols ), lim = c( 0, 10 ) )
   compPlot( y, fitted( ols ), pch = 20 )
   compPlot( y, fitted( ols ), xlab = "observed", ylab = "fitted" )
   compPlot( y, fitted( ols ), log = "xy" )

miscTools documentation built on Dec. 9, 2019, 3 a.m.