我正在过滤Pandas Serie,以查找行是否为给定字符串的子字符串。 我尝试了这些指示,但未能成功:
url(r'^$', views.index, name='index')
我还测试了sting_to_test = "My String"
filtered_data = my_serie[my_serie in sting_to_test]
函数,但似乎无法在单个字符串中使用它。
isin()
有没有解决方案而不循环遍历整个系列?
答案 0 :(得分:1)
您可以尝试按以下方式使用apply
和lambda
:
my_series = pd.Series(['AB', 'CD', 'BA'])
test_str = 'ABC'
print(my_series.apply(lambda row: row in test_str))