Description Usage Arguments Value Examples
View source: R/distMyJackknife.R
Compute correlation matrix with jack
1  | jackknifeMatrix(dataX, distmethod, ...)
 | 
dataX | 
 data.frame with transition intensities per peptide  | 
distmethod | 
 dist or correlation method working with matrix i.e. cor  | 
... | 
 further parameters to method  | 
summarizes results producced with my_jackknife
1 2 3 4 5 6 7  | dataX <- matrix(rnorm(20), ncol=4) 
rownames(dataX)<- paste("R",1:nrow(dataX),sep="")
colnames(dataX)<- paste("C",1:ncol(dataX),sep="")
tmp <- my_jackknife(dataX, cor, use="pairwise.complete.obs", method="pearson")
jackknifeMatrix(dataX, cor)
jackknifeMatrix(dataX, cor, method="spearman")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.