如何用条件替换 Dataframe 中的值。假设列age的值小于10,则将其乘以10,否则将其乘以1。
from decimal import Decimal as dfor i in newdt['age']: if i < 10 : print(d(i*10)) else: print(d(i*1))
enter image description here
enter image description here
https://www.kaggle.com/datasets/fedesoriano/stroke-prediction-dataset
移动笔划数据集coles的小数点。基本上,使年龄由个位数值变为两位数值。0.08至8 enter image description here
1条答案
按热度按时间ccrfmcuu1#
更改pandas DF值的基本原理如下所示,可以根据您的要求进行修改。