を使用して、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: ~
^
誰かが私が間違っている場所を指摘できますか?