[Pandas] 求百分比并添加百分(%)号

导入数据

import pandas as pd

df = pd.DataFrame(data={'orders': [2130,5102,3256,1297,1918,786],
                        'repeat_orders': [73,158,89,30,49,18]})

df

[Pandas] 求百分比并添加百分(%)号_第1张图片

df['repetition_rate']= df['repeat_orders'] / df['orders']

df

[Pandas] 求百分比并添加百分(%)号_第2张图片

df['repetition_rate'] = df['repetition_rate'].apply(lambda x: format(x, '.2%'))

df

[Pandas] 求百分比并添加百分(%)号_第3张图片

你可能感兴趣的:(Pandas,pandas,python)