chill_days | R Documentation |
This function computes the Chill Days according to the model proposed by Cesaraccio et al. (2004) developed for several tree species including pears, kiwifruit and sweet cherries. In this function chill days are computed without the negative (-) transformation made in the original paper.
chill_days(ExtrDailyTemp, summ = TRUE)
ExtrDailyTemp |
Dataframe containing columns "Tmax" and "Tmin". These values must correspond to daily records |
summ |
Boolean parameter indicating whether the computed metric should be provided as cumulative values over the period or as the actual accumulation for each hour |
Cesaraccio C., Spano D., Snyder R. and Duce P. 2004. Chilling and forcing model to predict bud - burst of crop and forest species. Agric. For. Meteorol. 126(1-2): 1-13. doi:10.1016/j.agrformet.2004.03.002
library(chillR) #Example 1 chill_days(KA_weather, summ = TRUE) #Example 2 data <- KA_weather data[,"Chill_Days"] <- chill_days(data, summ = FALSE) #Example 3 tempResponse_daily(KA_weather, Start_JDay = 345, End_JDay = 58, models = list(Chill_Days = chill_days))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.