Yar*_*ari 25 python calculated-columns pandas
如何将列'count'的值转换为绝对值?
我的数据框总结:
             datetime   count
0   2011-01-20 00:00:00 14.565996
1   2011-01-20 01:00:00 10.204177
2   2011-01-20 02:00:00 -1.261569
3   2011-01-20 03:00:00 1.938322
4   2011-01-20 04:00:00 1.938322
5   2011-01-20 05:00:00 -5.963259
6   2011-01-20 06:00:00 73.711525
Ffi*_*ydd 51
import pandas as pd
df = pd.DataFrame(data={'count':[1, -1, 2, -2, 3, -3]})
df['count'] = df['count'].abs()
print(df)
   count
#0      1
#1      1
#2      2
#3      2
#4      3
#5      3
| 归档时间: | 
 | 
| 查看次数: | 35818 次 | 
| 最近记录: |