📜  pandas 将行标准化为最大值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:30.578000             🧑  作者: Mango

代码示例1
# credit to the Stack Overflow user in the source link
df.apply(lambda x: x/x.max(), axis=1)