Description Usage Format Details Source Examples
Daily minimum and maximum temperature data obtained at the Valentia synoptic weather station for the period of 1st November 1939 to 31st October 2000.
1 | data("valentia")
|
A data frame with 22281 observations on the following 7 variables.
year
a numeric vector
month
a numeric vector
day
a numeric vector
Lat
a numeric vector
max_temp
a numeric vector
min_temp
a numeric vector
day_of_year
a numeric vector
The data was obtained from the Irish National Meteorological Agency (Met Éireann).
https://www.met.ie/climate/available-data/historical-data
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | data(valentia)
valentia$cycle <- get_cycle(data = valentia, day = "day", month = "month",
day.end = 31, month.end = 10)
valentia_split <- split(valentia, valentia$cycle)
valentia_split <- lapply(valentia_split,
function(x) data.frame(x,
with(x, get_total_info(Tmax = x$max_temp,
Tmin = x$min_temp,
Tbase = 7,
lat = x$Lat,
x$day_of_year))))
valentia <- do.call("rbind", valentia_split)
data(pvulg_budburst_parameters)
data(pvulg_weibull_parameters)
data(pvulg_lactin_parameters)
phen_forecast <- phen_model_forecast(Tmean = "Tmean",
thermal_units = "thermal_units",
chill_days = "chill_days",
day_length = "day_length",
bud_pars = pvulg_budburst_parameters,
weib_pars = pvulg_weibull_parameters,
lactin_pars = pvulg_lactin_parameters,
pop_quantile = .5,
year = "cycle",
data = valentia)
plot_phen_model(obj = phen_forecast[,1:7], obj_gen2 = phen_forecast[,8:12],
forecast = TRUE)
plot_phen_forecast(obj = phen_forecast, year_from = 1939)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.