View source: R/Plot.Scatterplot.Matrix.R
Plot.Scatterplot.Matrix | R Documentation |
The function Plot.Scatterplot.Matrix()
makes a scatterplot matrix of the specified variables.
Plot.Scatterplot.Matrix(Dataset, Variables,
Add.Jitter=0.1, Seed=123, ...)
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 |
For details, see Van der Elst (2023).
No return value, called for side effects.
Wim Van der Elst
Van der Elst, W. (2024). Regression-based normative data for psychological assessment: A hands-on approach using R. Springer Nature.
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"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.