Skip to content
/ site Public

🌎 malaria 🌍 site 🌏

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

mrc-ide/site

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

74 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

site

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. R-CMD-check

Site acts as a translational layer between a site file and malariasimulation: 🌍 ➑️ πŸ“‰

The site file is the file storing all of the context specific information for a site, such as historical intervention coverage, seasonality, vectors etc. To simulate a given site, we must convert this information into an input parameter list for malaria simulation. That is what site is here to do!

If we have a correctly configured site file example_site, then all we need to do is create the parameter list and pass that to malariasimulation to run:

site <- subset_site(example_site, example_site$eir[1,])
site_par <- site_parameters(
  interventions = site$interventions,
  demography = site$demography,
  vectors = site$vectors$vector_species,
  seasonality = site$seasonality$seasonality_parameters,
  eir = site$eir$eir,
  overrides = list(
    human_population = 1000
  )
)
site_sim <- malariasimulation::run_simulation(
  timesteps = site_par$timesteps,
  parameters = site_par
)

Installation

You can install the development version of site from GitHub with:

# install.packages("devtools")
devtools::install_github("mrc-ide/site")

About

🌎 malaria 🌍 site 🌏

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages