我在問這個問題,因爲我無法弄清楚爲什麼nlxb
擬合函數不適用於predict()函數。我們可以使用nlmrt軟件包進行nlxb預測嗎?
我一直在四處尋找解決這一點,但至今沒有運氣:(
我用dplyr
對數據進行分組,並使用do
從nlmrt
包適合使用nlxb
每個組。
這裏是我的嘗試
set.seed(12345)
set =rep(rep(c("1","2","3","4"),each=21),times=1)
time=rep(c(10,seq(100,900,100),seq(1000,10000,1000),20000),times=1)
value <- replicate(1,c(replicate(4,sort(10^runif(21,-6,-3),decreasing=FALSE))))
data_rep <- data.frame(time, value,set)
> head(data_rep)
# time value set
#1 10 1.007882e-06 1
#2 100 1.269423e-06 1
#3 200 2.864973e-06 1
#4 300 3.155843e-06 1
#5 400 3.442633e-06 1
#6 500 9.446831e-06 1
* * * *
library(dplyr)
library(nlmrt)
d_step <- 1
f <- 1e9
d <- 32
formula = value~Ps*(1-exp(-2*f*time*exp(-d)))*1/(sqrt(2*pi*sigma))*exp(-(d-d_ave)^2/(2*sigma))*d_step
dffit = data_rep %>% group_by(set) %>%
do(fit = nlxb(formula ,
data = .,
start=c(d_ave=44,sigma=12,Ps=0.5),
control=nls.lm.control(maxiter = 100),
trace=TRUE))
------------------------------------------- -------------
我最後想得到兩點,
1)首先,如何得到每組的擬合係數連續到dffit
管道。
2)根據新的x值做預測。
例如range <- data.frame(x=seq(1e-5,20000,length.out=10000))
預測(FIT,data.frame(x =範圍)
Error in UseMethod("predict") :
no applicable method for 'predict' applied to an object of class "nlmrt"
由於nlxb
是否工作順利相比nls
r-minpack-lmnls-lm-failed-with-good-results我寧願解決方案nlxb
。但如果你有一個更好的解決方案,請讓我們知道。
感謝您的建議。我會在檢查完'wrapnls'後通知你。 – Alexander
我檢查了'wrapnls'並且擬合不會收斂並且得到奇異的梯度誤差。你有沒有看到我的最新帖子[未能做到 - 嘗試與nls-nlxb-and-wrapnls合作](http://stackoverflow.com/questions/37133471/failed-to-do-fitting-幾家嘗試與 - NLS-nlxb-和wrapnls) – Alexander