search for: 16h34

Displaying 4 results from an estimated 4 matches for "16h34".

Did you mean: 1634
2017 Dec 10
2
Confidence intervals around the MIC (Maximal information coefficient)
...tion(data, index){ mine(data[index, ])$MIC } results=boot(data = cbind(C,D), statistic = myCor, R = 2000) boot.ci(results,type="all") ########## ________________________________ De : Rui Barradas <ruipbarradas at sapo.pt> roject.org> Envoy? le : Dimanche 10 d?cembre 2017 16h34 Objet : Re: [R] Confidence intervals around the MIC (Maximal information coefficient) Hello, First of all, when I tried to use function mic I got an error. mic(cbind(C, D)) Error in mic(cbind(C, D)) : could not find function "mic" So I've changed your function myCor and all we...
2017 Dec 10
0
Confidence intervals around the MIC (Maximal information coefficient)
...tion(data, index){ mine(data[index, ])$MIC } results=boot(data = cbind(C,D), statistic = myCor, R = 2000) boot.ci(results,type="all") ########## ________________________________ De : Rui Barradas <ruipbarradas at sapo.pt> roject.org> Envoy? le : Dimanche 10 d?cembre 2017 16h34 Objet : Re: [R] Confidence intervals around the MIC (Maximal information coefficient) Hello, First of all, when I tried to use function mic I got an error. mic(cbind(C, D)) Error in mic(cbind(C, D)) : could not find function "mic" So I've changed your function myCor and all we...
2017 Dec 10
0
Confidence intervals around the MIC (Maximal information coefficient)
Hello, First of all, when I tried to use function mic I got an error. mic(cbind(C, D)) Error in mic(cbind(C, D)) : could not find function "mic" So I've changed your function myCor and all went well, with a warning relative to BCa intervals. myCor <- function(data, index){ mine(data[index, ])$MIC } results=boot(data = cbind(C,D), statistic = myCor, R = 2000)
2017 Dec 10
2
Confidence intervals around the MIC (Maximal information coefficient)
Dear R-Experts, Here below is my R code (reproducible example) to calculate the confidence intervals around the spearman coefficient. ########## C=c(2,4,5,6,3,4,5,7,8,7,6,5,6,7,7,8,5,4,3,2) D=c(3,5,4,6,7,2,3,1,2,4,5,4,6,4,5,4,3,2,8,9) cor(C,D,method= "spearman") library(boot) myCor=function(data,index){ cor(data[index, ])[1,2] } results=boot(data=cbind(C,D),statistic=myCor, R=2000)