I applied a logistic regression using the nlmrt package to describe the relationship between biomass and the distance and site variables. I got this result, but I am not sure to understand the p-value of the parameters. Do these results mean that my model describes the variation of biomass as a function of distance in a significant way?
library(nlmrt)
nlxb0 <- nlxb(Proportion.Y ~ 1/(1 + exp(A*(B - Dist_FPAcentroid))), data=jo1,
start = c(A = -0.3, B =3.2), trace=TRUE)
print(nlxb0)
###
nlmrt class object: x
residual sumsquares = 21.554 on 74 observations
after 5 Jacobian and 6 function evaluations
name coeff SE tstat pval gradient JSingval
A -0.301798 0.1226 -2.462 0.01622 6.874e-11 4.641
B 3.18605 1.053 3.025 0.003446 1.389e-11 0.5192
```