Skip to content

Commit

Permalink
code sample for pandas-dev#39738
Browse files Browse the repository at this point in the history
  • Loading branch information
simonjayhawkins committed Feb 12, 2021
1 parent bf29638 commit 223e2a8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions bisect/39738.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pandas as pd

print(pd.__version__)

df = pd.DataFrame({"x": [1, 2, 3], "y": [4, 5, 6]})

result = df.sum(min_count=10)
print(result)

0 comments on commit 223e2a8

Please sign in to comment.