
Last chance! 50% off unlimited learning
Sale ends in
conc
and test
to the function drFitSpline, which fits a smoothed spline to the data and estimates the EC50. Calling drFitSpline several times (specified by the options set in control
) creates a bootstrap sample in form of a list of objects of class drFitSpline
.
drBootSpline(conc, test, drID = "undefined", control = grofit.control())
grofit.control
containing a list of options generated by the function grofit.control
.
drBootSpline
conc
.test
.drID
.drFitSpline
objects generated by the call of drFitSpline.grofit.control
containing list of options passed to the function as control
.drFitSpline
, summary.drBootSpline
, plot.drBootSpline
x <- 1:50
y <- 30/(1+exp(-0.5*(25-x)))+rnorm(50)
TestRun <- drBootSpline(x,y,"ID",grofit.control(nboot.dr=50))
print(summary(TestRun))
plot(TestRun)
Run the code above in your browser using DataLab