Skip to content
/ site Public

🌎 malariaverse 🌍 site-files 🌏

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

81 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

The site package supports malariaverse users to:

  1. Access and download the latest country site-files 🌐 ➑️ πŸ’»
  2. Translate site file information into malariasimulation parameters 🌍 ➑️ πŸ“‰

The site-file

The site-file is the file storing all of the sub nationally disaggregated information for a country. Components of the site-file include:

  1. The metadata, with high level information about the country and site-file version.
  2. Historical Epidemiological Data with estimates of cases, deaths and parasite prevalence.
  3. Population and Demography information.
  4. Estimates of the Historical Intervention Use in the country.
  5. Rainfalll and Seasonality data.
  6. Information on the Mosquito Vectors

Accessing and downloading site-files

Please see this detailed guide for information on how to gain access and download site files.

Translating site-file information to malariasimulation parameters

If we have access a site file, then all we need to do to run the model is

  1. Isolate a single site, this is a single sub-national unit within the country
  2. Create the parameter list
  3. Pass that to malariasimulation to run the simulation
# Pull information for a single sub-national unit from the site-file
site <- subset_site(
  site = example_site,
  site_filter = data.frame(
  country = "Burkina Faso",
  iso3c = "BFA",
  name_1 = "Sahel",
  urban_rural = "rural")
  )

# Convert site information to malariasimulation parameters
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
  )
)

# Run the model!
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("pak")
pak::pak("mrc-ide/site")

About

🌎 malariaverse 🌍 site-files 🌏

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •