# Pyecharts_hw **Repository Path**: jiayingb/Pyecharts_hw ## Basic Information - **Project Name**: Pyecharts_hw - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-09-27 - **Last Updated**: 2024-11-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Pyecharts_hw Homework
In [6]:
from pyecharts import options as opts
from pyecharts.charts import Boxplot
In [10]:
from pyecharts.faker import Faker
from pyecharts import options as opts
from pyecharts.charts import Bar


def bar_base() -> Bar:
    c = (
        Bar()
        .add_xaxis(Faker.choose())
        .add_yaxis("商家A", Faker.values())
        .add_yaxis("商家B", Faker.values())
        .set_global_opts(title_opts=opts.TitleOpts(title="Bar-基本示例", subtitle="我是副标题"))
    )
    return c
bar_base().render_notebook()
Out[10]:
In [4]:
import pandas as pd
import csv,os
df=pd.read_csv("Desktop\oecd_carbon_emissions_data.csv",index_col="Country")
df
Out[4]:
1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 ... 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
Country
United States 6371000.54 6315615.19 6424934.36 6532069.60 6624835.79 6710067.3 6907699.05 6968461.97 7032526.01 7071461.46 ... 7160600.81 6709369.15 6938591.68 6787419.03 6545969.33 6710218.18 6759995.63 6623775.48 6492267.43 6456718.19
European Union (28 countries) 5649529.34 5555045.95 5379830.54 5281540.39 5255297.27 5308544.0 5418671.89 5326316.82 5281519.48 5172643.92 ... 5046999.43 4681900.46 4783627.79 4626382.21 4563064.71 4468920.46 4297635.77 4327313.20 4303391.87 4323163.15

2 rows × 28 columns

In [36]:
x轴 = df.columns.values
x轴 = df.columns.values[-10:]
x轴
Out[36]:
array(['2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015',
       '2016', '2017'], dtype=object)
In [41]:
#美国= list(df.loc["United States"].values)
美国= list(df.loc["United States"].values)[-10:]
美国
Out[41]:
[7160600.81,
 6709369.15,
 6938591.68,
 6787419.03,
 6545969.33,
 6710218.18,
 6759995.63,
 6623775.48,
 6492267.43,
 6456718.19]
In [42]:
#欧洲 = list(df.loc["European Union (28 countries)"].values)
欧洲 = list(df.loc["European Union (28 countries)"].values)[-10:]
欧洲
Out[42]:
[5046999.43,
 4681900.46,
 4783627.79,
 4626382.21,
 4563064.71,
 4468920.46,
 4297635.77,
 4327313.2,
 4303391.87,
 4323163.15]
In [46]:
def bar_base() -> Bar:
    c = (
        Bar()
        .add_xaxis((['2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017']))
        .add_yaxis("美", 美国)
        .add_yaxis("欧", 欧洲)
        .set_global_opts(title_opts=opts.TitleOpts(title="CO2排放量", subtitle="欧美对比"))
    )
    return c
bar_base().render_notebook()
Out[46]:
In [ ]:
 
In [47]:
x轴_字符串=[str(x)for x in x轴]
x轴_字符串
Out[47]:
['2008',
 '2009',
 '2010',
 '2011',
 '2012',
 '2013',
 '2014',
 '2015',
 '2016',
 '2017']
In [48]:
import pyecharts.options as opts
from pyecharts.charts import Line
def line_base() -> Line:
    c = (
        Line()
        .add_xaxis((['2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015',
       '2016', '2017']))
        .add_yaxis("美", 美国)
        .add_yaxis("欧", 欧洲)
        .set_global_opts(title_opts=opts.TitleOpts(title="二氧化碳排放量"))
    )
    return c
line_base().render_notebook()
Out[48]:
In [ ]: