pairwise_plot {rrr} | R Documentation |
Pairwise Plots
Description
Pairwise Plots
Usage
pairwise_plot(x, y, type = "pca", pair_x = 1, pair_y = 2, rank = "full",
k = 0, interactive = FALSE, point_size = 2.5)
Arguments
x |
data frame or matrix of predictor variables |
y |
data frame or matrix of response variables |
type |
type of reduced-rank regression model to fit. |
pair_x |
variable to be plotted on the |
pair_y |
variable to be plotted on the |
rank |
rank of coefficient matrix. |
k |
small constant added to diagonal of covariance matrices to make inversion easier. |
interactive |
logical. If |
point_size |
size of points in scatter plot. |
Value
ggplot2 object if interactive = FALSE
; plotly object if interactive = TRUE
.
References
Izenman, A.J. (2008) Modern Multivariate Statistical Techniques. Springer.
Examples
data(pendigits)
digits_features <- pendigits[,1:34]
digits_class <- pendigits[,35]
pairwise_plot(digits_features, digits_class, type = "pca", pair_x = 1, pair_y = 3)
library(dplyr)
data(COMBO17)
galaxy <- as_data_frame(COMBO17)
galaxy <- select(galaxy, -starts_with("e."), -Nr, -UFS:-IFD)
galaxy <- na.omit(galaxy)
galaxy_x <- select(galaxy, -Rmag:-chi2red)
galaxy_y <- select(galaxy, Rmag:chi2red)
pairwise_plot(galaxy_x, galaxy_y, type = "cva")
data(iris)
iris_x <- iris[,1:4]
iris_y <- iris[5]
pairwise_plot(iris_x, iris_y, type = "lda")