Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
dorisjlee committed Nov 11, 2020
1 parent 08d167e commit 665be02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lux/executor/PandasExecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def execute_2D_binning(vis: Vis):
result = result.dropna()
else:
groups = vis._vis_data.groupby(["xBin", "yBin"])[x_attr]
result = groups.count().reset_index(name=x_attr)
result = groups.count().reset_index(name=x_attr)
result = result.rename(columns={x_attr: "count"})
result = result[result["count"] != 0]

Expand Down

0 comments on commit 665be02

Please sign in to comment.