panda menormalkan baris ke nilai maksimal
# credit to the Stack Overflow user in the source link
df.apply(lambda x: x/x.max(), axis=1)
wolf-like_hunter
# credit to the Stack Overflow user in the source link
df.apply(lambda x: x/x.max(), axis=1)