For R users, the base language equivalent for 1D curve-fitting is optimize. Can be a bit gnarly to get the arguments right because errors are so opaque.optim is more powerful (and parallelizable), and there’s also nls.
optimize
optim
nls
For R users, the base language equivalent for 1D curve-fitting is
optimize
. Can be a bit gnarly to get the arguments right because errors are so opaque.optim
is more powerful (and parallelizable), and there’s alsonls
.