Skip to content

Commit

Permalink
Allow create_data_frame_by_entity to adapt to period
Browse files Browse the repository at this point in the history
  • Loading branch information
benjello committed Oct 2, 2023
1 parent 8b29744 commit 264a1fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openfisca_survey_manager/simulations.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ def create_data_frame_by_entity(simulation, variables = None, expressions = None
]
openfisca_data_frame_by_entity_key[entity_key] = pd.DataFrame(
dict(
(column_name, simulation.calculate(column_name, period = period))
(column_name, simulation.adaptative_calculate_variable(column_name, period = period))
for column_name in column_names
)
)
Expand Down

0 comments on commit 264a1fe

Please sign in to comment.