我正在使用 PyCharm ,并在尝试将系列转换为类别时遇到以下警告。
预期类型'可选[dtype]',得到' str'相反
我正在使用官方文档中的代码 https://pandas.pydata.org/pandas-docs/stable/categorical.html#series-creation
我的代码:
import pandas as pd
s = pd.Series(["a","b","c","a"], dtype="category")
如何解决此警告?