6.1 时间趋势可视化-柱形图 提

第1关:“大胃王”比赛数据柱形图绘制——绘制柱形图的…

# -*- coding: utf-8 -*-
import pandas as pd
from matplotlib import pyplot as plt

hot_dog = pd.read_csv(r"matplotlib_bar/csv/hot-dog-contest-winners.csv")

def plot(): 
    # ********* Begin *********#
    fig, ax = plt.subplots() #subplots返回画布和子图  
    ax.bar(hot_dog["Year"],hot_dog["Dogs eaten"]) #绘制柱形图,第一个参数为x轴变量,第二个参数为y轴变量  
    plt.show()  #显示图像  

    # ********* End *********#
    plt.savefig('matplotlib_bar/studentfile/studentanswer/level_1/US.png')
    plt.close()

第2关:“大胃王”比赛数据柱形图绘制——柱形图展示优化

# -*- coding: utf-8 -*-

import pandas as pd

from matplotlib import pyplot as plt

 

hot_dog = pd.read_csv(r"matplotlib_bar/csv/hot-dog-contest-winners.csv")

 

def plot(): 

    # ********* Begin *********#

    fig, ax = plt.subplots() #subplots返回画布和子图  

    ax.bar(hot_dog["Year"],hot_dog["Dogs eaten"],width=[0.6],color=unitedStatesColor()) #添加指定的宽度

    ax.set_xlabel("Year") #设置x轴标签  

    ax.set_ylabel("Dogs Eaten") #设置y轴标签  

    ax.set_title("Hotdog game scores 1980-2010") #设置标题  

    ax.set_xlim(1979,2011) #设置x轴数据限值  

    plt.rcParams['figure.figsize'] = (8.0, 4.0) #设置figure_size尺寸  

    # ********* End *********#

    plt.savefig('matplotlib_bar/studentfile/studentanswer/level_2/US.png')

    plt.close()

 

 

def unitedStatesColor():

    # ********* Begin *********# 

    list=[]  

    for i in hot_dog["Country"]:  

        if i=='United States':  

            list.append("#DB7093") #打破记录的年份显示为粉红色  

        else:  

            list.append("#5F9F9F") #其余年份显示为灰绿色  

    return list  

 

    # ********* End *********#
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值