kolom nilai absolut panda
df['Column_name'] = df['Column_name'].abs()
The Frenchy
df['Column_name'] = df['Column_name'].abs()
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