common
CommonInterventionParameters
A class that is used to configure the common parameters for the intervention classes in the campaign object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cost
|
float
|
|
None
|
disqualifying_properties
|
list[str]
|
|
None
|
dont_allow_duplicates
|
bool
|
|
None
|
intervention_name
|
str
|
|
None
|
new_property_value
|
str
|
|
None
|
Source code in emodpy/campaign/common.py
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | |
PropertyRestrictions
A class that is used to configure the individual property restrictions and node property restrictions in the campaign object.
Please refer to the Emod documentation for NodeProperties and IndividualProperties parameters for more information:
- HIV Emod: Demographics parameters
- Malaria Emod: Demographics parameters
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
individual_property_restrictions
|
List[List[str]]
|
|
None
|
node_property_restrictions
|
List[List[str]]
|
|
None
|
Raises:
| Type | Description |
|---|---|
Warnings
|
if both individual_property_restrictions and node_property_restrictions are not defined. |
ValueError
|
if individual_property_restrictions or node_property_restrictions is not a 2D list(List[List[str]]). |
ValueError
|
if the elements in the inner list are not strings that represent dictionaries key:value pairs with at least one alphanumeric character before and after ':'. |
Examples:
Example 1: This example demonstrates how to specify individual restrictions for targeting specific groups of people who are high risk AND whose InterventionStatus is ARTStaging.
replace emodpy with emodpy_hiv or emodpy_malaria based on the disease you are working on.
from emodpy.campaign.common import PropertyRestrictions from emodpy.campaign.distributor import add_intervention_scheduled property_restrictions = PropertyRestrictions(individual_property_restrictions=[["Risk:HIGH", "InterventionStatus:ARTStaging"]]) add_intervention_scheduled(property_restrictions=property_restrictions, ...)
the result json should look like this:
{
"Property_Restrictions_Within_Node": [
{
"Risk": "HIGH",
"InterventionStatus": "ARTStaging"
}
]
}
Example 2: This example demonstrates how to specify individual restrictions for targeting specific groups of people. In this case, we are targeting individuals whose InterventionStatus is set to ARTStaging and who have either HIGH or MEDIUM risk behavior. In other words, we aim to target individuals who meet either of the following conditions:
1 2 | |
replace emodpy with emodpy_hiv or emodpy_malaria based on the disease you are working on.
from emodpy.campaign.common import PropertyRestrictions from emodpy.campaign.distributor import add_intervention_scheduled property_restrictions_within_node = PropertyRestrictions( individual_property_restrictions=[ ["Risk:HIGH", "InterventionStatus:ARTStaging"], ["Risk:MEDIUM", "InterventionStatus:ARTStaging"]]) add_intervention_scheduled(property_restrictions=property_restrictions, ...)
the result json should look like this:
{
"Property_Restrictions_Within_Node": [
{
"Risk": "HIGH",
"InterventionStatus": "ARTStaging"
},
{
"Risk": "MEDIUM",
"InterventionStatus": "ARTStaging"
}
]
}
Example 3: This example demonstrates how to use 'node_property_restrictions' to specify the NodeProperty. In this case, we are targeting nodes that meet either of the following conditions:
- "Risk is set to MEDIUM and Place is set to URBAN"
- "Risk is set to LOW and Place is set to RURAL"
replace emodpy with emodpy_hiv or emodpy_malaria based on the disease you are working on.
from emodpy.campaign.common import PropertyRestrictions from emodpy.campaign.distributor import add_intervention_scheduled property_restrictions = PropertyRestrictions( node_property_restrictions=[ ["Risk:MEDIUM", "Place:URBAN"], ["Risk:LOW", "Place:RURAL"]]) add_intervention_scheduled(property_restrictions=property_restrictions, ...)
the result json should look like this:
{
"Node_Property_Restrictions": [
{
"Risk": "MEDIUM",
"Place": "URBAN"
},
{
"Risk": "LOW",
"Place": "RURAL"
}
]
}
Source code in emodpy/campaign/common.py
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 | |
RepetitionConfig
A class that is used to configure the number of times the intervention event will occur by setting the Number_Repetitions, Timesteps_Between_Repetitions in the Event_Coodinator.
It's used with emodpy.campaign.distributor.add_intervention_scheduled function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
number_repetitions
|
int
|
|
1
|
timesteps_between_repetitions
|
int
|
|
None
|
infinite_repetitions
|
bool
|
|
False
|
Raises:
| Type | Description |
|---|---|
ValueError
|
if timesteps_between_repetitions is undefined when number_repetitions is used. |
Examples:
replace emodpy with emodpy_hiv or emodpy_malaria based on the disease you are working on.
from emodpy.campaign.common import RepetitionConfig from emodpy.campaign.distributor import add_intervention_scheduled repetition_config = RepetitionConfig(number_repetitions=2, timesteps_between_repetitions=365) add_intervention_scheduled(repetition_config=repetition_config, ...)
Source code in emodpy/campaign/common.py
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | |
TargetDemographicsConfig
A class that is used to configure the Demographics_Coverage, Target_Demographic, Target_Age_Min, Target_Age_Max, Target_Gender and Target_Residents_Only in the coordinator class. Please refer to emodpy.campaign.distributor for its usage.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
demographic_coverage
|
float
|
|
1.0
|
target_age_min
|
float
|
|
0
|
target_age_max
|
float
|
|
MAX_AGE_YEARS
|
target_gender
|
Gender
|
|
ALL
|
target_residents_only
|
bool
|
|
False
|
Examples:
replace emodpy with emodpy_hiv or emodpy_malaria based on the disease you are working on.
from emodpy.campaign.common import TargetDemographicsConfig, TargetGender from emodpy.campaign.distributor import add_intervention_scheduled demographics_config = TargetDemographicsConfig(demographic_coverage=0.5, target_age_min=10, target_age_max=20, target_gender=TargetGender.FEMALE) add_intervention_scheduled(demographics_config=demographics_config, ...)
Source code in emodpy/campaign/common.py
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | |
ValueMap
Create a ValueMap object to configure the Times and Values for ValueMap in the campaign_object. This is used, for example, in certain WaningConfig classes to configure Vaccine interventions.
The ValueMap object is initialized with two lists: times and values. The times list represents specific points in time (in years), and the values list represents the corresponding values at those times. Depending on the type of campaign object used, the values are either interpolated linearly or remain constant between the specified times.
Requirements: - The number of elements in the times and values lists must be the same. - The times list must be in ascending order. - Both times and values must be non-negative numbers.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
times
|
List[float]
|
|
required |
values
|
List[float]
|
|
required |
Source code in emodpy/campaign/common.py
to_schema_dict(campaign)
A function that converts the ValueMap object to a schema dictionary.