We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e62f28b commit 688539eCopy full SHA for 688539e
1 file changed
activitysim/abm/models/joint_tour_participation.py
@@ -432,7 +432,8 @@ def joint_tour_participation(
432
# its value depends on whether the candidate's 'participant_id' is in the joint_tour_participant index
433
survey_participants_df = estimator.get_survey_table("joint_tour_participants")
434
participate = pd.Series(
435
- choices.index.isin(survey_participants_df.participant_id), index=choices.index
+ choices.index.isin(survey_participants_df.participant_id),
436
+ index=choices.index,
437
)
438
439
# but estimation software wants to know the choices value (alternative index)
0 commit comments