| ck_tn90p | R Documentation |
ETCCDI canonical index TN90p. Percentage of days where daily Tmin
exceeds the 90th percentile of the calendar-day distribution from a
reference period (default 1961 to 1990). Computation follows the
same convention as ck_tx10p() and supports the same bootstrap
argument.
ck_tn90p(
tmin,
dates,
ref_start = 1961L,
ref_end = 1990L,
period = "annual",
bootstrap = FALSE
)
tmin |
Numeric vector of daily minimum temperatures (degrees C). |
dates |
Date vector of the same length as |
ref_start, ref_end |
Integer. Reference period boundary years (inclusive). Defaults to 1961 and 1990. |
period |
Character. Aggregation period: |
bootstrap |
Logical. If |
A data frame with columns period, value, index, and unit.
set.seed(1)
dates <- seq(as.Date("1961-01-01"), as.Date("1991-12-31"), by = "day")
tmin <- 5 + 8 * sin(2 * pi * as.integer(format(dates, "%j")) / 365) +
rnorm(length(dates))
tail(ck_tn90p(tmin, dates))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.