Skip to content

Commit

Permalink
Merge pull request pandas-dev#695 from shashank88/fix_benchmarks
Browse files Browse the repository at this point in the history
694: Fix Benchmarks
  • Loading branch information
shashank88 authored Jan 17, 2019
2 parents b1507fc + aefdfd6 commit 8a6ae81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def gen_dataframe_compressible(cols, rows):

def gen_series_compressible(rows):
d = round(random.uniform(-100.0, 100.0), 1)
data = [d * rows]
data = [d] * rows

index = [range(rows)]

Expand Down

0 comments on commit 8a6ae81

Please sign in to comment.