I read the post (Sigmoidal Curve Fit in R). It was marked as duplicated, but I do not see anything related to the messages. And the response provided for the messages was not enough.
I read the web page
Like others, it uses this format to match a string:
fitmodel <- nls(y~a/(1 + exp(-b * (xc))), start=list(a=1,b=.5,c=25))
The problem is that in most cases the values ββa, b, c were set, and I don't have any hints that I should use for the data set from the set a, b, c. Can someone give me some tips on how to get the parameters?
Here is my set of numbers:
x <- c(3.9637878,3.486667,3.0095444,2.5324231,2.0553019,1.5781806,1.1010594,0.6242821) y <- c(6491.314,6190.092,2664.021,2686.414,724.707,791.243,1809.586,541.243)
source share