Displaying 1 result from an estimated 1 matches for "sorurce".
Did you mean:
soruce
2004 Mar 23
1
nlme question
...function. I use R version 1.8.
I have found an apparent way to make this work, but I would appreciate
some comments on whether this fix is really appropriate, or there is
another way to do it that does not involve changing the source code. I
don't have enough experience to start changing the sorurce code of a
library function.
Calling nlme from within a function as done below will give an error:
testfunc<-
function(dat=v) {
test<-nlsList(result~a+(b-a)/(1+(conc/(c+z*cdiff))^d)
|rep,start=dat$init,data=dat$mixeddat)
return(nlme(test,random=b~1))
}
Here, v is an appropriate data frame...