is_numeric = data.iloc[15].applymap(lambda x: not bool(pattern.search(str(x)))).all().all()AttributeError: 'Series' object has no attribute 'applymap'怎么修改
时间: 2024-03-12 11:48:25 浏览: 107
SQL Server获取磁盘空间使用情况
您可以尝试使用 `apply` 方法替换 `applymap` 方法,因为 `applymap` 方法只适用于 DataFrame 对象,而不适用于 Series 对象。因此,您可以将 `applymap` 方法替换为 `apply` 方法,如下所示:
```
is_numeric = data.iloc[15].apply(lambda x: not bool(pattern.search(str(x)))).all()
```
这样,您就可以应用 lambda 函数到 Series 对象中的每个元素,并返回一个包含所有结果的布尔值。
阅读全文