calculate_halflife {ubiquity}R Documentation

Calculate the halflife of data

Description

Determines the terminal halflife of a sequence of corresponding times and values with optional minimum and maximum times to censor data.

Usage

calculate_halflife(times = NULL, values = NULL, tmin = NULL, tmax = NULL)

Arguments

times

- sequence of times

values

- corresponding sequence of values

tmin

- minimum time to include (NULL)

tmax

- maximum time to include (NULL)

Value

List with the following names

Examples

x     = c(0:100)
y     = exp(-.1*x)
th    = calculate_halflife(times=x, values=y)
thalf = th$thalf 

[Package ubiquity version 2.0.3 Index]