当前位置:   article > 正文

Python数据分析(3)----酒类销售数据分析_使用pandas探索酒类消费数据(drinks.csv)如何下载

使用pandas探索酒类消费数据(drinks.csv)如何下载

本次实验内容为酒类销售数据的分析,数据请见:https://pan.baidu.com/s/1tL7FE5lxs-gb6Phf8XRu_Q,文件夹:data_analysis,下面的文件:drinks.csv 本次实验主要是对python中的数据进行基本操作。

代码为:

#!/usr/bin/env python 
# -*- coding:utf-8 -*-
import pandas as pd
# 探索酒类消费数据,主要考查分组聚合的使用
# 1. 将数据框命名为drinks
#drinks = pd.read_csv('data_analysis/drinks.csv',index_col=0)  #指定具体列作为数据框的行索引
drinks = pd.read_csv('data_analysis/drinks.csv')
#2. 哪个大陆(continent)平均消耗的啤酒(beer)更多?
drinks.groupby('continent').agg({'beer_servings': 'mean'}).idxmax()   #取出具体的大陆
mid = drinks.groupby('continent').agg({'beer_servings': 'mean'})    #分组聚合的结果
print(mid)
mid.loc['EU']
# 3. 打印出每个大陆(continent)的红酒消耗(wine_servings)的描述性统计值。
drinks.groupby('continent').agg({'wine_servings': 'describe'})   # 描述性统计信息里面包括count、mean、std、min、25%、50%、75%、max
drinks.groupby('continent')['wine_servings'].describe()

# 4. 打印出每个大陆每种酒类别的消耗平均值。
drinks.groupby('continent').mean()
drinks.groupby('continent').agg('mean')
drinks.groupby('continent').agg(['mean', 'max', 'std'])
# 5. 打印出每个大陆每种酒类别的消耗中位数。
drinks.groupby('continent').median()

# 6. 打印出每个大陆对spirit_servings饮品消耗的平均值,最大值和最小值。
drinks.groupby('continent').agg({'spirit_servings': ['mean', 'max', 'min']})

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26

文件‘drinks.csv’中的数据截图为:
在这里插入图片描述

运行结果截图如下所示:
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/142177
推荐阅读
相关标签
  

闽ICP备14008679号