plot method for hillFit class
plot method for nci60Fit class
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | ## S3 method for class 'hillFit'
plot(
fit,
xlab = "Log10(Dose)",
ylab = "Relative viability",
xlim = NULL,
ylim = NULL,
main = "Fit of Hill equation",
cex.main = 1,
cex.axis = 1,
pcol = "black",
lcol = "black",
lwd = 2,
...
)
## S3 method for class 'nci60Fit'
plot(
fit,
xlab = "Dose",
ylab = "Relative growth",
main = "Fit of NCI60 method",
xlim = NULL,
ylim = NULL,
cex.main = 1,
cex.axis = 1,
cex.lab = 1,
axes = TRUE,
pcol = "black",
pch = 1,
lcol = "black",
lty = 1,
ltyh = 1,
lwd = 2,
type = c("line", "points"),
h = c(-0.5, 0, 0.5),
...
)
|
fit |
a hillFit object as returned by hillFit. |
xlab |
x axis label. |
ylab |
y axis label. |
xlim |
y limit for display. |
ylim |
x limit for display. |
main |
main title. |
cex.main |
cex for main title. |
cex.axis |
cex for axis annotation. |
pcol |
color for points. |
lcol |
color for lines. |
lwd |
line width used to specify the appearance of fitted curve. |
... |
additional parameters, not implemented. |
cex.lab |
cex for label. |
axes |
axes. |
pch |
point size. |
lty |
line type. |
ltyh |
horizontal line type. |
type |
default is set to lines and points. |
h |
horizontal line to add indicating e.g. GI (h=0.5), TGI (h=0), LD50 (h=-0.5) |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.