getMomentsAndMomentCI: Calculate bootstrap moments and moment-based confidence...

Description Usage Arguments Value Examples

View source: R/bootstrap_functions.R

Description

Let K be the number of PCs of interest, let B be the number of bootstrap samples, and let p be the number of measurements per subject, also known as the dimension of the sample. In general, we use k to refer to the principal component (PC) index, where k=1,2,...K, and use b to refer to the bootstrap index, where b=1,2,...B.

Usage

1
getMomentsAndMomentCI(AsByK, V, K = length(AsByK), verbose = FALSE)

Arguments

AsByK

a list of the bootstrap PC matrices. This list should be indexed by k, with the k^{th} element of the lsit containing a b by p matrix of results for the k^{th} PC, across bootstrap samples.

V

a (p by n) matrix containing the coordinate vectors for the matrices within the AsByK list, where n is sample size and p is sample dimension. Generally for bootstrap PCA, AsByK should contain the PCs for the bootstrap scores, and V should be the matrix of PCs from the original sample. The argument V may also be a ff object.

K

the number of leading PCs for which moments and confidence intervals should be obtained.

verbose

setting to TRUE will cause the function to print its progress in calculating the bootstrap variance for each PC.

Value

a list containing

EVs

a list containing element-wise bootstrap means for each of the K fitted PCs, indexed by k.

varVs

a list containing element-wise bootstrap variances for each of the K fitted PCs, indexed by k.

sdVs

a list containing element-wise bootstrap standard errors for each of the K fitted PCs, indexed by k.

momentCI

a list of (p by 2) matrices, indexed by k, where momentCI[[k]][j,] is the pointwise moment-based CI for the j^{th} element of the k^{th} PC.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#use small n, small B, for a quick illustration
set.seed(0)
Y<-simEEG(n=100, centered=TRUE, wide=TRUE) 
svdY<-fastSVD(Y)
V<-svdY$v #right singular vectors of the wide matrix Y
DUt<- tcrossprod(diag(svdY$d),svdY$u)
bInds<-genBootIndeces(B=50,n=dim(DUt)[2])
bootSVD_LD_output<-bootSVD_LD(DUt=DUt,bInds=bInds,K=3,verbose=interactive())

AsByB<-bootSVD_LD_output$As
AsByK<-reindexMatricesByK(AsByB)
moments<-getMomentsAndMomentCI(AsByK,V,verbose=interactive())
plot(V[,1],type='l',ylim=c(-.1,.1),main='Original PC1, with CI in blue')
matlines(moments$momentCI[[1]],col='blue',lty=1)

#Can also use this function to get moments for low dimensional
#vectors A^b[,k], by setting V to the identity matrix.
moments_A<- getMomentsAndMomentCI(As=AsByK,V=diag(ncol(AsByK[[1]])))

bootSVD documentation built on Feb. 2, 2021, 5:06 p.m.