Skip to content
Prev 352489 / 398498 Next

problem with using seq() or rep() inside a for loop

You need to put the expression on the right of the colon in your for
statement in parenthesis:

for (i in 1:(ncol(MD_dist) - 1)){
...
}
On 7 July 2015 at 19:00, Karl Schilling <karl.schilling at uni-bonn.de> wrote: