Tmaxplot: Plot the Tmax

Description Usage Arguments Details Value Examples

Description

Plot the Tmax with indications of extreme values

Usage

1

Arguments

df

Data frame containing Tmax, identification of sub-groups and DOY.

Details

The dataframe should contain at least 3 columns named "Tmax" (daily maximums of tension), "DOY" (day of the year) and "ID" (sub-groups). The red horizontal lines reprensents 3 times the inter-quartile range (3*IQR) of all the Tmax of the data. The blue horizontal line reprensent the 1.5*IQR without the Tmax outside the red lines.

Value

Return a plot of Tmax by days for each sub-group

Examples

1
2
3
4
5
DOY = c(rep(102, times=10), rep(103, times=10))
ID = c(rep("A", times=5), rep("B", times=5), rep("A", times=5), rep("B", times=5))
Tmax = c(rep(0.7512, times=5), rep(0.7359, times=5),rep(0.7644, times=5),rep(0.7666, times=5))
df <- data.frame(DOY, ID, Tmax, stringsAsFactors = FALSE)
Tmaxplot(df)

TDPanalysis documentation built on Feb. 28, 2020, 9:09 a.m.