predict.LD50 | R Documentation |
Estimate survival according to doses.
The returned data.frame has the following components:
doses, SE, survival, CI.minus.sexratio, CI.plus.sexratio, range.CI
## S3 method for class 'LD50'
predict(
object,
doses = NULL,
SE = NULL,
range.CI = 0.95,
replicates = 1000,
progressbar = FALSE,
...
)
object |
A result file generated by LD50 |
doses |
A vector of temperatures |
SE |
The standard error for doses, optional |
range.CI |
The range of confidence interval for estimation, default=0.95 |
replicates |
Number of replicates to estimate CI |
progressbar |
Logical. Does a progression bar must be shown |
... |
Not used |
predict.LD50 Estimate survival according to doses
A data.frame with informations about survival
Marc Girondot marc.girondot@gmail.com
Other LD50 functions:
LD50()
,
LD50_MHmcmc()
,
LD50_MHmcmc_p()
,
logLik.LD50()
,
plot.LD50()
## Not run:
#' data <- data.frame(Doses=c(80, 120, 150, 150, 180, 200),
Alive=c(10, 12, 8, 6, 2, 1),
Dead=c(0, 1, 5, 6, 9, 15))
LD50_logistic <- LD50(data, equation="logistic")
predict(LD50_logistic, doses=c(140, 170))
plot(LD50_logistic
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.