Description Usage Arguments Details Author(s) See Also Examples
View source: R/print.cellsurvLQfit.R
The function prints the results of an LQ-model fit for radiation dose dependent cell survival.
1 2 |
x |
an object of class |
... |
further arguments to pass to R function |
In this version of CFAssay the class argument x
is checked by its entry fit$type
and results in an error, when x
results from an independent use of glm
or lm
.
Herbert Braselmann
1 2 3 4 5 6 7 8 9 10 11 | datatab<- read.table(system.file("doc", "expl1_cellsurvcurves.txt", package="CFAssay"), header=TRUE, sep="\t")
X<- subset(datatab, cline=="okf6TERT1")
fit<- cellsurvLQfit(X) #using default options
print(fit)
print(fit$type)
print(fit$PEmethod)
#using other options
print(cellsurvLQfit(X, method="ls"))
print(cellsurvLQfit(X, PEmethod="fix"))
print(cellsurvLQfit(X, method="ls", PEmethod="fix"))
print(cellsurvLQfit(X, method="franken"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.