jackknife_matrix | R Documentation |
Compute correlation matrix with jack
jackknife_matrix(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 jackknife
jackknife
Other transitioncorrlation:
cor_jackknife_matrix()
,
cor_order()
,
jackknife()
dataX <- matrix(rnorm(20), ncol=4)
rownames(dataX)<- paste("R",seq_len(nrow(dataX)),sep="")
colnames(dataX)<- paste("C",seq_len(ncol(dataX)),sep="")
tmp <- jackknife(dataX, cor, use="pairwise.complete.obs", method="pearson")
res <- jackknife_matrix(dataX, cor)
res
stopifnot(dim(res) == c(4,4))
res <- jackknife_matrix(dataX, cor, method="spearman")
stopifnot(dim(res) == c(4,4))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.