jones_model: Jones Model

Description Usage Arguments Value References Examples

View source: R/jones_model.R

Description

Quantifies the chill accumulation by means of converting temperatures to exponential units temperature.

Usage

1
jones_model(x, total = TRUE)

Arguments

x

Vector containing temperature values (Celsius-degree).

total

TRUE Shows the total value of accumulation, FALSE shows the value of chill for each temperature (TRUE is default).

Value

The function returns values the chill for each temperature of vector (Total = FALSE), or returns the chill accumulation (Total = TRUE).

References

JONES, H. G., HILLIS, R. M., GORDON, S. L., and BRENNAN, R. M. (2013). An approach to the determination of winter chill requirements for different Ribes cultivars. Plant. Biol.

Examples

1
2
3
4
5
 
 x <- rnorm(500, 8, 5)
jones_model(x)
jones_model(x, FALSE) 
 

ChillModels documentation built on March 26, 2020, 6:28 p.m.