Skip to content

Commit 223e2a8

Browse files
code sample for pandas-dev#39738
1 parent bf29638 commit 223e2a8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

bisect/39738.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import pandas as pd
2+
3+
print(pd.__version__)
4+
5+
df = pd.DataFrame({"x": [1, 2, 3], "y": [4, 5, 6]})
6+
7+
result = df.sum(min_count=10)
8+
print(result)

0 commit comments

Comments
 (0)