我无法将“ MinTemp”列中的值分为3组并更新数据框。
“ MinTemp”列中的值的范围是-8.2至33.9。
我只想有3个群组,@Transactional(isolation = Isolation.REPEATABLE_READ)
,@Transactional
(mintp2)和<= 10.0 (mintp1)
(mintp3)。
> 10.0 && <= 22.0
TypeError:'str'和'float'实例之间不支持'>'
答案 0 :(得分:1)
使用pd.to_numeric
将字符串值转换为数值以进行比较:
df[col] = pd.to_numeric(df[col])