X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=reports%2Faccuracy.R;h=5eadd3bdf5ef0a5f17e96f9006b2634f401713e0;hb=074c721aa587d45c4f7ef10f8a28fdc09273d31a;hp=535f88f6299fa3f45d18685fac17b673d776b477;hpb=01bd5c5b56b403b5487e232603643307d3821ed0;p=morpheus.git diff --git a/reports/accuracy.R b/reports/accuracy.R index 535f88f..5eadd3b 100644 --- a/reports/accuracy.R +++ b/reports/accuracy.R @@ -1,8 +1,8 @@ -optimBeta <- function(N, n, K, p, beta, b, link, weights, ncores) +optimBeta <- function(N, n, K, p, beta, b, link, ncores) { library(morpheus) res <- multiRun( - list(n=n, p=p, beta=beta, b=b, optargs=list(K=K, link=link, weights=weights)), + list(n=n, p=p, beta=beta, b=b, optargs=list(K=K, link=link)), list( # morpheus function(fargs) { @@ -68,8 +68,6 @@ N <- 10 d <- 2 n <- 1e4 ncores <- 1 -strw <- "1-1-1" -weights <- c(1,1,1) cmd_args <- commandArgs() for (arg in cmd_args) @@ -86,9 +84,6 @@ for (arg in cmd_args) d <- as.integer(spl[2]) } else if (spl[1] == "link") { link <- spl[2] - } else if (spl[1] == "weights") { - strw <- spl[2] - weights <- as.numeric(unlist(strsplit(spl[2], ","))) } } } @@ -115,8 +110,8 @@ if (d == 2) { beta <- matrix( c(1,2,-1,0,3,4,-1,-3,0,2,2,-3,0,1,0,-1,-4,3,2,0, -1,1,3,-1,0,0,2,0,1,-2,1,2,-1,0,3,4,-1,-3,0,2, 2,-3,0,1,0,-1,-4,3,2,0,1,1,2,2,-2,-2,3,1,0,0), ncol=K ) } -mr <- optimBeta(N, n, K, p, beta, b, link, weights, ncores) +mr <- optimBeta(N, n, K, p, beta, b, link, ncores) mr_params <- list("N"=N, "nc"=ncores, "n"=n, "K"=K, "d"=d, "link"=link, - "p"=c(p,1-sum(p)), "beta"=beta, "b"=b, "weights"=weights) + "p"=c(p,1-sum(p)), "beta"=beta, "b"=b) -save("mr", "mr_params", file=paste("res_",n,"_",d,"_",link,"_",strw,".RData",sep="")) +save("mr", "mr_params", file=paste("res_",n,"_",d,"_",link,".RData",sep=""))