我正在使用nls2
包进行合作。拟合是正确的,但我如何才能得到预测变量的计算值?
公式:
fit <- nls2(Trans ~ t - (h * W ^ 2 / ((WLn - x0) ^ 2 + W ^ 2)),
data = siteData,
start = list(t=0.6, h=0.5, x0=830, W=100),
algorithm = "port",
#trace = TRUE,
lower = c(t=-Inf, h=0, x0=700, W=35),
upper = c(t=0.6, h=Inf, x0=950, W=Inf)
)
fit
即。我怎样才能找回t,h,x0和&amp;的值。只有W?谢谢!
答案 0 :(得分:0)
您可以使用coef(fit)
获取参数估算值。 nls2
返回类"nls"
的对象,因此您可以使用?nls
中提到的任何通用函数。