scatterplot: Scatterplot Matrices

Description Usage Arguments Author(s) References See Also Examples

Description

This function produces a scatterplot matrix for integer data

Usage

1
2
scatterplot(dat, type = c("jitter", "size", "count", "sun", "identity"),
            barplot = TRUE, curves = TRUE)

Arguments

dat

a dat frame

type

type of plot, i.e., 'jitter', 'size', 'count', 'sun', and 'identity'

barplot

logical: if TRUE barplots are shown in the diagonals.

curves

logical: if TRUE lowess smoothing curves are added in the upper diagonal.

Author(s)

Takuya Yanagida takuya.yanagida@univie.ac.at

References

Rasch, D., Kubinger, K. D., & Yanagida, T. (2011). Statistics in psychology - Using R and SPSS. New York: John Wiley & Sons.

See Also

test.cor, seqtest.cor

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
dat <- round(sim.cor(200, rho = 0.7))

# Scatterplot matrix: jitter
scatterplot(dat)

# Scatterplot matrix: size
scatterplot(dat, type = "size")

# Scatterplot matrix: count
scatterplot(dat, type = "count")

# Scatterplot matrix: sun
scatterplot(dat, type = "sun")

miscor documentation built on May 1, 2019, 10:14 p.m.

Related to scatterplot in miscor...