Skip to content

Commit f040b46

Browse files
code sample for pandas-dev#38556
1 parent bf40fc2 commit f040b46

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

bisect/38556.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+
res = pd.CategoricalIndex(["A", "B", "C", "A", "B"]).get_indexer(
6+
pd.CategoricalIndex(["B", "C", "D", "E"])
7+
)
8+
print(res)

0 commit comments

Comments
 (0)