plot.drFit: Generic plot function for drFit objects

Description Usage Arguments See Also Examples

View source: R/plot.drFit.R

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

1
2
## S3 method for class 'drFit'
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

1
2
3
4
5
6
7
8
9
# 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)

grofit documentation built on May 30, 2017, 4:08 a.m.