You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, the utils.simple_transition model does not allow for linked tables to be changed as the transition model changes the main table. We use this specifically when the households are transitioning, the persons table should change as well. Though we have that option in the full_transition model in a parameter called linked_tables, we don't have the same possibility when running a simple transition model with a growth rate.
The text was updated successfully, but these errors were encountered:
To solve this, I created the linked_tables_addin branch, where I add a parameter called linked_tables, which default is None, so nothing would happen if you do not choose to use this. def simple_transition(tbl, rate, location_fname, linked_tables=None):
Equally as in the full transition model,
linked_tables : dict of tuple, optional
Dictionary of table_name: (table, 'column name') pairs. The column name
should match the index of `agents`. Indexes in `agents` that
are copied or removed will also be copied and removed in
linked tables.
After the transition itself, these lines are added to take care of the linked tables that should be changed:
linked_tables = linked_tables or {}
updated_links = {}
for table_name, (table, col) in linked_tables.items():
print('updating linked table {}'.format(table_name))
updated_links[table_name] = \
transition._update_linked_table(table, col, added, copied, removed)
for table_name, table in updated_links.items():
print("Total {} after transition: {:,}".format(table_name, len(table)))
orca.add_table(table_name, table)
if linked_tables is None nothing different from the original state, happens.
Right now, the
utils.simple_transition
model does not allow for linked tables to be changed as the transition model changes the main table. We use this specifically when the households are transitioning, the persons table should change as well. Though we have that option in thefull_transition
model in a parameter calledlinked_tables
, we don't have the same possibility when running a simple transition model with a growth rate.The text was updated successfully, but these errors were encountered: