From 807106866d0c3bfdadc670f644686e72df8cdc26 Mon Sep 17 00:00:00 2001 From: David Hensle Date: Fri, 15 Dec 2023 16:59:32 -0800 Subject: [PATCH] sampling in EDB for location choice --- activitysim/abm/models/location_choice.py | 1 - 1 file changed, 1 deletion(-) diff --git a/activitysim/abm/models/location_choice.py b/activitysim/abm/models/location_choice.py index ecbc264c0..d71da5694 100644 --- a/activitysim/abm/models/location_choice.py +++ b/activitysim/abm/models/location_choice.py @@ -501,7 +501,6 @@ def run_location_sample( survey_choices["person_id"].isin(choices.index) & (survey_choices.alt_dest > 0) ] - # merging survey destination into table if not available joined_data = survey_choices.merge( choices, on=["person_id", "alt_dest"], how="left", indicator=True