-
Notifications
You must be signed in to change notification settings - Fork 16
/
DESCRIPTION
73 lines (73 loc) · 2.28 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
Package: individual
Title: Framework for Specifying and Simulating Individual Based Models
Version: 0.1.17
Authors@R: c(
person(
given = "Giovanni",
family = "Charles",
role = c('aut', 'cre'),
comment = c(ORCID = "0000-0002-7024-1200"),
email = '[email protected]'
),
person(
given = "Sean L.",
family = "Wu",
role = c('aut'),
comment = c(ORCID = "0000-0002-5781-9493"),
email = '[email protected]'
),
person(
given = "Peter",
family = "Winskill",
role = c('aut'),
comment = c(ORCID = "0000-0003-3001-4959"),
email = '[email protected]'
),
person(
given = "Paul",
family = "Liétar",
role = c('aut'),
comment = c(ORCID = "0009-0000-3813-6227"),
email = '[email protected]'
),
person(
given = "Imperial College of Science, Technology and Medicine",
family = "",
role = c('cph'),
email = '[email protected]'
))
Description: A framework which provides users a set of useful primitive elements for
specifying individual based simulation models, with special attention models for
infectious disease epidemiology. Users build models by specifying variables for
each characteristic of individuals in the simulated population by using data
structures exposed by the package. The package provides efficient methods for
finding subsets of individuals based on these variables, or cohorts. Cohorts can
then be targeted for variable updates or scheduled for events. Variable updates
queued during a time step are executed at the end of a discrete time step, and
the code places no restrictions on how individuals are allowed to interact.
These data structures are designed to provide an intuitive way for users to turn
their conceptual model of a system into executable code, which is fast and
memory efficient.
License: MIT + file LICENSE
Encoding: UTF-8
URL: https://github.com/mrc-ide/individual, https://mrc-ide.github.io/individual/
BugReports: https://github.com/mrc-ide/individual/issues
Roxygen: list(markdown = TRUE)
Imports:
R6,
Rcpp
Suggests:
ggplot2,
knitr,
mockery,
rmarkdown,
pkgdown,
testthat (>= 2.1.0),
xml2,
bench
RoxygenNote: 7.3.1
VignetteBuilder: knitr
LinkingTo:
Rcpp,
testthat
RcppModules: individual_cpp