Wednesday, 15 June 2011

pandas - Absolute value for column in Python -


How do I convert the values ​​of column 'count' to full value?

My summary this dataframe:

  Date time count 2011-01-20 00:00:00 14.565 996 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 05:00 -5.963259 6 2011-01-20 06:00:00 73.711525  

use.

DF ['Count'] = DF [1] 'Count']. ABS () print (DF) count # 0 1 # 1 1 # 2 2 # 3 2 # 4 3 # 5 3

No comments:

Post a Comment