Skip to content

Commit

Permalink
Small bug fix in benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
hosseinmoein committed Nov 19, 2023
1 parent 7e2b3b5 commit 9350d21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmarks/pandas_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
fourth = datetime.datetime.now()

print(f"Calculation time: {(third - second).seconds}.{(third - second).microseconds}")
print(f"Selection time: {(fourth - third).seconds}.{(third - second).microseconds}")
print(f"Selection time: {(fourth - third).seconds}.{(fourth - third).microseconds}")
print(f"Overall time: {(fourth - first).seconds}.{(fourth - first).microseconds}")

# ------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/polars_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
fourth = datetime.datetime.now()

print(f"Calculation time: {(third - second).seconds}.{(third - second).microseconds}")
print(f"Selection time: {(fourth - third).seconds}.{(third - second).microseconds}")
print(f"Selection time: {(fourth - third).seconds}.{(fourth - third).microseconds}")
print(f"Overall time: {(fourth - first).seconds}.{(fourth - first).microseconds}")

# ------------------------------------------------------------------------------
Expand Down

0 comments on commit 9350d21

Please sign in to comment.