最初にコードを関数でラップしましょう。set.seed
結果を再現可能にするコマンドも追加しました。シミュレーションを実行する前に、それらを削除する必要があります。
sim1 <- function(reps=50, steps=100 ) {
N<-5 # number of sites
sites<-LETTERS[seq(from=1,to=N)]
to.r<-rbind(sites)
p.move.r<-seq.int(0.05,0.90,by=0.05) # prob of moving to a new site
p.leave<-0.01*p.move.r # prob of leaving the system w/out returning
p.move.out<-0.01*p.move.r # prob of moving in/out
p.stay<-1-(p.move.r+p.leave+p.move.out) # prob of staying in the same site
set.seed(42)
random<-runif(10000,0,1) # generating numbers from a random distribution
cumsum.move <- read.table(text="A B C D E NA. left
A 0.0820000 0.3407822 0.6392209 0.3516242 0.3925942 0.1964 0.1964
B 0.1254937 0.4227822 0.6940040 0.3883348 0.4196630 0.3928 0.3928
C 0.7959865 0.8730183 0.7760040 0.7930623 0.8765180 0.5892 0.5892
D 0.8265574 0.8980259 0.8095507 0.8750623 0.9000000 0.7856 0.7856
E 0.9820000 0.9820000 0.9820000 0.9820000 0.9820000 0.9820 0.9820
NA. 0.9910000 0.9910000 0.9910000 0.9910000 0.9910000 0.9910 0.9910
left 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000 1.0000",header=TRUE)
cumsum.move <- as.matrix(cumsum.move)
for(o in 1:reps){
result<-matrix(as.character(""),steps) # Vector for storing sites
set.seed(42)
x<-sample(random,steps,replace=TRUE) # sample array of random number
time.step<-data.frame(x) # time steps used in the simulation (i)
colnames(time.step)<-c("time.step")
time.step$event<-""
set.seed(41)
j<-sample(1:N,1,replace=T) # first column to be selected
set.seed(40)
k<-sample(1:N,1,replace=T) # selection of column for ind. that move in/out
for(i in 1:steps){
for (t in 1:(N+1)){
if(time.step$time.step[i]<cumsum.move[t,j]){
time.step$event[i]<-to.r[t]
break
}
}
ifelse(time.step$event[i]=="",break,NA)
result[i]<-time.step$event[i]
j<-which(to.r==result[i])
if(length(j)==0){j<-k}
}
result<-time.step$event
}
result
}
result
o の反復ごとに が上書きされることに注意してください。私はあなたがそれを望んでいないと思うので、私はそれを修正しました。また、data.frame
ループ内で使用します。原則としてdata.frames
、疫病のようなループ内は避けるべきです。それらは非常に便利ですが、効率の点ではひどいものです。
sim2 <- function(reps=50, steps=100) {
N<-5 # number of sites
sites<-LETTERS[seq(from=1,to=N)]
to.r<-rbind(sites)
p.move.r<-seq.int(0.05,0.90,by=0.05) # prob of moving to a new site
p.leave<-0.01*p.move.r # prob of leaving the system w/out returning
p.move.out<-0.01*p.move.r # prob of moving in/out
p.stay<-1-(p.move.r+p.leave+p.move.out) # prob of staying in the same site
set.seed(42)
random<-runif(10000,0,1) # generating numbers from a random distribution
cumsum.move <- read.table(text="A B C D E NA. left
A 0.0820000 0.3407822 0.6392209 0.3516242 0.3925942 0.1964 0.1964
B 0.1254937 0.4227822 0.6940040 0.3883348 0.4196630 0.3928 0.3928
C 0.7959865 0.8730183 0.7760040 0.7930623 0.8765180 0.5892 0.5892
D 0.8265574 0.8980259 0.8095507 0.8750623 0.9000000 0.7856 0.7856
E 0.9820000 0.9820000 0.9820000 0.9820000 0.9820000 0.9820 0.9820
NA. 0.9910000 0.9910000 0.9910000 0.9910000 0.9910000 0.9910 0.9910
left 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000 1.0000",header=TRUE)
cumsum.move <- as.matrix(cumsum.move)
res <- list()
for(o in 1:reps){
result<-character(steps) # Vector for storing sites
set.seed(42)
time.step<-sample(random,steps,replace=TRUE) # sample array of random number
#time.step<-data.frame(x) # time steps used in the simulation (i)
#colnames(time.step)<-c("time.step")
#time.step$event<-""
event <- character(steps)
set.seed(41)
j<-sample(1:N,1,replace=T) # first column to be selected
set.seed(40)
k<-sample(1:N,1,replace=T) # selection of column for ind. that move in/out
for(i in 1:steps){
for (t in 1:(N+1)){
if(time.step[i]<cumsum.move[t,j]){
event[i]<-to.r[t]
break
}
}
ifelse(event[i]=="",break,NA)
result[i]<-event[i]
j<-which(to.r==result[i])
if(length(j)==0){j<-k}
}
res[[o]]<-event
}
do.call("rbind",res)
}
両方の関数で同じ結果が得られますか?
res1 <- sim1()
res2 <- sim2()
all.equal(res1,res2[1,])
[1] TRUE
新しいバージョンは高速ですか?
library(microbenchmark)
microbenchmark(sim1(),sim2())
Unit: milliseconds
expr min lq median uq max
1 sim1() 204.46339 206.58508 208.38035 212.93363 269.41693
2 sim2() 77.55247 78.39698 79.30539 81.73413 86.84398
まあ、係数 3 はすでにかなりいいです。これらの s のため、ループをさらに改善する可能性はあまりありませんbreak
。これにより、オプションとして並列化のみが残ります。
sim3 <- function(ncore=1,reps=50, steps=100) {
require(foreach)
require(doParallel)
N<-5 # number of sites
sites<-LETTERS[seq(from=1,to=N)]
to.r<-rbind(sites)
p.move.r<-seq.int(0.05,0.90,by=0.05) # prob of moving to a new site
p.leave<-0.01*p.move.r # prob of leaving the system w/out returning
p.move.out<-0.01*p.move.r # prob of moving in/out
p.stay<-1-(p.move.r+p.leave+p.move.out) # prob of staying in the same site
set.seed(42)
random<-runif(10000,0,1) # generating numbers from a random distribution
cumsum.move <- read.table(text="A B C D E NA. left
A 0.0820000 0.3407822 0.6392209 0.3516242 0.3925942 0.1964 0.1964
B 0.1254937 0.4227822 0.6940040 0.3883348 0.4196630 0.3928 0.3928
C 0.7959865 0.8730183 0.7760040 0.7930623 0.8765180 0.5892 0.5892
D 0.8265574 0.8980259 0.8095507 0.8750623 0.9000000 0.7856 0.7856
E 0.9820000 0.9820000 0.9820000 0.9820000 0.9820000 0.9820 0.9820
NA. 0.9910000 0.9910000 0.9910000 0.9910000 0.9910000 0.9910 0.9910
left 1.0000000 1.0000000 1.0000000 1.0000000 1.0000000 1.0000 1.0000",header=TRUE)
cumsum.move <- as.matrix(cumsum.move)
#res <- list()
#for(o in 1:reps){
cl <- makeCluster(ncore)
registerDoParallel(cl)
res <- foreach(1:reps) %dopar% {
result<-character(steps) # Vector for storing sites
set.seed(42)
time.step<-sample(random,steps,replace=TRUE) # sample array of random number
#time.step<-data.frame(x) # time steps used in the simulation (i)
#colnames(time.step)<-c("time.step")
#time.step$event<-""
event <- character(steps)
set.seed(41)
j<-sample(1:N,1,replace=T) # first column to be selected
set.seed(40)
k<-sample(1:N,1,replace=T) # selection of column for ind. that move in/out
for(i in 1:steps){
for (t in 1:(N+1)){
if(time.step[i]<cumsum.move[t,j]){
event[i]<-to.r[t]
break
}
}
ifelse(event[i]=="",break,NA)
result[i]<-event[i]
j<-which(to.r==result[i])
if(length(j)==0){j<-k}
}
#res[[o]]<-event
event
}
stopCluster(cl)
do.call("rbind",res)
}
同じ結果?
res3 <- sim3()
all.equal(res1,c(res3[1,]))
[1] TRUE
もっと早く?(私の Mac では 4 コアを使用しましょう。さらにいくつかのコアを備えたサーバーにアクセスしようとするかもしれません。)
microbenchmark(sim1(),sim2(),sim3(4))
Unit: milliseconds
expr min lq median uq max
1 sim1() 202.28200 207.64932 210.32582 212.69869 255.2732
2 sim2() 75.39295 78.95882 80.01607 81.49027 125.0866
3 sim3(4) 1031.02755 1046.41610 1052.72710 1061.74057 1091.2175
それはひどいですね。ただし、テストは並列機能に不公平です。この関数は、50 回のレプリケートのみで 100 回呼び出されます。つまり、並列化のオーバーヘッドはすべて得られますが、それによるメリットはほとんどありません。もっと公平にしましょう:
microbenchmark(sim1(rep=10000),sim2(rep=10000),sim3(ncore=4,rep=10000),times=1)
Unit: seconds
expr min lq median uq max
1 sim1(rep = 10000) 42.16821 42.16821 42.16821 42.16821 42.16821
2 sim2(rep = 10000) 16.13822 16.13822 16.13822 16.13822 16.13822
3 sim3(ncore = 4, rep = 10000) 38.18873 38.18873 38.18873 38.18873 38.18873
より良いですが、それでも印象的ではありません。レプリケート数とステップ数をさらに増やした場合、並列機能は良さそうですが、それが必要かどうかはわかりません。