Alexander Svozil

Results 2 comments of Alexander Svozil

Ran into the same issue today. Workaround is as follows: ``` import numpy as np import pandas as pd df = pd.DataFrame({"col1": list("ABBC"), "col2": list("ZZXY")}).astype("string") conditions = [ ((df["col2"] ==...