Learn R Programming

grofit (version 1.1.1-1)

plot.drFit: Generic plot function for drFit objects

Description

Generic plot function for drFit objects. Calls drFitSpline with respecting default values to visualize each dose response curve stored in the drFit object.

Usage

"plot"(x, ...)

Arguments

x
Object of class drFit.
...
Other graphical parameters may also passed as arguments. This has currently no effect and is only meant to fulfill the requirements of a generic function.

See Also

drFit, drFitSpline

Examples

Run this code
# generate random growth curve data set
foo <- ran.data(100, 25)
time <- foo$time
data <- foo$data
# fit dose response curves
drData <- gcFit(time,data)
# use the output of gcFit as an input for drFit
drFit.result <- drFit(summary(drData))
plot(drFit.result)

Run the code above in your browser using DataLab