python数据统计量分析

Posted 棍子哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python数据统计量分析相关的知识,希望对你有一定的参考价值。

#-*- 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日期) #读取数据,指定“日期”列为索引列
data = data[(data[u销量] > 400)&(data[u销量] < 5000)] #过滤异常数据
statistics = data.describe() #保存基本统计量

statistics.loc[range] = statistics.loc[max]-statistics.loc[min] #极差
statistics.loc[var] = statistics.loc[std]/statistics.loc[mean] #变异系数
statistics.loc[dis] = statistics.loc[75%]-statistics.loc[25%] #四分位数间距

print(statistics)

D:\Download\python3\python3.exe "E:/A正在学习/python data dig/chapter3/demo/code/3-2_statistics_analyze.py"
                销量
count   195.000000
mean   2744.595385
std     424.739407
min     865.000000
25%    2460.600000
50%    2655.900000
75%    3023.200000
max    4065.200000
range  3200.200000
var       0.154755
dis     562.600000

Process finished with exit code 0

 

以上是关于python数据统计量分析的主要内容,如果未能解决你的问题,请参考以下文章

测序数据基本信息

15种Python片段去优化你的数据科学管道

python 用于数据探索的Python代码片段(例如,在数据科学项目中)

在PaddlePaddle中的Notebook代码片段

Python数据分析入门与实践

为什么推荐Python做数据分析?如何学习?