Skip to content

Commit 36a4183

Browse files
code sample for pandas-dev#38645
1 parent bfc2da2 commit 36a4183

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

bisect/38645.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import dask.array as da
2+
3+
import pandas as pd
4+
5+
print(pd.__version__)
6+
7+
a = da.ones((12,), chunks=4)
8+
9+
s = pd.Series(a, index=range(12))
10+
print(s)
11+
12+
assert s.dtype == "float64"

0 commit comments

Comments
 (0)