CDSimX is an advanced R package for:
# install.packages("remotes")
remotes::install_github("ikemillar/CDSimX")library(CDSimX)
stations <- create_stations(n = 3)
time_index <- generate_time_index(
start_date = "2000-01-01",
end_date = "2020-12-31"
)
climate <- simulate_climate(
stations = stations,
time_index = time_index
)
head(climate)Isaac Osei