I generated one data
nitrogen<- c(0,40,80,120,160,260)
yield <- c(8.4,9.8,10.8,12.5,11.1,12.7)
dataA<- data.frame(nitrogen, yield)
and I'd like to see this data as quadratic-plateau model. So I used nlsplot()
code.
install.packages("easynls")
library(easynls)
nlsplot(dataA, model=4)
The model equation is covered in the graph. I'd like to see the full model equation about this quadratic-plateau model.
Could you let me know how to do it?
Always many thanks!!