作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试安装 JamesSteinEncoder 时出现以下错误
encoder = JamesSteinEncoder().fit(X, y)
FutureWarning: is_categorical is deprecated and will be removed in a future version. Use is_categorical_dtype instead
elif pd.api.types.is_categorical(cols):
sklearn.__version__ : '0.23.2'
代码:
speed = ['DE','AU','US','FR','GB','KR','AU']
lifespan = [1, 0, 1, 1, 1, 0, 1]
life = [1, 1, 0, 1, 1, 0, np.nan]
index = ['snail', 'pig', 'elephant',
'rabbit', 'giraffe', 'coyote', 'horse']
df = pd.DataFrame({'speed': speed,
'lifespan': lifespan,
'life':life}, index=index)
df['speed']= df['speed'].astype('category')
from category_encoders import JamesSteinEncoder
X = df['speed']
y = df['lifespan']
enc = JamesSteinEncoder().fit(X, y)
/Users/*/opt/anaconda3/envs/proj/lib/python3.7/site-packages/category_encoders/utils.py:21: FutureWarning: is_categorical is deprecated and will be removed in a future version. Use is_categorical_dtype instead
elif pd.api.types.is_categorical(cols):
最佳答案
python的好处是你可以自己更改源代码。
我做到了,你也可以这样做:
用vim打开文件,/Users/*/opt/anaconda3/envs/proj/lib/python3.7/sitepackages/category_encoders/utils.py
转到第 21 行
改变
elif pd.api.types.is_categorical(cols):
到
elif pd.api.types.is_categorical_dtype(cols):
保存更改并退出 vim。
你已经完成了。
现在您已经为自己进行了更改,您将不会再收到此警告。
关于python - 使用 JamesSteinEncoder 时出现 "is_categorical is deprecated"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63589556/
尝试安装 JamesSteinEncoder 时出现以下错误 encoder = JamesSteinEncoder().fit(X, y) FutureWarning: is_categorical
我是一名优秀的程序员,十分优秀!