We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 078a3e9 commit ffbba5cCopy full SHA for ffbba5c
activitysim/abm/models/disaggregate_accessibility.py
@@ -437,7 +437,9 @@ def zone_sampler(self):
437
]
438
439
# Need to make sure we sample from TAZs that still exist in the maz_candidates
440
- taz_candidates = taz_candidates[taz_candidates.index.isin(maz_candidates.TAZ)]
+ taz_candidates = taz_candidates[
441
+ taz_candidates.index.isin(maz_candidates.TAZ)
442
+ ]
443
444
# Calculate the remaining samples to collect
445
n_samples_remaining = n_samples - len(maz_sample_idx)
0 commit comments