Population
Population
The Population
class is used to represent the population of agents the model is running on. On construction, it stochastically creates the population described in the params
. At its core, it is a graph with nodes (all_agents
) and edges (relationships
), it can be formally backed by a NetworkX graph by enabling the graph in the prams file. This allows for some graph-specific logic to be applied throughout the running of the model (e.g. trimming components, writing network statistics).
Source code in titan/population.py
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 113 114 115 116 117 118 119 120 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 213 214 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 304 305 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 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 |
|
__init__(params, id=None)
Initialize Population object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
params |
Model parameters |
required | |
id |
Optional[str]
|
8 character identifier for a model |
None
|
Source code in titan/population.py
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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
|
add_agent(agent)
Adds an agent to the population
Parameters:
Name | Type | Description | Default |
---|---|---|---|
agent |
The agent to be added |
required |
Source code in titan/population.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
|
add_relationship(rel)
Add a new relationship to the population.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rel |
The Relationship to be added |
required |
Source code in titan/population.py
244 245 246 247 248 249 250 251 252 253 254 |
|
connected_components()
Get connected components in graph (if enabled)
Returns:
Type | Description |
---|---|
List
|
list of connected components |
Source code in titan/population.py
510 511 512 513 514 515 516 517 518 519 520 521 522 |
|
create_agent(loc, race, time, sex_type=None, drug_type=None, age=None)
Create a new agent with randomly assigned attributes according to population demographics [params.demographics]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
loc |
Location
|
location the agent will live in |
required |
race |
str
|
race of the new agent |
required |
time |
int
|
current time step of the model |
required |
sex_type |
Optional[str]
|
sex_type of the new agent |
None
|
drug_type |
Optional[str]
|
drug_type of the new agent |
None
|
age |
Optional[int]
|
age of the new agent |
None
|
Returns:
Type | Description |
---|---|
Agent
|
a new agent |
Source code in titan/population.py
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 213 214 215 216 217 218 219 220 221 222 |
|
get_age(loc, race)
Given the population characteristics, get a random age to assign to an agent given the race of that agent
Parameters:
Name | Type | Description | Default |
---|---|---|---|
race |
race of the agent whose age is being generated |
required |
Returns:
Type | Description |
---|---|
int
|
age and the bin the age came from |
Source code in titan/population.py
309 310 311 312 313 314 315 316 317 318 319 320 321 322 |
|
migrate()
Have agents migrate between locations with probabilities defined in location.migration.matrix_file
.
Source code in titan/population.py
524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 |
|
remove_agent(agent)
Remove an agent from the population.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
agent |
Agent to remove |
required |
Source code in titan/population.py
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 |
|
remove_relationship(rel)
Remove a relationship from the population.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rel |
Relationship to remove |
required |
Source code in titan/population.py
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
|
trim_graph()
Initialize network with graph-based algorithm for relationship adding/pruning
Source code in titan/population.py
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 |
|
update_agent_components()
Update the component IDs associated with each agent based on the current state of the graph
Source code in titan/population.py
457 458 459 460 461 462 463 464 465 466 467 468 469 |
|
update_agent_partners(agent, bond_type, components)
Finds and bonds new partner. Creates relationship object for partnership, calcs partnership duration, adds it to the population, and adds to networkX graph if self.enable_graph is set True.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
agent |
Agent
|
Agent that is seeking a new partner |
required |
bond_type |
str
|
What type of bond the agent is seeking to make |
required |
Returns:
Type | Description |
---|---|
bool
|
True if no match was found for agent (used for retries) |
Source code in titan/population.py
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 |
|
update_partner_assignments(t)
Determines which agents will seek new partners from All_agentSet. Calls update_agent_partners for any agents that desire partners.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
t |
int
|
current time step of the model |
required |
Source code in titan/population.py
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 |
|
update_partner_targets()
Update the target number of partners for each agent and bond type
Source code in titan/population.py
431 432 433 434 435 436 437 438 439 440 |
|
update_partnerability(a)
Update whether each agent in the population is currently able to form new relationships for each bond type
Source code in titan/population.py
442 443 444 445 446 447 448 449 450 451 452 453 454 455 |
|
Population Reading & Writing
Released in v1.1.0
Populations can be saved to file so that they can be analysed in detail or re-used in a future run. run_titan.py
allows this using the --savepop [path]
option to save the population to the path, and the --poppath [path]
option loads the population at the path. The population is saved after creation, but before the model has run.
Saving the Population
The population is represented as a series of csv files that save the attributes for the core entities (agents, relationships at this time). The population can be saved with only core
attributes (e.g. race, sex_type, hiv) or with intervention
attributes (e.g. prep, vaccinated) as well. intervention
attributes are less likely to work as intended across versions of the model.
Write a non-empty Population to file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pop |
Population
|
a non-empty agent population |
required |
dir |
str
|
path to directory where files should be written |
required |
compress |
bool
|
whether to compress and archive the csv |
True
|
Returns:
Type | Description |
---|---|
str
|
path, or archive name if compress is true |
Source code in titan/population_io.py
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 |
|
Reading in/using a Saved Population
A population can be created from the files saved, however, there is no validation done to ensure the params used when running on this population make sense/match what was originally used when creating it. Some things may validly change (e.g. interventions, reports needed, seeds), but others may result in strange behavior if changed (e.g. race distribution, what classes are in use).
Read a population from file and return a Population instance
Parameters:
Name | Type | Description | Default |
---|---|---|---|
params |
ObjMap
|
the parameters used for creating this popultation |
required |
path |
str
|
path where [id]_agents.csv and [id]_relationships.csv are or tar.gz file containing population |
required |
returns: the re-constituted population
Source code in titan/population_io.py
111 112 113 114 115 116 117 118 119 120 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 |
|