Skip to content

Commit

Permalink
removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
a-hartens committed Nov 19, 2024
1 parent 032d79e commit e3cf021
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions phenex/filters/aggregator.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,10 @@ def aggregate(self, input_table: Table):

# Apply the distinct reduction if required
if self.reduce:
print("REDUCING")
selected_columns = self.aggregation_index + [self.event_date_column]
input_table = input_table.select(selected_columns).distinct()
print(selected_columns)
input_table = input_table.mutate(VALUE=ibis.null())

print(input_table.to_pandas())
return input_table

class Nearest(VerticalDateAggregator):
Expand Down

0 comments on commit e3cf021

Please sign in to comment.