Skip to content

Commit

Permalink
Merge branch 'histograms_from_timed_dataframe' into hist_testing
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Oct 28, 2023
2 parents 09900f8 + 9c3faf0 commit 943b5a8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions sed/core/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1456,11 +1456,12 @@ def add_jitter(
if col not in self._timed_dataframe.columns:
cols_timed.remove(col)

self._timed_dataframe = self._timed_dataframe.map_partitions(
apply_jitter,
cols=cols_timed,
cols_jittered=cols_timed,
)
if cols_timed:
self._timed_dataframe = self._timed_dataframe.map_partitions(
apply_jitter,
cols=cols_timed,
cols_jittered=cols_timed,
)
metadata = []
for col in cols:
metadata.append(col)
Expand Down

0 comments on commit 943b5a8

Please sign in to comment.