Learn R Programming

quantable (version 0.3.6)

jackknifeMatrix: Compute correlation matrix with jack

Description

Compute correlation matrix with jack

Usage

jackknifeMatrix(dataX, distmethod, ...)

Arguments

dataX

data.frame with transition intensities per peptide

distmethod

dist or correlation method working with matrix i.e. cor

...

further parameters to method

Value

summarizes results producced with my_jackknife

Examples

Run this code
# NOT RUN {
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")
# }

Run the code above in your browser using DataLab