excel求变异系数,excel计算所有省份变异系数

首页 > 教育 > 作者:YD1662024-05-17 06:46:04

本案例有关说明

链接:https://pan.baidu.com/s/1ARmBISe_xask-qqaNyaM1A

提取码:qa0f

描述性统计基本认识

描述性统计,是指通过数据计算“统计量”用来描述数据特征的活动。描述性统计分析主要包括以下几个方面的分析:

引入需要使用到的库

import pandas as pd

import numpy as np

import matplotlib.pyplot as plt

import seaborn as sns

这个引入库的动作,是首先要做的。

excel求变异系数,excel计算所有省份变异系数(1)

read_excel()读入待分析数据

df = pd.read_excel('19财管管理会计成绩.xlsx',sheet_name='19财管管理会计')

数据集:"19财管管理会计成绩.xlsx",两列,class为分类变量,glkj为可度量变量。

excel求变异系数,excel计算所有省份变异系数(2)

Descriptive Statistics

# 分组聚合,统计均值、次数、标准差等 stats = df.groupby('class')['glkj'].agg(['mean', 'count', 'std','min','max']) # 计算0.05水平下的置信区间 ci95_hi = [] ci95_lo = [] co_v = [] for i in stats.index: m, c, s = stats.loc[i,['mean','count','std']] ci95_hi.append(m 1.96 * s/math.sqrt(c)) ci95_lo.append(m - 1.96 * s/math.sqrt(c)) co_v.append(s/m) stats['ci95_LB'] = ci95_lo stats['ci95_UB'] = ci95_hi stats['c.v'] = co_v统计量stats

上述“统计量”的基本概念计算方法及计算公式网上讲解很多,在此就不具体列出了,需要的请百度。

统计量如下图所示:

excel求变异系数,excel计算所有省份变异系数(3)

excel求变异系数,excel计算所有省份变异系数(4)

首页 12345下一页

栏目热文

文档排行

本站推荐

Copyright © 2018 - 2021 www.yd166.com., All Rights Reserved.