Displaying 1 result from an estimated 1 matches for "muttype".
Did you mean:
outtype
2007 Jul 03
1
loop causes syntax error in print()
...when the
table is created and printed within a loop.
I get a "Error: syntax error message"
If I comment out the print statement, the loop runs fine and I can print
out the last iteration of the table.
...[multiple loops and calculations ending with.....]...
+ print(paste(mutType,"sim",sim,"hmm",hmm))
+ # print(acctab[,10:15])
+
+ nummod <- nummod +1
+ } #end hmmMats loop
+ } #end tmats loop
+ } #end mut type loop
[1] "dup sim Imod hmm Jmod"
> print(acctab[,10:1...