Re: [R] suggestions argument in rbga function in genalg package

2012-04-09 Thread Frank Schwidom
On Thu, Sep 22, 2011 at 06:46:23PM +, Joseph Boyer wrote: Would someone be so kind as to provide example code where they use the suggestions argument in the rgba function In genalg? I can't get it to work. The following code works just fine: GenFit -rbga(Lower, Upper, evalFunc =

Re: [R] suggestions argument in rbga function in genalg package

2011-10-03 Thread Joseph Boyer
: Enrico Schumann [mailto:enricoschum...@yahoo.de] Sent: Friday, September 23, 2011 12:53 AM To: Joseph Boyer Cc: r-help@r-project.org Subject: Re: [R] suggestions argument in rbga function in genalg package I do not use this package, but a quick look at the code shows this. if (!is.null(suggestions

[R] suggestions argument in rbga function in genalg package

2011-09-22 Thread Joseph Boyer
Would someone be so kind as to provide example code where they use the suggestions argument in the rgba function In genalg? I can't get it to work. The following code works just fine: GenFit -rbga(Lower, Upper, evalFunc = evaluate) Lower and Upper are each numeric vectors with 7 elements.

Re: [R] suggestions argument in rbga function in genalg package

2011-09-22 Thread Enrico Schumann
I do not use this package, but a quick look at the code shows this. if (!is.null(suggestions)) { # [deleted] suggestionCount = dim(suggestions)[1] So 'suggestions' needs to have a dim argument (while the documentation speaks of an 'optional list of suggested chromosomes'). You could try