当前位置:   article > 正文

Python春晚数据分析_chines_year文件含有1248条数据,包含年份、节目类型、节目名称、节目参演演员四列

chines_year文件含有1248条数据,包含年份、节目类型、节目名称、节目参演演员四列
import xlrd
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
from flask import Flask, jsonify, render_template, request
from pyecharts import *#pyecharts 0.5.0
from imageio import imread
app = Flask(__name__)

plt.rcParams['font.sans-serif']=['SimHei']#设置中文字体

class Exc():
    def __init__(self,filePath,sheetName):
        self.data=xlrd.open_workbook(filePath)#文件路径
        self.table=self.data.sheet_by_name(sheetName)#excel中的表名
        # 获取第一列的key值
        self.keys = self.table.row_values(0)
        # 获取总行数
        self.rowNum = self.table.nrows
        # 获取总列数
        self.colNum = self.table.ncols
        
    
    def draw(self,):
        cls={}#以年份为单位,计数各类型节目数量
        ycls={}#存放单独一年给类型节目数量,循环清空
        years=1983#初始年份1983,后随读取年份而变化
        zoncate={}#各类型节目总数量
        rna=[]#存放所有演员名单
        rname={}#存放所有演员及其登场次数
        rnamel=[]#list存放排序后的演员名单
        zoncatel=[]#list存放排序前后节目名单
        
        if self.rowNum<=1:
            print('无数据可取')
        else:
            r=[]
            j=1
            
            for i in range (self.rowNum-1):
                
                s={}
                values=self.table.row_values(j)#换行读取存数据
                #print(values)
                for x in range(self.colNum):#存各列数据
                    s[self.keys[x]]=values[x]
                if int(s[self.keys[3]])!=years:#判断是否为同一年节目
                    #print(years,'年各种节目数目:',cls)
                    years=int(s[self.keys[3]])
                    cls={}

                rna=s[self.keys[2]].split('、')#对单个节目的每个演员分开计数
                for i in rna:
                    try:
                        rname[i]+=1#记表演人名单及其出场次数
                    except:
                        rname[i]=1

                try:
                    cls[s[self.keys[0]]]+=1#计各种节目个数
                except:
                    cls[s[self.keys[0]]]=1
                try:
                    zoncate[s[self.keys[0]]]+=1#各节目类型总表演次数
                except:
                    zoncate[s[self.keys[0]]]=1
                j+=1#行数加一
                   
                r.append(s)
                ycls[years]=cls 
            rname.pop('')
            rnamel=zip(rname.values(),rname.keys())#对人次字典进行 键、值 分包,值放前
            
            zoncatel=zip(zoncate.values(),zoncate.keys())#对类次字典进行 键、值 分包,值放前
            
            rnamel=sorted(rnamel)#从小到大以包中在前的登场次数values排名
            #print(rnamel)
            zoncatel=sorted(zoncatel)
            #print('所有的节目种类次数:',zoncatel)
#-------------------------------------------------------
            rna=[]
            rnum=[]
            rna2=[]
            rnum2=[]
            catena=[]
            catenum=[]
            inyear=1983
            self.yearpie=years
            yearslist=list(range(1983,years+1))#创建一个年份列表 作为折线图x轴

            for i in rnamel[-10:]:
                rna.append(i[1])
                rnum.append(i[0])
            barr = Bar('排名前十的演员的登场次数')
            barr.add("演员", rna, rnum, mark_line=["average"],title='排名前十的演员的登场次数')
            #bar.render('排名前十的演员的登场次数.html')
            
            for i in rnamel:
                rna2.append(i[1])
                rnum2.append(i[0])
            rna2.remove('1]')
            rnum2.remove(1)

            cy=WordCloud('演员词云')
            
            cy.add('',rna2,rnum2,shape='circle')
            
            cy2=WordCloud('节目词云')
            cy2.add('',list(zoncate.keys()),list(zoncate.values()))
            
            for i in zoncatel[-10:]:
                catena.append(i[1])
                catenum.append(i[0])
            line=Line('\n排名前十节目的每年表演次数变化')
            
            for i in catena:
                plty=[]
                radern=[0]
                for j in yearslist:
                    try:
                        
                        plty.append(ycls[j][i])
                    except KeyError:
                        plty.append(0)
                #print(plty)
                #radern[0]=plty
                line.add(i, yearslist, plty, mark_point=["max", "min"],mark_line=["average"])
            
            #print(ycls)

            piez=Pie('\n1983-2018年各类节目表演次数饼图')
            piez.add('',catena,catenum, is_more_utils=True)
            self.yclspie=ycls
            #------------
            page=Page()
            page.add(cy)
            page.add(cy2)
            page.add(barr)
            page.add(line)
            page.add(piez)

                
            page.render("templates/历年春晚数据图表.html")

    def drawpie(self,ye):
        inyear = 1983
        pie = Pie('\n\n\n\n{}年各种节目数目对比'.format(ye))
        cnum = list(self.yclspie[ye].values())
        cname = list(self.yclspie[ye].keys())
        pie.add('{}年各种节目数目对比'.format(inyear), cname, cnum, radius=[30, 75], is_more_utils=True)
        pie.render('templates/{}年各种节目数目对比.html'.format(ye))

@app.route("/home")
def home():
    data.draw()
    return render_template("历年春晚数据图表.html")

@app.route("/index")
def index():
    return render_template("index.html")

@app.route("/year", methods=['GET', 'POST'])
def getValues():
    yearslist = list(range(1983, 2019))
    text = request.form.get('year')
    text = int(text)
    if text in yearslist:
        data.drawpie(text)
        return render_template('{}年各种节目数目对比.html'.format(text))
    else:
        return '不存在'
    
    
    
if __name__=='__main__':
    filePath="春晚节目单.xlsx"
    sheetName='春晚节目单'
    data=Exc(filePath,sheetName)
    #print(data.dict_data())
    #data.draw()
    app.run(host='127.0.0.1', port=8080, debug=True)
    #data.drawpie()




  • 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
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/147983
推荐阅读
相关标签
  

闽ICP备14008679号