python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Possible Package conflicts with minpack.lm for nlsLM optimization
Question: Can tidyverse, ggplot2, and dplyr conflict with minpack.lm
in a way that causes nlsLM to give this error below?
"Error in numericDeriv(form[[3L]], names(ind), env) :
Missing value o...
Toy L
Votes: 0
Answers: 1
Using nls or nlsLM to fit global and group-specific parameters
I would like to use nls to fit a global parameter and group-specific parameters. The closest I have found to a minimum reproducible example is below (found here: https://stat.ethz.ch/pipermail/r-help/...
MikeG
Votes: 0
Answers: 2
How to calculate by hand standard errors and t statistics of minpack.lm::nlsLM?
Let's consider this code as an example:
a = 10
b = 2
c = 1.05
set.seed(123,kind="Mersenne-Twister",normal.kind="Inversion")
x = runif(100)
data = data.frame(X = x, Y = a + b/c * ((...

Barbab
Votes: 0
Answers: 0