inst/tinytest/test_biplot_pca.R

# PCA Biplot ===================================================================
if (at_home()) {
  using("tinysnapshot")
  options(tinysnapshot_device = "svglite")
  options(tinysnapshot_height = 7) # inches
  options(tinysnapshot_width = 7)
  options(tinysnapshot_tol = 200) # pixels
  options(tinysnapshot_os = "Linux")

  data("countries")

  # All rows and all columns obtain the same weight
  row_w <- rep(1 / nrow(countries), nrow(countries)) # 1/13
  col_w <- rep(1 / ncol(countries), ncol(countries)) # 1/6
  X <- pca(countries, scale = FALSE, weight_row = row_w, weight_col = col_w)

  # Row-metric-preserving biplot
  plot_biplot_row <- function() biplot(X, type = "form", labels = NULL)
  expect_snapshot_plot(plot_biplot_row, "PCA_biplot_row")

  # Column-metric-preserving biplot
  plot_biplot_col <- function() biplot(X, type = "covariance", labels = NULL)
  expect_snapshot_plot(plot_biplot_col, "PCA_biplot_column")
}

Try the dimensio package in your browser

Any scripts or data that you put into this service are public.

dimensio documentation built on Nov. 25, 2023, 1:08 a.m.