I make fisheries work, and I need to estimate some parameters from the von Bertalanffy equation: Lt=Linf*(1-exp-K(t-t0)) here Linf, K, and t0 are the parameters that I want to estimate by FSA package and nls function
While using R studio this error occurs at the step of nls as shown in the image:

My data are Fish age by day (age or t) VS length by mm (CL or Lt) as shown in the image:

I want to solve this problem is the problem in my data(I import data from Excel sheet) or not
Linfmakes little sense possibly the error might relate to that. The starting value is estimated at 1.47 while the values of your observations are already ten fold larger. This can make that the initial gradient becomes extremely large and practically infinite. – Sextus Empiricus Jul 06 '23 at 19:21vbStartsis either not working correctly or not used correctly. It may also be that your data is too difficult for the selfstart function. – Sextus Empiricus Jul 06 '23 at 19:53