pandas.errors.ValueLabelTypeMismatch#

exception pandas.errors.ValueLabelTypeMismatch[源代码][源代码]#

当 to_stata 遇到包含非字符串值的类别列时发出的警告。

例子

>>> df = pd.DataFrame({"categories": pd.Series(["a", 2], dtype="category")})
>>> df.to_stata("test")