我正在嘗試適應一些劑量反應數據的乙狀結腸。當我在ggplot之外使用nls時,它工作正常。當我使用它裏面geom_smooth,它引發以下錯誤: Error in numericDeriv(form[[3L]], names(ind), env) :
Missing value or an infinity produced when evaluating the model
的樣本
我想用ggplot2來繪製一些數據並擬合非線性曲線。我想用我已經定義的nls對象使用stat_function,但結果會產生截斷曲線。我已經看過下面的頁面,但到目前爲止,我還沒有找到一個解決方案: R - ggplot2 extrapolated regression lines in linear region Plotting a large number of custom function
我想用公式>r²=(x-h)2 +(y-k)2來計算半徑的預測間隔。圓的半徑,x,y,是高斯座標,h,k,標記擬合圓的中心。 # data
x <- c(1,2.2,1,2.5,1.5,0.5,1.7)
y <- c(1,1,3,2.5,4,1.7,0.8)
# using nls.lm from minpack.lm (minimising the sum of squared resid
我有一個看起來像多重的一個繪製時,一些光譜數據: http://journals.prous.com/journals/dof/19982303/html/df230301/images/keiferf3.gif 它是如何在圖像中看到,所有的峯彼此之間真的很近,所以我想利用NLS功能做一些反褶積,就像是之前(R: Fitting Gaussian peaks to density plot dat