Does anyone know of any optimization packages out there for R (similar to NUOPT for S+)?
Thanks
Does anyone know of any optimization packages out there for R (similar to NUOPT for S+)?
Thanks
Linprog, mentioned by Galwegian, focuses on linear programming via the simplex algorithm. In addition you may be interested in fPortfolio if you are doing portfolio optimization.
R has many, many packages for optimization; check the CRAN Task view on Optimization: http://cran.r-project.org/web/views/Optimization.html. Of course, for nonlinear programs, there is optim()
, which is standard and includes Broyden-Fletcher-Goldfarb-Shanno's algorithm, and Melder-Nead. It's a good first start.