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