print.cellsurvLQfit {CFAssay} | R Documentation |
The function prints the results of an LQ-model fit for radiation dose dependent cell survival.
## S3 method for class 'cellsurvLQfit' print(x, ...)
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
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"))