Replaced 1:npops with seq_len(npops) (#25)
This commit is contained in:
parent
5d3acc7cb0
commit
f93f7c7de9
1 changed files with 3 additions and 3 deletions
|
|
@ -201,7 +201,7 @@ indMix <- function(c, npops, counts = NULL, sumcounts = NULL, max_iter = 100L, d
|
||||||
}
|
}
|
||||||
} else if (round == 2) { # Populaation yhdist<73>minen toiseen.
|
} else if (round == 2) { # Populaation yhdist<73>minen toiseen.
|
||||||
maxMuutos <- 0
|
maxMuutos <- 0
|
||||||
for (pop in 1:npops) {
|
for (pop in seq_len(npops)) {
|
||||||
muutokset_diffInCounts <- greedyMix_muutokset$new()
|
muutokset_diffInCounts <- greedyMix_muutokset$new()
|
||||||
muutokset_diffInCounts <- muutokset_diffInCounts$laskeMuutokset2(
|
muutokset_diffInCounts <- muutokset_diffInCounts$laskeMuutokset2(
|
||||||
pop, rows, data, adjprior, priorTerm
|
pop, rows, data, adjprior, priorTerm
|
||||||
|
|
@ -245,7 +245,7 @@ indMix <- function(c, npops, counts = NULL, sumcounts = NULL, max_iter = 100L, d
|
||||||
} else if (round == 3 || round == 4) { # Populaation jakaminen osiin.
|
} else if (round == 3 || round == 4) { # Populaation jakaminen osiin.
|
||||||
maxMuutos <- 0
|
maxMuutos <- 0
|
||||||
ninds <- size(rows, 1)
|
ninds <- size(rows, 1)
|
||||||
for (pop in 1:npops) {
|
for (pop in seq_len(npops)) {
|
||||||
inds2 <- matlab2r::find(PARTITION == pop)
|
inds2 <- matlab2r::find(PARTITION == pop)
|
||||||
ninds2 <- length(inds2)
|
ninds2 <- length(inds2)
|
||||||
if (ninds2 > 2) {
|
if (ninds2 > 2) {
|
||||||
|
|
@ -547,7 +547,7 @@ indMix <- function(c, npops, counts = NULL, sumcounts = NULL, max_iter = 100L, d
|
||||||
# TALLENNETAAN
|
# TALLENNETAAN
|
||||||
|
|
||||||
npops <- poistaTyhjatPopulaatiot(npops)
|
npops <- poistaTyhjatPopulaatiot(npops)
|
||||||
POP_LOGML <- computePopulationLogml(1:npops, adjprior, priorTerm)
|
POP_LOGML <- computePopulationLogml(seq_len(npops), adjprior, priorTerm)
|
||||||
if (dispText) {
|
if (dispText) {
|
||||||
message("Found partition with ", as.character(npops), " populations.")
|
message("Found partition with ", as.character(npops), " populations.")
|
||||||
message("Log(ml) = ", as.character(logml))
|
message("Log(ml) = ", as.character(logml))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue