我 试图 用 df 描述 一 个 列 , 但是 对于 另 一 列 中 的 每个 唯一 值 , 我 有 df :
id revenue country
1 128 at
2 130 de
3 132 de
4 134 hu
5 136 at
6 138 at
7 140 hu
中 的 每 一 个
我 想 通过 这样 的 方式 :
df[df['Country']=='cz'].net_revenue.describe(percentiles=[0.2,0.4,0.6,0.8,0.9,0.95,0.99,0.999])
格式
但是 对于 列 Country 中 的 每个 唯一 值 。
1条答案
按热度按时间pcrecxhr1#
使用
groupby.describe
:输出量: