Im running an optimisation routine using optim in R and im telling the programme what i want returned. for example, if i put return(op1$par)
, it will return all 4 of my variable values. Thats fine, and if i run return(op1)
, I obviously get all the information from the optimisation routine (par, value, convergence etc). However, in this format, the par values arent accessible in the output, it simply details that there are 4 values.
Now what i need is to the get the parameter values and the convergence information at the same time. R wont let me call this return(op1$par, op1$convergence)
so im looking for the best way to get these two entities in one run?
I should specify that im writing this to a file for 1000s of iterations and not just looking to call it up once on screen.
Cheers