We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf40fc2 commit f040b46Copy full SHA for f040b46
bisect/38556.py
@@ -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