箱型图分析的python代码
Posted 时光-ing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了箱型图分析的python代码相关的知识,希望对你有一定的参考价值。
部分代码
import pandas as pd
catering_sale = 'XXX.xls' # 餐饮数据
data = pd.read_excel(catering_sale, index_col=u'number') # 读取数据,指定“日期”列为索引列
import matplotlib.pyplot as plt # 导入图像库
from matplotlib.font_manager import FontProperties
font_set = FontProperties(fname=r"c:\\windows\\fonts\\simsun.ttc", size=15)
plt.rcParams['font.sans-serif'] = ['SimHei'] # 用来正常显示中文标签
plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号
fig = plt.figure(figsize=(4.5, 5)) # 建立图像
......
效果展示
完整代码链接:箱型图分析的python代码
以上是关于箱型图分析的python代码的主要内容,如果未能解决你的问题,请参考以下文章