2018年5月28日
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/5/28 16:05 # @Author : zhang chao # @File : test.py import matplotlib.pyplot as plt labels='Frogs','Hogs','Dogs','Logs'#定义标签 sizes=... 阅读全文
posted @ 2018-05-28 16:46 裸睡的猪 阅读(409) 评论(0) 推荐(0) 编辑
摘要: #-*- coding: utf-8 -*- #餐饮销量数据相关性分析 计算相关系数 from __future__ import print_function import pandas as pd catering_sale = '../data/catering_sale_all.xls' #餐饮数据,含有其他属性 data = pd.read_excel(catering_sale,... 阅读全文
posted @ 2018-05-28 15:54 裸睡的猪 阅读(81812) 评论(0) 推荐(1) 编辑
摘要: #-*- coding: utf-8 -*- #菜品盈利数据 帕累托图 from __future__ import print_function import pandas as pd #初始化参数 dish_profit = '../data/catering_dish_profit.xls' #餐饮菜品盈利数据 data = pd.read_excel(dish_profit, inde... 阅读全文
posted @ 2018-05-28 15:32 裸睡的猪 阅读(832) 评论(0) 推荐(0) 编辑
摘要: #-*- coding: utf-8 -*- #餐饮销量数据统计量分析 from __future__ import print_function import pandas as pd catering_sale = '../data/catering_sale.xls' #餐饮数据 data = pd.read_excel(catering_sale, index_col = u'日期')... 阅读全文
posted @ 2018-05-28 15:10 裸睡的猪 阅读(924) 评论(0) 推荐(0) 编辑
摘要: #-*- coding: utf-8 -*- import pandas as pd catering_sale = '../data/catering_sale.xls' #餐饮数据 data = pd.read_excel(catering_sale, index_col = u'日期') #读取数据,指定“日期”列为索引列 import matplotlib.pyplot as plt... 阅读全文
posted @ 2018-05-28 11:22 裸睡的猪 阅读(3002) 评论(0) 推荐(0) 编辑