NEWS
nls2 0.3-4 (2024-07-14)
- add "CPoptim" algorithm (convex partition)
- fixed "plinear-brute-force" error
nls2 0.3-3 (2022-05-02)
- fix bug that occurred when using "port"
nls2 0.3-2
- fix bug in 0.3-0 related not being able to access data= in some situations
nls2 0.3-0
- add lhs (Latin Hypercube Sampling) and plinear-lhs sampling algorithms
- if all iterations fail return NULL
- add README file
- add INSTALL file
- fix Example 5 in help file and change it to use plinear-lhs
- fix number of iterations. Previously 1 iteration could display incorrectly.
- fix weights. Do not ignore weights (includes contribution by Ben Bolker)
- fix subset. Do not ignore subset argument. Note that if subset is specified
then data must be specified as a data.frame.
- add caveat to help file regarding start argument not supporting the nls
grouped data list of vector format
nls2 0.2-1
- bug fix for case of only one parameter
- start may now also be any object with a coef method
nls2 0.2-0
- algoirthm can be "plinear-brute" or "plinear-random"
- corrected one nls2 example
- trace is now used by nls2 to control printing. Previously it was only used
to pass to nls.
nls2 0.1-5
- corce formula argument to a formula if its not already a formula
nls2 0.1-4 (2012-12-22)
- NAMESPACE file added
- as.lm removed
nls2 0.1-3 (2012-10-29)
- as.lm and as.lm.nls can be used to convert an "nls" object to an
"lm" object which is tangent to the nls object. Untested.
- as.lm.nls uses proto package hence new dependency
- added algorithm = "random" which samples maxiter rows from start if
start is a data frame with more than 2 rows whereas if start is a data
frame with exactly 2 rows it will take maxiter random points from the
rectangle whose boundary is defined by the rows.
- if nls exits with an error nls2 uses NA as the return value of that nls
call instead of stopping with an error
nls2 0.1-2 (2007-12-07)
- fixed problem with update not working with objects produced by nls2.
- fixed number of iterations and tolerance displayed when using
algorithm = "brute-force".
- if there are exactly two rows in start= then a grid of starting values
is formed so that there are at least maxiter points on the grid.
- start can be an nls object in which case coef(nls) is used.
nls2 0.1-1 (2007-12-04)
- documentation and DESCRIPTION file tweaks.
nls2 0.1-0 (2007-12-04)