我刚开始使用 R 并希望得到一个非线性最小二乘拟合 nls(...) 到公式 y=A(1-exp(-bL))+R。我通过以下方式定义我的函数 g
> g<-function(x,y,A,b,R) {
y~A(1-exp(-bx))+R
}
并希望通过
>nls((y~g(x,y,A,b,R)),data=Data, start=list(A=-2,b=0,R=-5))
我以以下错误消息结束。
>Error in lhs - rhs : non-numeric argument to binary operator
我想这只是另一个初学者犯的一个愚蠢的基本错误,但如果有人能帮助我,我会非常高兴。
下一个问题是,我是否可以将拟合曲线实现到我的图表中
>plot(x,y,main="VI.20.29")
感谢大家花时间阅读并希望回答我的问题!
详细信息:我有一个包含 x 值(Light.intensity)和 y 值(例如 VI.20.29)的表
> photo.data<-read.csv("C:/X/Y/Z.csv", header=T)
> names(photo.data)
[1] "Light.intensity" "SR.8.6" "SR.8.7"
[4] "SR.8.18" "SR.8.20" "VI.20.1"
[7] "VI.20.5" "VI.20.20" "VI.20.29"
[10] "DP.19.1" "DP.19.15" "DP.19.33"
[13] "DP.19.99"
> x<-photo.data$Light.intensity
> x
[1] 0 50 100 200 400 700 1000 1500 2000
> y<-photo.data$VI.20.29
> y
[1] -2.76 -2.26 -1.72 -1.09 0.18 0.66 1.47 1.48 1.63
> plot(x,y,main="VI.20.29")
> Data<-data.frame(x,y)
> Data
x y
1 0 -2.76
2 50 -2.26
3 100 -1.72
4 200 -1.09
5 400 0.18
6 700 0.66
7 1000 1.47
8 1500 1.48
9 2000 1.63
> g<-function(x,y,A,b,R) {
+ y~A(1-exp(-bx))+R
+ }
> nls((y~g(x,y,A,b,R)),data=Data, start=list(A=-2,b=0,R=-5))
Error in lhs - rhs : non-numeric argument to binary operator