[R] IDE with table/matrix preview

2011-07-18 Thread Michael Bernsteiner
I know there are several threads about IDEs for R. I've tried Tinn-R, but I am looking for an IDE (win) with a preview function that shows me the variables and the table/matrix etc. when klicking. (comparable to Matlab). Does an IDE like this exist or can't IDEs give this functionality in R?

Re: [R] optimized value worse than starting Value

2010-09-08 Thread Michael Bernsteiner
arry Rowlingson > Sent: Wednesday, September 08, 2010 10:27 AM > To: Michael Bernsteiner > Cc: r-help@r-project.org > Subject: Re: [R] optimized value worse than starting Value > > On Wed, Sep 8, 2010 at 1:35 PM, Michael Bernsteiner > wrote: > > > > Dear all, > >

[R] optimized value worse than starting Value

2010-09-08 Thread Michael Bernsteiner
Dear all, I'm optimizing a relatively simple function. Using optimize the optimized parameter value is worse than the starting. why? f<-function(delta,P,U){ minimiz<-P+delta*U x<-minimiz[1] y<-minimiz[2] z<-100*(y-x^2)^2+(1-x)^2 return(z) } result<-optimize(f, interval=c(

Re: [R] Strange behavior of interval values in optimize()

2010-09-06 Thread Michael Bernsteiner
Strange behavior of interval values in optimize() > > > > Michael Bernsteiner wrote: > > > > > > I'm using optimize() to find the minimum of the following function f, and > > minimize it (without > > . > > But, when I choose a larger Int

[R] Strange behavior of interval values in optimize()

2010-09-06 Thread Michael Bernsteiner
Hi all, I'm using optimize() to find the minimum of the following function f, and minimize it (without f<-function(delta,P,U){ minimiz<-P+delta*U x<-minimiz[1] y<-minimiz[2] z<-100*(y-x^2)^2+(1-x)^2 return(z) } result<-optimize(f, interval=c(-1, 1), P=c(0.99,1.01), U=c