knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
In addition to functions for estimating parameters for genotype selection, the EstimateBreed package also offers functions for measuring and estimating environmental variables.
The calculation of thermal sum is crucial for understanding plant growth and development. It helps predict the onset of key growth stages, optimize planting schedules, and assess climate impacts on crop yields, ultimately enhancing agricultural planning and productivity.
The accumulated thermal sum during a given growing cycle can be obtained with the atsum()
function.
library(EstimateBreed) data("clima") clima <- get("clima")[1:150, ] with(clima,atsum(TMED,crop="maize")) #Adjusting lower basal temperature manually with(clima,atsum(TMED,crop="maize",lbt=12))
The plastochron of soybean represents the time interval between leaf initiation. Understanding its influence on growth is key to optimizing crop management, improving yield prediction, and adapting practices to environmental conditions for better productivity.
The plast()
function estimates the air temperature required for leaf expansion and node emission in soybean crops, as described by Porta et al (2024).
library(EstimateBreed) data("pheno") with(pheno, plast(GEN,TMED,EST,NN,habit="ind",plot=TRUE))
Delta T, the difference between air temperature and dew point, is crucial for agrochemical application. The tdelta()
function performs forecasting or retrospective analysis of climate data to understand the best time for application.
library(EstimateBreed) # Forecasting application conditions forecast <- tdelta(-53.6969,-28.0638,type=1,days=10) forecast # Retrospective analysis of application conditions retrosp <- tdelta(-53.6969,-28.0638,type=2,days=10, dates=c("2023-01-01","2023-05-01"), details=TRUE) retrosp
The stind()
function estimates several stress indicators based on the productivity of a given crop subjected or not to stressful conditions, as described by Ghazvini et al(2024).
library(EstimateBreed) data("aveia") #General with(aveia,stind(GEN,MC,MG,index = "ALL",bygen=TRUE)) #Only the desired index with(aveia,stind(GEN,MC,MG,index = "STI",bygen=TRUE))
Predicting the occurrence of Asian soybean rust is critical for timely disease management. Early detection allows for targeted interventions, such as fungicide application, minimizing crop losses and reducing the spread of the disease.
This can be estimated with the risk
() function, based on the methodology proposed by Engers et al. (2024), which uses temperature and relative humidity to define the potential risk of the disease occurring.
library(EstimateBreed) # Rust Risk Prediction data("clima") with(clima, risk(DY, MO, TMED, RH, disease = "rust"))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.