我想将数值重新编码为类别1到4。当运行最后一个条件时,它会将所有先前重新编码的值转换为4。我如何在一系列值上重新编码?
df2['col1'] = np.where(df2['col1'] < -1.27, 1,df2['col1'].values)
df2['col1'] = np.where( (df2['col1'] >= -1.27) & (df2['col1'] < -0.74), 2,df2['col1'].values )
df2['col1'] = np.where( (df2['col1'] >= -0.74) & (df2['col1'] < -0.075), 3,df2['col1'].values)
df2['col1'] = np.where((df2['col1'] >= -0.075) , 4, df2['col1'].values)
1条答案
按热度按时间4ioopgfo1#
只需确保最后一次比较不包括您已经赋值的值。
如果您的数据实际上包含正值,则必须为新列赋值。