This functions plots the dose response curve of an object that was created with the fit_DRC() function

plot_DRC(object, interactive = FALSE, ...)

Arguments

object

list (required): a results object returned from the fit_DRC function

interactive

link{logical} (optional): create an interactive plot (requires the plotly package)

...

further graphical parameters to be passed to plot

Value

Returns a plot

Examples

#' ##load example data data(ExampleData.De, envir = environment()) obj <- fit_DRC(input.data = ExampleData.De, fit.weights = 'prop')
#> #> [fit_DRC] #> #> --------------------------------------------------------- #> number of datapoints : 19 #> maximum additive dose (Gy) : 1000 #> Error weighting : proportional to intensity #> Satuation dose D0 (Gy) : 1308.72 #> Satuation dose D0 error (Gy) : 231.36 #> De (Gy) : 464.55 #> De error (Gy) : 35.74 #> R^2 : 0.9957 #> ---------------------------------------------------------
plot_DRC(obj)