gpt4 book ai didi

r - R中的非线性最小二乘曲线拟合

转载 作者:行者123 更新时间:2023-12-01 22:51:33 26 4
gpt4 key购买 nike

我是 R 的新手(第一次使用它)。我正在学习本教程 http://www.walkingrandomly.com/?p=5254尝试绘制曲线并发现最适合我的数据的函数。到目前为止我已经尝试过:

> xdata = c(1 ,5, 10, 20, 100)
> ydata = c(23.83333333, 210.3666667, 545.3666667, 1756.866667, 38595.7)
> plot(xdata,ydata)

所以我明白了:

enter image description here

然后我试试:

> p1 = 1
> p2 = 0.2
> fit = nls(ydata ~ xdata^2, start=list(p1=p1,p2=p2))

我得到这个错误:

Error in nlsModel(formula, mf, start, wts) : 
singular gradient matrix at initial parameter estimates

我做错了什么?谢谢

最佳答案

nls 函数不会自动包含模型中所有参数的系数。您必须明确地将它们包含在公式中。我不确定您希望 p1p2 包含在您描述的模型中的什么地方

p1 <- 1
p2 <- 0.2
fit <- nls(ydata ~ p1+p2*xdata^2, start=list(p1=p1,p2=p2))
fit

# Nonlinear regression model
# model: ydata ~ p1 + p2 * xdata^2
# data: parent.frame()
# p1 p2
# 127.216 3.847
# residual sum-of-squares: 21037
#
# Number of iterations to convergence: 1
# Achieved convergence tolerance: 5.774e-08

但至少在这种形式下,这仍然是一个线性模型。你可以得到同样的契合度

fit2 <- lm(ydata ~ I(xdata^2))
fit2

# Call:
# lm(formula = ydata ~ I(xdata^2))
#
# Coefficients:
# (Intercept) I(xdata^2)
# 127.216 3.847

关于r - R中的非线性最小二乘曲线拟合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26046620/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com