Description Usage Arguments Value References Examples
Pairwise Plots
1 2 | pairwise_plot(x, y, type = "pca", pair_x = 1, pair_y = 2, rank = "full",
k = 0, interactive = FALSE, point_size = 2.5)
|
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 X-axis |
pair_y |
variable to be plotted on the Y-axis |
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. |
ggplot2 object if interactive = FALSE
; plotly object if interactive = TRUE
.
Izenman, A.J. (2008) Modern Multivariate Statistical Techniques. Springer.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.