Может использовать только аксессурс.

data.loc['foo'].str.contains("bar")
# turns into
data.loc['foo'].astype(str).str.contains("bar")
Sulphix