2

を使用して、R の密度プロットにガウス ピークを当てはめようとしていnlsます。次の式を使用すると:

fit <- nls(den.PA$y~coeffs2 * exp( - ((den.PA$x-coeffs3)/coeffs4)**2 ),
           start=list(coeffs2=1.12e-2, coeffs3=1075, coeffs4=2))

次のエラーが表示されます。

Error in parse(text = x) : <text>:2:0: unexpected end of input
1: ~ 
  ^

誰かが私が間違っている場所を指摘できますか?

4

1 に答える 1

3

試す

fit <- nls(y~coeffs2 * exp( - ((x-coeffs3)/coeffs4)**2 ),data=den.PA,
       start=list(coeffs2=1.12e-2, coeffs3=1075, coeffs4=2))
于 2012-04-19T12:40:04.793 に答える