Plot.Scatterplot.Matrix {NormData} | R Documentation |
Explore data
Description
The function Plot.Scatterplot.Matrix()
makes a scatterplot matrix of the specified variables.
Usage
Plot.Scatterplot.Matrix(Dataset, Variables,
Add.Jitter=0.1, Seed=123, ...)
Arguments
Dataset |
The name of the dataset. |
Variables |
The names of the variables that should be shown in the scatterplot matrix. |
Add.Jitter |
The amount of jitter (random noise) that should be added to the variables in the scatterplot matrix. Adding a bit of jitter is useful to show the inidividual data points more clearly, especially if several qualitative variables are added in the plot. The specified value |
Seed |
The seed that is used when adding jitter. Default |
... |
Extra graphical parameters to be passed to |
Details
For details, see Van der Elst (2023).
Value
No return value, called for side effects.
Author(s)
Wim Van der Elst
References
Van der Elst, W. (2024). Regression-based normative data for psychological assessment: A hands-on approach using R. Springer Nature.
Examples
data(Substitution)
# Make a scatterplot matrix with the variables LDST,
# Age, Gender and LE in the Substitution dataset
Plot.Scatterplot.Matrix(Dataset = Substitution,
Variables = c("LDST", "Age", "Gender", "LE"))