inst/tinytest/test-PCAtoXhat.R

# File created by roxut; edit the function definition file, not this file

# Test found in PCAtoXhat.R:22 (file:line)
  
# Data from ?prcomp
C <- chol(S <- toeplitz(.9 ^ (0:31)))
set.seed(17)
X <- matrix(rnorm(32000), 1000, 32)
Z <- X %*% C
pca <- prcomp(Z)
prin <- princomp(Z)

# Test that original data set is returned when ncomp = ncol(pca$x)
tst1 <- PCAtoXhat(pca)
expect_true(all.equal(tst1, Z, check.attributes = FALSE))
tst2 <- PCAtoXhat(prin)
expect_true(all.equal(tst2, Z, check.attributes = FALSE))

# Test for handling of bad arguments
expect_error(PCAtoXhat(pca, 35))
expect_error(PCAtoXhat("test"))
bryanhanson/LearnPCA documentation built on May 2, 2024, 6:21 p.m.