calculate_halflife | R Documentation |
Determines the terminal halflife of a sequence of corresponding times and values with optional minimum and maximum times to censor data.
calculate_halflife(times = NULL, values = NULL, tmin = NULL, tmax = NULL)
times |
- sequence of times |
values |
- corresponding sequence of values |
tmin |
- minimum time to include ( |
tmax |
- maximum time to include ( |
List with the following names
thalf Halflife in units of times above
mod Result of lm used to fit the log transformed data
df Dataframe with the data and predicted values at the time within tmin and tmax
x = c(0:100)
y = exp(-.1*x)
th = calculate_halflife(times=x, values=y)
thalf = th$thalf
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.