0

我正在使用该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 和 W 的值?谢谢!

4

1 回答 1

0

您可以使用 获取参数估计值coef(fit)nls2返回 class 的对象"nls",因此您可以使用 中提到的任何泛型函数?nls

于 2015-01-08T08:47:56.483 回答