| plot.drBootSpline | R Documentation | 
gcBootSpline objects.Generic plot function for gcBootSpline objects.
## S3 method for class 'drBootSpline'
plot(
  x,
  pch = 19,
  colData = 1,
  colSpline = "black",
  cex.point = 1,
  cex.lab = 1.5,
  cex.axis = 1.3,
  lwd = 2,
  plot = TRUE,
  export = FALSE,
  height = 7,
  width = 9,
  out.dir = NULL,
  combine = FALSE,
  ...
)
| x | A  | 
| pch | (Numeric) Shape of the raw data symbols. | 
| colData | (Numeric or Character) Color used to plot the raw data. | 
| colSpline | (Numeric or Character) Color used to plot the splines. | 
| cex.point | (Numeric) Size of the raw data points. | 
| cex.lab | (Numeric) Font size of axis titles. | 
| cex.axis | (Numeric) Font size of axis annotations. | 
| lwd | (Numeric) Spline line width. | 
| plot | (Logical) Show the generated plot in the  | 
| export | (Logical) Export the generated plot as PDF and PNG files ( | 
| height | (Numeric) Height of the exported image in inches. | 
| width | (Numeric) Width of the exported image in inches. | 
| out.dir | (Character) Name or path to a folder in which the exported files are stored. If  | 
| combine | (Logical) Indicate whether both dose-response curves and parameter plots shall be shown within the same window. | 
| ... | Further arguments to refine the generated base R plot. | 
A plot with the all dose-response spline fits from the bootstrapping operation.
conc <- c(0, rev(unlist(lapply(1:18, function(x) 10*(2/3)^x))),10)
response <- c(1/(1+exp(-0.7*(4-conc[-20])))+stats::rnorm(19)/50, 0)
TestRun <- growth.drBootSpline(conc, response, drID = "test",
        control = growth.control(log.x.dr = TRUE, smooth.dr = 0.8, nboot.dr = 50))
print(summary(TestRun))
plot(TestRun, combine = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.