python读取广州-湛江天气csv文件并做可视化仪表盘(二)

简介: python读取广州-湛江天气csv文件并做可视化仪表盘(二)

11.筛选出平均气温在18-25度的数据

# 筛选出平均气温在18-25度的数据
filtered_data = data[(data['平均温度'] >= 18) & (data['平均温度'] <= 25)]
# 分别统计两个城市符合条件的天数
gz_num_days = len(filtered_data[filtered_data['城市'] == '广州'])
zj_num_days = len(filtered_data[filtered_data['城市'] == '湛江'])
# 输出结果
gz_num_days

76fcb6f0b7944df985d17688ca1ff2af.png

12.解决乱码问题

plt.rcParams["font.sans-serif"] = ["SimHei"]  # 设置字体
plt.rcParams["axes.unicode_minus"] = False  # 该语句解决图像中的“-”负号的乱码问题

13.广州-湛江每日平均温度折线图

# 筛选出广州和湛江的数据
gz_data = data[data['城市'] == '广州']
zj_data = data[data['城市'] == '湛江']
# 提取日期和平均温度数据
x = gz_data['日期']
y1 = gz_data['平均温度']
y2 = zj_data['平均温度']
# 绘制折线图
plt.figure(dpi=500, figsize=(10, 5))
plt.title("广州-湛江每日平均温度折线图")
plt.plot(x, y1, color='red', label='广州')
plt.plot(x, y2, color='blue', label='湛江')
# 获取图的坐标信息
coordinates = plt.gca()
# 设置x轴每个刻度的间隔天数
xLocator = mpl.ticker.MultipleLocator(30)
coordinates.xaxis.set_major_locator(xLocator)
# 将日期旋转30°
plt.xticks(rotation=30)
plt.xticks(fontsize=8)
plt.ylabel("温度(℃)")
plt.xlabel("日期")
plt.legend()
plt.savefig("广州-湛江每日平均温度折线图.png")
plt.show()

a8fd9053211046beb9a0ac79325c1816.png

14.广州-湛江每月气温折线图

# 筛选出广州和湛江的数据
data_GZ_ZJ = grouped_AB[(grouped_AB['城市'] == '广州') | (grouped_AB['城市'] == '湛江')]
# 绘制折线图
fig, ax = plt.subplots()
for city in ['广州', '湛江']:
    ax.plot(data_GZ_ZJ[data_GZ_ZJ['城市'] == city]['月份'], data_GZ_ZJ[data_GZ_ZJ['城市'] == city]['平均温度'], label=city)
# 设置图例和标题
ax.legend()
ax.set_title('广州-湛江每月气温折线图')
# 显示图形
plt.show()

08792941b5504518b8ccf5ae7bd7e7e7.png

15.广州-湛江各类天气饼图

# 创建一个 1 行 2 列的子图,figsize 参数用于设置图表大小
fig, ax = plt.subplots(1, 2, figsize=(10, 5))
# 绘制广州各类天气饼图
ax[0].pie(df3['天数'], labels=df3['新天气'], autopct='%1.1f%%', startangle=90)
ax[0].set_title('广州各类天气天数占比')
# 绘制湛江各类天气饼图
ax[1].pie(df4['天数'], labels=df4['新天气'], autopct='%1.1f%%', startangle=90)
ax[1].set_title('湛江各类天气天数占比')
# 调整子图之间的间距
plt.subplots_adjust(wspace=0.3)
# 显示图表
plt.show()

1ad313ac90864b2cb7213ed90dcb30db.png

16.广州和湛江各类天气天数对比

import matplotlib.pyplot as plt
# 创建一个画布
fig, ax = plt.subplots(figsize=(10, 5))
# 绘制广州各类天气条形图
ax.bar(df3['新天气'], df3['天数'], width=0.4, label='广州')
# 绘制湛江各类天气条形图
ax.bar(df4['新天气'], df4['天数'], width=0.4, label='湛江', alpha=0.7)
# 设置图例
ax.legend()
# 设置 x 轴标签和标题
ax.set_xlabel('天气类型')
ax.set_ylabel('天数')
ax.set_title('广州和湛江各类天气天数对比')
# 显示图表
plt.show()

20e61f3c859e44debfc1e1a3fc84d168.png

17.广州各类天气天数占比

import pandas as pd
from pyecharts.charts import Pie
from pyecharts import options as opts
# 读取csv文件并转换为列表格式
df = pd.read_csv('df3.csv')
data_list = df[['新天气', '天数']].values.tolist()
# 生成饼图
pie = Pie()
pie.add("", data_list)
pie.set_global_opts(title_opts=opts.TitleOpts(title="广州各类天气天数占比"))
pie.set_series_opts(label_opts=opts.LabelOpts(formatter="{b}"))
pie.render_notebook()

d2cbd0c2e4344e219674e17bc698a398.png

18.湛江各类天气天数占比

import pandas as pd
from pyecharts.charts import Pie
from pyecharts import options as opts
# 读取csv文件并转换为列表格式
df = pd.read_csv('df4.csv')
data_list = df[['新天气', '天数']].values.tolist()
# 生成饼图
pie = Pie()
pie.add("", data_list)
pie.set_global_opts(title_opts=opts.TitleOpts(title="湛江各类天气天数占比"))
pie.set_series_opts(label_opts=opts.LabelOpts(formatter="{b}"))
pie.render_notebook()

0068f2abfc3a42208196497f274099c7.png

19.下面我们使用前端网页生成仪表图,这个仪表图的id是使用哈希加密来定义的,这些名称都是使用Unicode编码中的字符来写的,需要的可以研究一下

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Awesome-pyecharts</title>
    <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/echarts.min.js"></script>
    <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/jquery.min.js"></script>
    <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/jquery-ui.min.js"></script>
    <script type="text/javascript" src="https://assets.pyecharts.org/assets/v5/ResizeSensor.js"></script>
    <link rel="stylesheet"  href="https://assets.pyecharts.org/assets/v5/jquery-ui.css">
</head>
<body >
<style>.box {  } </style>
<button onclick="downloadCfg()">Save Config</button>
<div class="box">
    <div id="c48b9e2d9b7440e1b2f458d54f3b383c" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_c48b9e2d9b7440e1b2f458d54f3b383c = echarts.init(
            document.getElementById('c48b9e2d9b7440e1b2f458d54f3b383c'), 'white', {renderer: 'canvas'});
        var option_c48b9e2d9b7440e1b2f458d54f3b383c = {
            "animation": true,
            "animationThreshold": 2000,
            "animationDuration": 1000,
            "animationEasing": "cubicOut",
            "animationDelay": 0,
            "animationDurationUpdate": 300,
            "animationEasingUpdate": "cubicOut",
            "animationDelayUpdate": 0,
            "aria": {
                "enabled": false
            },
            "color": [
                "#5470c6",
                "#91cc75",
                "#fac858",
                "#ee6666",
                "#73c0de",
                "#3ba272",
                "#fc8452",
                "#9a60b4",
                "#ea7ccc"
            ],
            "series": [
                {
                    "type": "bar",
                    "name": "\u5e7f\u5dde",
                    "legendHoverLink": true,
                    "data": [
                        247,
                        0,
                        1,
                        14,
                        61,
                        42
                    ],
                    "realtimeSort": false,
                    "showBackground": false,
                    "stackStrategy": "samesign",
                    "cursor": "pointer",
                    "barMinHeight": 0,
                    "barCategoryGap": "20%",
                    "barGap": "30%",
                    "large": false,
                    "largeThreshold": 400,
                    "seriesLayoutBy": "column",
                    "datasetIndex": 0,
                    "clip": true,
                    "zlevel": 0,
                    "z": 2,
                    "label": {
                        "show": true,
                        "margin": 8
                    }
                },
                {
                    "type": "bar",
                    "name": "\u6e5b\u6c5f",
                    "legendHoverLink": true,
                    "data": [
                        260,
                        3,
                        8,
                        19,
                        59,
                        16
                    ],
                    "realtimeSort": false,
                    "showBackground": false,
                    "stackStrategy": "samesign",
                    "cursor": "pointer",
                    "barMinHeight": 0,
                    "barCategoryGap": "20%",
                    "barGap": "30%",
                    "large": false,
                    "largeThreshold": 400,
                    "seriesLayoutBy": "column",
                    "datasetIndex": 0,
                    "clip": true,
                    "zlevel": 0,
                    "z": 2,
                    "label": {
                        "show": true,
                        "margin": 8
                    }
                }
            ],
            "legend": [
                {
                    "data": [
                        "\u5e7f\u5dde",
                        "\u6e5b\u6c5f"
                    ],
                    "selected": {},
                    "show": true,
                    "left": "center",
                    "padding": 5,
                    "itemGap": 10,
                    "itemWidth": 25,
                    "itemHeight": 14,
                    "backgroundColor": "transparent",
                    "borderColor": "#ccc",
                    "borderWidth": 1,
                    "borderRadius": 0,
                    "pageButtonItemGap": 5,
                    "pageButtonPosition": "end",
                    "pageFormatter": "{current}/{total}",
                    "pageIconColor": "#2f4554",
                    "pageIconInactiveColor": "#aaa",
                    "pageIconSize": 15,
                    "animationDurationUpdate": 800,
                    "selector": false,
                    "selectorPosition": "auto",
                    "selectorItemGap": 7,
                    "selectorButtonGap": 10
                }
            ],
            "tooltip": {
                "show": true,
                "trigger": "item",
                "triggerOn": "mousemove|click",
                "axisPointer": {
                    "type": "line"
                },
                "showContent": true,
                "alwaysShowContent": false,
                "showDelay": 0,
                "hideDelay": 100,
                "enterable": false,
                "confine": false,
                "appendToBody": false,
                "transitionDuration": 0.4,
                "textStyle": {
                    "fontSize": 14
                },
                "borderWidth": 0,
                "padding": 5,
                "order": "seriesAsc"
            },
            "xAxis": [
                {
                    "show": true,
                    "scale": false,
                    "nameLocation": "end",
                    "nameGap": 15,
                    "gridIndex": 0,
                    "axisLabel": {
                        "show": true,
                        "rotate": -45,
                        "margin": 8
                    },
                    "inverse": false,
                    "offset": 0,
                    "splitNumber": 5,
                    "minInterval": 0,
                    "splitLine": {
                        "show": true,
                        "lineStyle": {
                            "show": true,
                            "width": 1,
                            "opacity": 1,
                            "curveness": 0,
                            "type": "solid"
                        }
                    },
                    "data": [
                        "\u591a\u4e91",
                        "\u96fe",
                        "\u5176\u4ed6",
                        "\u9634",
                        "\u96e8",
                        "\u6674"
                    ]
                }
            ],
            "yAxis": [
                {
                    "show": true,
                    "scale": false,
                    "nameLocation": "end",
                    "nameGap": 15,
                    "gridIndex": 0,
                    "inverse": false,
                    "offset": 0,
                    "splitNumber": 5,
                    "minInterval": 0,
                    "splitLine": {
                        "show": true,
                        "lineStyle": {
                            "show": true,
                            "width": 1,
                            "opacity": 1,
                            "curveness": 0,
                            "type": "solid"
                        }
                    }
                }
            ],
            "title": [
                {
                    "show": true,
                    "text": "\u5e7f\u5dde\u548c\u6e5b\u6c5f\u5404\u7c7b\u5929\u6c14\u5929\u6570\u5bf9\u6bd4\u56fe",
                    "target": "blank",
                    "subtarget": "blank",
                    "padding": 5,
                    "itemGap": 10,
                    "textAlign": "auto",
                    "textVerticalAlign": "auto",
                    "triggerEvent": false
                }
            ]
        };
        chart_c48b9e2d9b7440e1b2f458d54f3b383c.setOption(option_c48b9e2d9b7440e1b2f458d54f3b383c);
    </script>
    <br/>                <div id="88ddd5d9c5594bf597661b16ae91e0e4" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_88ddd5d9c5594bf597661b16ae91e0e4 = echarts.init(
            document.getElementById('88ddd5d9c5594bf597661b16ae91e0e4'), 'white', {renderer: 'canvas'});
        var option_88ddd5d9c5594bf597661b16ae91e0e4 = {
            "animation": true,
            "animationThreshold": 2000,
            "animationDuration": 1000,
            "animationEasing": "cubicOut",
            "animationDelay": 0,
            "animationDurationUpdate": 300,
            "animationEasingUpdate": "cubicOut",
            "animationDelayUpdate": 0,
            "aria": {
                "enabled": false
            },
            "color": [
                "#5470c6",
                "#91cc75",
                "#fac858",
                "#ee6666",
                "#73c0de",
                "#3ba272",
                "#fc8452",
                "#9a60b4",
                "#ea7ccc"
            ],
            "series": [
                {
                    "type": "pie",
                    "colorBy": "data",
                    "legendHoverLink": true,
                    "selectedMode": false,
                    "selectedOffset": 10,
                    "clockwise": true,
                    "startAngle": 90,
                    "minAngle": 0,
                    "minShowLabelAngle": 0,
                    "avoidLabelOverlap": true,
                    "stillShowZeroSum": true,
                    "percentPrecision": 2,
                    "showEmptyCircle": true,
                    "emptyCircleStyle": {
                        "color": "lightgray",
                        "borderColor": "#000",
                        "borderWidth": 0,
                        "borderType": "solid",
                        "borderDashOffset": 0,
                        "borderCap": "butt",
                        "borderJoin": "bevel",
                        "borderMiterLimit": 10,
                        "opacity": 1
                    },
                    "data": [
                        {
                            "name": "\u5176\u4ed6",
                            "value": 1
                        },
                        {
                            "name": "\u591a\u4e91",
                            "value": 247
                        },
                        {
                            "name": "\u6674",
                            "value": 42
                        },
                        {
                            "name": "\u9634",
                            "value": 14
                        },
                        {
                            "name": "\u96e8",
                            "value": 61
                        }
                    ],
                    "radius": [
                        "0%",
                        "75%"
                    ],
                    "center": [
                        "50%",
                        "50%"
                    ],
                    "label": {
                        "show": true,
                        "margin": 8,
                        "formatter": "{b}"
                    },
                    "labelLine": {
                        "show": true,
                        "showAbove": false,
                        "length": 15,
                        "length2": 15,
                        "smooth": false,
                        "minTurnAngle": 90,
                        "maxSurfaceAngle": 90
                    },
                    "rippleEffect": {
                        "show": true,
                        "brushType": "stroke",
                        "scale": 2.5,
                        "period": 4
                    }
                }
            ],
            "legend": [
                {
                    "data": [
                        "\u5176\u4ed6",
                        "\u591a\u4e91",
                        "\u6674",
                        "\u9634",
                        "\u96e8"
                    ],
                    "selected": {},
                    "show": true,
                    "padding": 5,
                    "itemGap": 10,
                    "itemWidth": 25,
                    "itemHeight": 14,
                    "backgroundColor": "transparent",
                    "borderColor": "#ccc",
                    "borderWidth": 1,
                    "borderRadius": 0,
                    "pageButtonItemGap": 5,
                    "pageButtonPosition": "end",
                    "pageFormatter": "{current}/{total}",
                    "pageIconColor": "#2f4554",
                    "pageIconInactiveColor": "#aaa",
                    "pageIconSize": 15,
                    "animationDurationUpdate": 800,
                    "selector": false,
                    "selectorPosition": "auto",
                    "selectorItemGap": 7,
                    "selectorButtonGap": 10
                }
            ],
            "tooltip": {
                "show": true,
                "trigger": "item",
                "triggerOn": "mousemove|click",
                "axisPointer": {
                    "type": "line"
                },
                "showContent": true,
                "alwaysShowContent": false,
                "showDelay": 0,
                "hideDelay": 100,
                "enterable": false,
                "confine": false,
                "appendToBody": false,
                "transitionDuration": 0.4,
                "textStyle": {
                    "fontSize": 14
                },
                "borderWidth": 0,
                "padding": 5,
                "order": "seriesAsc"
            },
            "title": [
                {
                    "show": true,
                    "text": "\u5e7f\u5dde\u5404\u7c7b\u5929\u6c14\u5929\u6570\u5360\u6bd4",
                    "target": "blank",
                    "subtarget": "blank",
                    "padding": 5,
                    "itemGap": 10,
                    "textAlign": "auto",
                    "textVerticalAlign": "auto",
                    "triggerEvent": false
                }
            ]
        };
        chart_88ddd5d9c5594bf597661b16ae91e0e4.setOption(option_88ddd5d9c5594bf597661b16ae91e0e4);
    </script>
    <br/>                <div id="8d11665b4f43436cbb0b2ed6ae6b27f9" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_8d11665b4f43436cbb0b2ed6ae6b27f9 = echarts.init(
            document.getElementById('8d11665b4f43436cbb0b2ed6ae6b27f9'), 'white', {renderer: 'canvas'});
        var option_8d11665b4f43436cbb0b2ed6ae6b27f9 = {
            "animation": true,
            "animationThreshold": 2000,
            "animationDuration": 1000,
            "animationEasing": "cubicOut",
            "animationDelay": 0,
            "animationDurationUpdate": 300,
            "animationEasingUpdate": "cubicOut",
            "animationDelayUpdate": 0,
            "aria": {
                "enabled": false
            },
            "color": [
                "#5470c6",
                "#91cc75",
                "#fac858",
                "#ee6666",
                "#73c0de",
                "#3ba272",
                "#fc8452",
                "#9a60b4",
                "#ea7ccc"
            ],
            "series": [
                {
                    "type": "pie",
                    "colorBy": "data",
                    "legendHoverLink": true,
                    "selectedMode": false,
                    "selectedOffset": 10,
                    "clockwise": true,
                    "startAngle": 90,
                    "minAngle": 0,
                    "minShowLabelAngle": 0,
                    "avoidLabelOverlap": true,
                    "stillShowZeroSum": true,
                    "percentPrecision": 2,
                    "showEmptyCircle": true,
                    "emptyCircleStyle": {
                        "color": "lightgray",
                        "borderColor": "#000",
                        "borderWidth": 0,
                        "borderType": "solid",
                        "borderDashOffset": 0,
                        "borderCap": "butt",
                        "borderJoin": "bevel",
                        "borderMiterLimit": 10,
                        "opacity": 1
                    },
                    "data": [
                        {
                            "name": "\u5176\u4ed6",
                            "value": 8
                        },
                        {
                            "name": "\u591a\u4e91",
                            "value": 260
                        },
                        {
                            "name": "\u6674",
                            "value": 16
                        },
                        {
                            "name": "\u9634",
                            "value": 19
                        },
                        {
                            "name": "\u96e8",
                            "value": 59
                        },
                        {
                            "name": "\u96fe",
                            "value": 3
                        }
                    ],
                    "radius": [
                        "0%",
                        "75%"
                    ],
                    "center": [
                        "50%",
                        "50%"
                    ],
                    "label": {
                        "show": true,
                        "margin": 8,
                        "formatter": "{b}"
                    },
                    "labelLine": {
                        "show": true,
                        "showAbove": false,
                        "length": 15,
                        "length2": 15,
                        "smooth": false,
                        "minTurnAngle": 90,
                        "maxSurfaceAngle": 90
                    },
                    "rippleEffect": {
                        "show": true,
                        "brushType": "stroke",
                        "scale": 2.5,
                        "period": 4
                    }
                }
            ],
            "legend": [
                {
                    "data": [
                        "\u5176\u4ed6",
                        "\u591a\u4e91",
                        "\u6674",
                        "\u9634",
                        "\u96e8",
                        "\u96fe"
                    ],
                    "selected": {},
                    "show": true,
                    "padding": 5,
                    "itemGap": 10,
                    "itemWidth": 25,
                    "itemHeight": 14,
                    "backgroundColor": "transparent",
                    "borderColor": "#ccc",
                    "borderWidth": 1,
                    "borderRadius": 0,
                    "pageButtonItemGap": 5,
                    "pageButtonPosition": "end",
                    "pageFormatter": "{current}/{total}",
                    "pageIconColor": "#2f4554",
                    "pageIconInactiveColor": "#aaa",
                    "pageIconSize": 15,
                    "animationDurationUpdate": 800,
                    "selector": false,
                    "selectorPosition": "auto",
                    "selectorItemGap": 7,
                    "selectorButtonGap": 10
                }
            ],
            "tooltip": {
                "show": true,
                "trigger": "item",
                "triggerOn": "mousemove|click",
                "axisPointer": {
                    "type": "line"
                },
                "showContent": true,
                "alwaysShowContent": false,
                "showDelay": 0,
                "hideDelay": 100,
                "enterable": false,
                "confine": false,
                "appendToBody": false,
                "transitionDuration": 0.4,
                "textStyle": {
                    "fontSize": 14
                },
                "borderWidth": 0,
                "padding": 5,
                "order": "seriesAsc"
            },
            "title": [
                {
                    "show": true,
                    "text": "\u6e5b\u6c5f\u5404\u7c7b\u5929\u6c14\u5929\u6570\u5360\u6bd4",
                    "target": "blank",
                    "subtarget": "blank",
                    "padding": 5,
                    "itemGap": 10,
                    "textAlign": "auto",
                    "textVerticalAlign": "auto",
                    "triggerEvent": false
                }
            ]
        };
        chart_8d11665b4f43436cbb0b2ed6ae6b27f9.setOption(option_8d11665b4f43436cbb0b2ed6ae6b27f9);
    </script>
    <br/>                <div id="05381e07884b4ca4a31f555d2e24d39e" class="chart-container" style="width:980px; height:600px; "></div>
    <script>
        var chart_05381e07884b4ca4a31f555d2e24d39e = echarts.init(
            document.getElementById('05381e07884b4ca4a31f555d2e24d39e'), 'white', {renderer: 'canvas'});
        var option_05381e07884b4ca4a31f555d2e24d39e = {
            "baseOption": {
                "series": [
                    {
                        "type": "line",
                        "name": "\u5e7f\u5dde",
                        "connectNulls": false,
                        "xAxisIndex": 0,
                        "symbolSize": 5,
                        "showSymbol": true,
                        "smooth": true,
                        "clip": true,
                        "step": false,
                        "data": [
                            [
                                1,
                                15.709677419354838
                            ],
                            [
                                2,
                                12.232142857142858
                            ],
                            [
                                3,
                                21.177419354838708
                            ],
                            [
                                4,
                                22.533333333333335
                            ],
                            [
                                5,
                                24.370967741935484
                            ],
                            [
                                6,
                                28.0
                            ],
                            [
                                7,
                                30.35483870967742
                            ],
                            [
                                8,
                                29.0
                            ],
                            [
                                9,
                                28.866666666666667
                            ],
                            [
                                10,
                                24.903225806451612
                            ],
                            [
                                11,
                                21.783333333333335
                            ],
                            [
                                12,
                                13.403225806451612
                            ]
                        ],
                        "hoverAnimation": true,
                        "label": {
                            "show": false,
                            "margin": 8
                        },
                        "logBase": 10,
                        "seriesLayoutBy": "column",
                        "lineStyle": {
                            "normal": {
                                "width": 4,
                                "shadowColor": "#696969",
                                "shadowBlur": 10,
                                "shadowOffsetY": 10,
                                "shadowOffsetX": 10
                            }
                        },
                        "areaStyle": {
                            "opacity": 0
                        },
                        "zlevel": 0,
                        "z": 0,
                        "rippleEffect": {
                            "show": true,
                            "brushType": "stroke",
                            "scale": 2.5,
                            "period": 4
                        }
                    },
                    {
                        "type": "line",
                        "name": "\u6e5b\u6c5f",
                        "connectNulls": false,
                        "xAxisIndex": 0,
                        "symbolSize": 5,
                        "showSymbol": true,
                        "smooth": true,
                        "clip": true,
                        "step": false,
                        "data": [
                            [
                                1,
                                17.612903225806452
                            ],
                            [
                                2,
                                14.553571428571429
                            ],
                            [
                                3,
                                21.967741935483872
                            ],
                            [
                                4,
                                22.733333333333334
                            ],
                            [
                                5,
                                25.080645161290324
                            ],
                            [
                                6,
                                29.016666666666666
                            ],
                            [
                                7,
                                29.096774193548388
                            ],
                            [
                                8,
                                28.35483870967742
                            ],
                            [
                                9,
                                27.916666666666668
                            ],
                            [
                                10,
                                24.370967741935484
                            ],
                            [
                                11,
                                23.516666666666666
                            ],
                            [
                                12,
                                15.564516129032258
                            ]
                        ],
                        "hoverAnimation": true,
                        "label": {
                            "show": false,
                            "margin": 8
                        },
                        "logBase": 10,
                        "seriesLayoutBy": "column",
                        "lineStyle": {
                            "normal": {
                                "width": 4,
                                "shadowColor": "#696969",
                                "shadowBlur": 10,
                                "shadowOffsetY": 10,
                                "shadowOffsetX": 10
                            }
                        },
                        "areaStyle": {
                            "opacity": 0
                        },
                        "zlevel": 0,
                        "z": 0,
                        "rippleEffect": {
                            "show": true,
                            "brushType": "stroke",
                            "scale": 2.5,
                            "period": 4
                        }
                    }
                ],
                "timeline": {
                    "axisType": "category",
                    "currentIndex": 0,
                    "orient": "horizontal",
                    "autoPlay": true,
                    "controlPosition": "left",
                    "loop": true,
                    "rewind": false,
                    "show": true,
                    "inverse": false,
                    "playInterval": 1000,
                    "left": "0",
                    "right": "0",
                    "bottom": "-5px",
                    "progress": {},
                    "data": [
                        "1\u6708",
                        "2\u6708",
                        "3\u6708",
                        "4\u6708",
                        "5\u6708",
                        "6\u6708",
                        "7\u6708",
                        "8\u6708",
                        "9\u6708",
                        "10\u6708",
                        "11\u6708",
                        "12\u6708"
                    ]
                },
                "xAxis": [
                    {
                        "type": "category",
                        "show": true,
                        "scale": false,
                        "nameLocation": "end",
                        "nameGap": 15,
                        "gridIndex": 0,
                        "axisLine": {
                            "show": true,
                            "onZero": true,
                            "onZeroAxisIndex": 0,
                            "lineStyle": {
                                "show": true,
                                "width": 2,
                                "opacity": 1,
                                "curveness": 0,
                                "type": "solid",
                                "color": "#DB7093"
                            }
                        },
                        "axisLabel": {
                            "show": true,
                            "color": "red",
                            "margin": 8,
                            "fontSize": 14
                        },
                        "inverse": false,
                        "offset": 0,
                        "splitNumber": 5,
                        "boundaryGap": false,
                        "minInterval": 0,
                        "splitLine": {
                            "show": true,
                            "lineStyle": {
                                "show": true,
                                "width": 1,
                                "opacity": 1,
                                "curveness": 0,
                                "type": "solid"
                            }
                        },
                        "data": [
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12
                        ]
                    }
                ],
                "yAxis": [
                    {
                        "name": "\u5e73\u5747\u6e29\u5ea6",
                        "show": true,
                        "scale": true,
                        "nameLocation": "end",
                        "nameGap": 15,
                        "nameTextStyle": {
                            "color": "#5470c6",
                            "fontWeight": "bold",
                            "fontSize": 16
                        },
                        "gridIndex": 0,
                        "axisLine": {
                            "show": true,
                            "onZero": true,
                            "onZeroAxisIndex": 0,
                            "lineStyle": {
                                "show": true,
                                "width": 2,
                                "opacity": 1,
                                "curveness": 0,
                                "type": "solid",
                                "color": "#5470c6"
                            }
                        },
                        "axisLabel": {
                            "show": true,
                            "color": "#5470c6",
                            "margin": 8,
                            "fontSize": 13
                        },
                        "inverse": false,
                        "offset": 0,
                        "splitNumber": 5,
                        "min": 3,
                        "max": 25,
                        "minInterval": 0,
                        "splitLine": {
                            "show": true,
                            "lineStyle": {
                                "show": true,
                                "width": 1,
                                "opacity": 1,
                                "curveness": 0,
                                "type": "dashed"
                            }
                        }
                    }
                ],
                "legend": [
                    {
                        "data": [
                            "\u5e7f\u5dde",
                            "\u6e5b\u6c5f"
                        ],
                        "selected": {},
                        "show": true,
                        "right": "1%",
                        "top": "2%",
                        "orient": "vertical",
                        "padding": 5,
                        "itemGap": 10,
                        "itemWidth": 25,
                        "itemHeight": 14,
                        "icon": "roundRect",
                        "backgroundColor": "transparent",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "borderRadius": 0,
                        "pageButtonItemGap": 5,
                        "pageButtonPosition": "end",
                        "pageFormatter": "{current}/{total}",
                        "pageIconColor": "#2f4554",
                        "pageIconInactiveColor": "#aaa",
                        "pageIconSize": 15,
                        "animationDurationUpdate": 800,
                        "selector": false,
                        "selectorPosition": "auto",
                        "selectorItemGap": 7,
                        "selectorButtonGap": 10
                    }
                ]
            },
            "options": [
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 5,
                            "max": 27,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 2,
                            "max": 24,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ],
                                [
                                    3,
                                    21.177419354838708
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ],
                                [
                                    3,
                                    21.967741935483872
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 11,
                            "max": 31,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ],
                                [
                                    3,
                                    21.177419354838708
                                ],
                                [
                                    4,
                                    22.533333333333335
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ],
                                [
                                    3,
                                    21.967741935483872
                                ],
                                [
                                    4,
                                    22.733333333333334
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 12,
                            "max": 32,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ],
                                [
                                    3,
                                    21.177419354838708
                                ],
                                [
                                    4,
                                    22.533333333333335
                                ],
                                [
                                    5,
                                    24.370967741935484
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ],
                                [
                                    3,
                                    21.967741935483872
                                ],
                                [
                                    4,
                                    22.733333333333334
                                ],
                                [
                                    5,
                                    25.080645161290324
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 14,
                            "max": 35,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ],
                                [
                                    3,
                                    21.177419354838708
                                ],
                                [
                                    4,
                                    22.533333333333335
                                ],
                                [
                                    5,
                                    24.370967741935484
                                ],
                                [
                                    6,
                                    28.0
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ],
                                [
                                    3,
                                    21.967741935483872
                                ],
                                [
                                    4,
                                    22.733333333333334
                                ],
                                [
                                    5,
                                    25.080645161290324
                                ],
                                [
                                    6,
                                    29.016666666666666
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 18,
                            "max": 39,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ],
                                [
                                    3,
                                    21.177419354838708
                                ],
                                [
                                    4,
                                    22.533333333333335
                                ],
                                [
                                    5,
                                    24.370967741935484
                                ],
                                [
                                    6,
                                    28.0
                                ],
                                [
                                    7,
                                    30.35483870967742
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ],
                                [
                                    3,
                                    21.967741935483872
                                ],
                                [
                                    4,
                                    22.733333333333334
                                ],
                                [
                                    5,
                                    25.080645161290324
                                ],
                                [
                                    6,
                                    29.016666666666666
                                ],
                                [
                                    7,
                                    29.096774193548388
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 19,
                            "max": 40,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ],
                                [
                                    3,
                                    21.177419354838708
                                ],
                                [
                                    4,
                                    22.533333333333335
                                ],
                                [
                                    5,
                                    24.370967741935484
                                ],
                                [
                                    6,
                                    28.0
                                ],
                                [
                                    7,
                                    30.35483870967742
                                ],
                                [
                                    8,
                                    29.0
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ],
                                [
                                    3,
                                    21.967741935483872
                                ],
                                [
                                    4,
                                    22.733333333333334
                                ],
                                [
                                    5,
                                    25.080645161290324
                                ],
                                [
                                    6,
                                    29.016666666666666
                                ],
                                [
                                    7,
                                    29.096774193548388
                                ],
                                [
                                    8,
                                    28.35483870967742
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 18,
                            "max": 39,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ],
                                [
                                    3,
                                    21.177419354838708
                                ],
                                [
                                    4,
                                    22.533333333333335
                                ],
                                [
                                    5,
                                    24.370967741935484
                                ],
                                [
                                    6,
                                    28.0
                                ],
                                [
                                    7,
                                    30.35483870967742
                                ],
                                [
                                    8,
                                    29.0
                                ],
                                [
                                    9,
                                    28.866666666666667
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ],
                                [
                                    3,
                                    21.967741935483872
                                ],
                                [
                                    4,
                                    22.733333333333334
                                ],
                                [
                                    5,
                                    25.080645161290324
                                ],
                                [
                                    6,
                                    29.016666666666666
                                ],
                                [
                                    7,
                                    29.096774193548388
                                ],
                                [
                                    8,
                                    28.35483870967742
                                ],
                                [
                                    9,
                                    27.916666666666668
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 17,
                            "max": 38,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ],
                                [
                                    3,
                                    21.177419354838708
                                ],
                                [
                                    4,
                                    22.533333333333335
                                ],
                                [
                                    5,
                                    24.370967741935484
                                ],
                                [
                                    6,
                                    28.0
                                ],
                                [
                                    7,
                                    30.35483870967742
                                ],
                                [
                                    8,
                                    29.0
                                ],
                                [
                                    9,
                                    28.866666666666667
                                ],
                                [
                                    10,
                                    24.903225806451612
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ],
                                [
                                    3,
                                    21.967741935483872
                                ],
                                [
                                    4,
                                    22.733333333333334
                                ],
                                [
                                    5,
                                    25.080645161290324
                                ],
                                [
                                    6,
                                    29.016666666666666
                                ],
                                [
                                    7,
                                    29.096774193548388
                                ],
                                [
                                    8,
                                    28.35483870967742
                                ],
                                [
                                    9,
                                    27.916666666666668
                                ],
                                [
                                    10,
                                    24.370967741935484
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 14,
                            "max": 34,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ],
                                [
                                    3,
                                    21.177419354838708
                                ],
                                [
                                    4,
                                    22.533333333333335
                                ],
                                [
                                    5,
                                    24.370967741935484
                                ],
                                [
                                    6,
                                    28.0
                                ],
                                [
                                    7,
                                    30.35483870967742
                                ],
                                [
                                    8,
                                    29.0
                                ],
                                [
                                    9,
                                    28.866666666666667
                                ],
                                [
                                    10,
                                    24.903225806451612
                                ],
                                [
                                    11,
                                    21.783333333333335
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ],
                                [
                                    3,
                                    21.967741935483872
                                ],
                                [
                                    4,
                                    22.733333333333334
                                ],
                                [
                                    5,
                                    25.080645161290324
                                ],
                                [
                                    6,
                                    29.016666666666666
                                ],
                                [
                                    7,
                                    29.096774193548388
                                ],
                                [
                                    8,
                                    28.35483870967742
                                ],
                                [
                                    9,
                                    27.916666666666668
                                ],
                                [
                                    10,
                                    24.370967741935484
                                ],
                                [
                                    11,
                                    23.516666666666666
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 11,
                            "max": 33,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                },
                {
                    "backgroundColor": new echarts.graphic.LinearGradient(0, 0, 0, 1, [{offset: 0, color: '#c86589'}, {offset: 1, color: '#06a7ff'}], false),
                    "series": [
                        {
                            "type": "line",
                            "name": "\u5e7f\u5dde",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    15.709677419354838
                                ],
                                [
                                    2,
                                    12.232142857142858
                                ],
                                [
                                    3,
                                    21.177419354838708
                                ],
                                [
                                    4,
                                    22.533333333333335
                                ],
                                [
                                    5,
                                    24.370967741935484
                                ],
                                [
                                    6,
                                    28.0
                                ],
                                [
                                    7,
                                    30.35483870967742
                                ],
                                [
                                    8,
                                    29.0
                                ],
                                [
                                    9,
                                    28.866666666666667
                                ],
                                [
                                    10,
                                    24.903225806451612
                                ],
                                [
                                    11,
                                    21.783333333333335
                                ],
                                [
                                    12,
                                    13.403225806451612
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        },
                        {
                            "type": "line",
                            "name": "\u6e5b\u6c5f",
                            "connectNulls": false,
                            "xAxisIndex": 0,
                            "symbolSize": 5,
                            "showSymbol": true,
                            "smooth": true,
                            "clip": true,
                            "step": false,
                            "data": [
                                [
                                    1,
                                    17.612903225806452
                                ],
                                [
                                    2,
                                    14.553571428571429
                                ],
                                [
                                    3,
                                    21.967741935483872
                                ],
                                [
                                    4,
                                    22.733333333333334
                                ],
                                [
                                    5,
                                    25.080645161290324
                                ],
                                [
                                    6,
                                    29.016666666666666
                                ],
                                [
                                    7,
                                    29.096774193548388
                                ],
                                [
                                    8,
                                    28.35483870967742
                                ],
                                [
                                    9,
                                    27.916666666666668
                                ],
                                [
                                    10,
                                    24.370967741935484
                                ],
                                [
                                    11,
                                    23.516666666666666
                                ],
                                [
                                    12,
                                    15.564516129032258
                                ]
                            ],
                            "hoverAnimation": true,
                            "label": {
                                "show": false,
                                "margin": 8
                            },
                            "logBase": 10,
                            "seriesLayoutBy": "column",
                            "lineStyle": {
                                "normal": {
                                    "width": 4,
                                    "shadowColor": "#696969",
                                    "shadowBlur": 10,
                                    "shadowOffsetY": 10,
                                    "shadowOffsetX": 10
                                }
                            },
                            "areaStyle": {
                                "opacity": 0
                            },
                            "zlevel": 0,
                            "z": 0,
                            "rippleEffect": {
                                "show": true,
                                "brushType": "stroke",
                                "scale": 2.5,
                                "period": 4
                            }
                        }
                    ],
                    "xAxis": [
                        {
                            "type": "category",
                            "show": true,
                            "scale": false,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#DB7093"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "red",
                                "margin": 8,
                                "fontSize": 14
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "boundaryGap": false,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid"
                                }
                            },
                            "data": [
                                1,
                                2,
                                3,
                                4,
                                5,
                                6,
                                7,
                                8,
                                9,
                                10,
                                11,
                                12
                            ]
                        }
                    ],
                    "yAxis": [
                        {
                            "name": "\u5e73\u5747\u6e29\u5ea6",
                            "show": true,
                            "scale": true,
                            "nameLocation": "end",
                            "nameGap": 15,
                            "nameTextStyle": {
                                "color": "#5470c6",
                                "fontWeight": "bold",
                                "fontSize": 16
                            },
                            "gridIndex": 0,
                            "axisLine": {
                                "show": true,
                                "onZero": true,
                                "onZeroAxisIndex": 0,
                                "lineStyle": {
                                    "show": true,
                                    "width": 2,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "solid",
                                    "color": "#5470c6"
                                }
                            },
                            "axisLabel": {
                                "show": true,
                                "color": "#5470c6",
                                "margin": 8,
                                "fontSize": 13
                            },
                            "inverse": false,
                            "offset": 0,
                            "splitNumber": 5,
                            "min": 3,
                            "max": 25,
                            "minInterval": 0,
                            "splitLine": {
                                "show": true,
                                "lineStyle": {
                                    "show": true,
                                    "width": 1,
                                    "opacity": 1,
                                    "curveness": 0,
                                    "type": "dashed"
                                }
                            }
                        }
                    ],
                    "title": [
                        {
                            "show": true,
                            "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u6bcf\u6708\u5e73\u5747\u6e29\u5ea6\u53d8\u5316\u8d8b\u52bf",
                            "target": "blank",
                            "subtarget": "blank",
                            "left": "center",
                            "top": "2%",
                            "padding": 5,
                            "itemGap": 10,
                            "textAlign": "auto",
                            "textVerticalAlign": "auto",
                            "triggerEvent": false,
                            "textStyle": {
                                "color": "#DC143C",
                                "fontSize": 20
                            }
                        }
                    ],
                    "tooltip": {
                        "show": true,
                        "trigger": "axis",
                        "triggerOn": "mousemove|click",
                        "axisPointer": {
                            "type": "cross"
                        },
                        "showContent": true,
                        "alwaysShowContent": false,
                        "showDelay": 0,
                        "hideDelay": 100,
                        "enterable": false,
                        "confine": false,
                        "appendToBody": false,
                        "transitionDuration": 0.4,
                        "textStyle": {
                            "color": "#000"
                        },
                        "backgroundColor": "rgba(245, 245, 245, 0.8)",
                        "borderColor": "#ccc",
                        "borderWidth": 1,
                        "padding": 5,
                        "order": "seriesAsc"
                    },
                    "color": [
                        "#5470c6",
                        "#91cc75",
                        "#fac858",
                        "#ee6666",
                        "#73c0de",
                        "#3ba272",
                        "#fc8452",
                        "#9a60b4",
                        "#ea7ccc"
                    ]
                }
            ]
        };
        chart_05381e07884b4ca4a31f555d2e24d39e.setOption(option_05381e07884b4ca4a31f555d2e24d39e);
    </script>
    <br/>                <div id="8a7398d8a2e046d998a8c6eabebb483a" class="chart-container" style="width:900px; height:500px; "></div>
    <script>
        var chart_8a7398d8a2e046d998a8c6eabebb483a = echarts.init(
            document.getElementById('8a7398d8a2e046d998a8c6eabebb483a'), 'white', {renderer: 'canvas'});
        var option_8a7398d8a2e046d998a8c6eabebb483a = {
            "animation": true,
            "animationThreshold": 2000,
            "animationDuration": 1000,
            "animationEasing": "cubicOut",
            "animationDelay": 0,
            "animationDurationUpdate": 300,
            "animationEasingUpdate": "cubicOut",
            "animationDelayUpdate": 0,
            "aria": {
                "enabled": false
            },
            "color": [
                "#5470c6",
                "#91cc75",
                "#fac858",
                "#ee6666",
                "#73c0de",
                "#3ba272",
                "#fc8452",
                "#9a60b4",
                "#ea7ccc"
            ],
            "series": [
                {
                    "type": "bar",
                    "name": "\u5929\u6570",
                    "legendHoverLink": true,
                    "data": [
                        120,
                        148
                    ],
                    "realtimeSort": false,
                    "showBackground": false,
                    "stackStrategy": "samesign",
                    "cursor": "pointer",
                    "barMinHeight": 0,
                    "barCategoryGap": "20%",
                    "barGap": "30%",
                    "large": false,
                    "largeThreshold": 400,
                    "seriesLayoutBy": "column",
                    "datasetIndex": 0,
                    "clip": true,
                    "zlevel": 0,
                    "z": 2,
                    "label": {
                        "show": true,
                        "position": "top",
                        "margin": 8
                    },
                    "rippleEffect": {
                        "show": true,
                        "brushType": "stroke",
                        "scale": 2.5,
                        "period": 4
                    }
                }
            ],
            "legend": [
                {
                    "data": [
                        "\u5929\u6570"
                    ],
                    "selected": {},
                    "show": true,
                    "padding": 5,
                    "itemGap": 10,
                    "itemWidth": 25,
                    "itemHeight": 14,
                    "backgroundColor": "transparent",
                    "borderColor": "#ccc",
                    "borderWidth": 1,
                    "borderRadius": 0,
                    "pageButtonItemGap": 5,
                    "pageButtonPosition": "end",
                    "pageFormatter": "{current}/{total}",
                    "pageIconColor": "#2f4554",
                    "pageIconInactiveColor": "#aaa",
                    "pageIconSize": 15,
                    "animationDurationUpdate": 800,
                    "selector": false,
                    "selectorPosition": "auto",
                    "selectorItemGap": 7,
                    "selectorButtonGap": 10
                }
            ],
            "tooltip": {
                "show": true,
                "trigger": "item",
                "triggerOn": "mousemove|click",
                "axisPointer": {
                    "type": "line"
                },
                "showContent": true,
                "alwaysShowContent": false,
                "showDelay": 0,
                "hideDelay": 100,
                "enterable": false,
                "confine": false,
                "appendToBody": false,
                "transitionDuration": 0.4,
                "textStyle": {
                    "fontSize": 14
                },
                "borderWidth": 0,
                "padding": 5,
                "order": "seriesAsc"
            },
            "xAxis": [
                {
                    "show": true,
                    "scale": false,
                    "nameLocation": "end",
                    "nameGap": 15,
                    "gridIndex": 0,
                    "inverse": false,
                    "offset": 0,
                    "splitNumber": 5,
                    "minInterval": 0,
                    "splitLine": {
                        "show": true,
                        "lineStyle": {
                            "show": true,
                            "width": 1,
                            "opacity": 1,
                            "curveness": 0,
                            "type": "solid"
                        }
                    },
                    "data": [
                        "\u5e7f\u5dde",
                        "\u6e5b\u6c5f"
                    ]
                }
            ],
            "yAxis": [
                {
                    "show": true,
                    "scale": false,
                    "nameLocation": "end",
                    "nameGap": 15,
                    "gridIndex": 0,
                    "inverse": false,
                    "offset": 0,
                    "splitNumber": 5,
                    "minInterval": 0,
                    "splitLine": {
                        "show": true,
                        "lineStyle": {
                            "show": true,
                            "width": 1,
                            "opacity": 1,
                            "curveness": 0,
                            "type": "solid"
                        }
                    }
                }
            ],
            "title": [
                {
                    "show": true,
                    "text": "\u5e7f\u5dde-\u6e5b\u6c5f2022\u5e74\u5e73\u5747\u6c14\u6e29\u572818-25\u5ea6\u7684\u5929\u6570",
                    "target": "blank",
                    "subtarget": "blank",
                    "padding": 5,
                    "itemGap": 10,
                    "textAlign": "auto",
                    "textVerticalAlign": "auto",
                    "triggerEvent": false
                }
            ]
        };
        chart_8a7398d8a2e046d998a8c6eabebb483a.setOption(option_8a7398d8a2e046d998a8c6eabebb483a);
    </script>
    <br/>    </div>
<script>
    $('#c48b9e2d9b7440e1b2f458d54f3b383c').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#c48b9e2d9b7440e1b2f458d54f3b383c>div:nth-child(1)").width("100%").height("100%");
    new ResizeSensor(jQuery('#c48b9e2d9b7440e1b2f458d54f3b383c'), function() { chart_c48b9e2d9b7440e1b2f458d54f3b383c.resize()});
    $('#88ddd5d9c5594bf597661b16ae91e0e4').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#88ddd5d9c5594bf597661b16ae91e0e4>div:nth-child(1)").width("100%").height("100%");
    new ResizeSensor(jQuery('#88ddd5d9c5594bf597661b16ae91e0e4'), function() { chart_88ddd5d9c5594bf597661b16ae91e0e4.resize()});
    $('#8d11665b4f43436cbb0b2ed6ae6b27f9').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#8d11665b4f43436cbb0b2ed6ae6b27f9>div:nth-child(1)").width("100%").height("100%");
    new ResizeSensor(jQuery('#8d11665b4f43436cbb0b2ed6ae6b27f9'), function() { chart_8d11665b4f43436cbb0b2ed6ae6b27f9.resize()});
    $('#05381e07884b4ca4a31f555d2e24d39e').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#05381e07884b4ca4a31f555d2e24d39e>div:nth-child(1)").width("100%").height("100%");
    new ResizeSensor(jQuery('#05381e07884b4ca4a31f555d2e24d39e'), function() { chart_05381e07884b4ca4a31f555d2e24d39e.resize()});
    $('#8a7398d8a2e046d998a8c6eabebb483a').resizable().draggable().css('border-style', 'dashed').css('border-width', '1px');$("#8a7398d8a2e046d998a8c6eabebb483a>div:nth-child(1)").width("100%").height("100%");
    new ResizeSensor(jQuery('#8a7398d8a2e046d998a8c6eabebb483a'), function() { chart_8a7398d8a2e046d998a8c6eabebb483a.resize()});
    var charts_id = ['c48b9e2d9b7440e1b2f458d54f3b383c','88ddd5d9c5594bf597661b16ae91e0e4','8d11665b4f43436cbb0b2ed6ae6b27f9','05381e07884b4ca4a31f555d2e24d39e','8a7398d8a2e046d998a8c6eabebb483a'];
    function downloadCfg () {
        const fileName = 'chart_config.json'
        let downLink = document.createElement('a')
        downLink.download = fileName
        let result = []
        for(let i=0; i<charts_id.length; i++) {
            chart = $('#'+charts_id[i])
            result.push({
                cid: charts_id[i],
                width: chart.css("width"),
                height: chart.css("height"),
                top: chart.offset().top + "px",
                left: chart.offset().left + "px"
            })
        }
        let blob = new Blob([JSON.stringify(result)])
        downLink.href = URL.createObjectURL(blob)
        document.body.appendChild(downLink)
        downLink.click()
        document.body.removeChild(downLink)
    }
</script>
</body>
</html>

最后前端网页实现的网页如下图所示:

7752b689ca8145a89fca8cc7c5be41b7.png

37f22fd03375488fa1ec826e6eb065cb.png

32dcf86931b0435c962270384ac4cf7b.png

博主写代码来之不易

关注博主下篇更精彩

一键三连!!!

一键三连!!!
感谢一键三连!

相关文章
|
2天前
|
数据挖掘 Python
🚀告别繁琐!Python I/O管理实战,文件读写效率飙升的秘密
在日常编程中,高效的文件I/O管理对提升程序性能至关重要。Python通过内置的`open`函数及丰富的库简化了文件读写操作。本文从基本的文件读写入手,介绍了使用`with`语句自动管理文件、批量读写以减少I/O次数、调整缓冲区大小、选择合适编码格式以及利用第三方库(如pandas和numpy)等技巧,帮助你显著提升文件处理效率,让编程工作更加高效便捷。
13 0
|
22天前
|
安全 项目管理 Python
使用Python shutil库进行文件和目录操作
使用Python shutil库进行文件和目录操作
使用Python shutil库进行文件和目录操作
|
10天前
|
Java 数据安全/隐私保护 Python
Python案例分享:如何实现文件的解压缩
Python案例分享:如何实现文件的解压缩
37 8
|
9天前
|
数据采集 传感器 数据可视化
利用Python进行数据分析与可视化
【9月更文挑战第11天】在数字化时代,数据已成为企业决策和科学研究的关键。本文将引导读者了解如何使用Python这一强大的工具进行数据分析和可视化,帮助初学者理解数据处理的流程,并掌握基本的可视化技术。通过实际案例,我们将展示如何从原始数据中提取信息,进行清洗、处理,最终以图形方式展现结果,使复杂的数据变得直观易懂。
|
10天前
|
存储 缓存 安全
Python案例分享:如何实现文件的上传下载
Python案例分享:如何实现文件的上传下载
48 6
|
10天前
|
数据采集 数据挖掘 数据处理
使用Python和Pandas处理CSV数据
使用Python和Pandas处理CSV数据
43 5
|
20天前
|
测试技术 API 开发者
Python 魔法:打造你的第一个天气查询小工具自动化测试框架的构建与实践
【8月更文挑战第31天】在这篇文章中,我们将一起踏上编程的奇妙旅程。想象一下,只需几行代码,就能让计算机告诉你明天是否要带伞。是的,你没有听错,我们将用Python这把钥匙,解锁天气预报的秘密。不论你是编程新手还是想拓展技能的老手,这篇文章都会为你带来新的视角和灵感。所以,拿起你的键盘,让我们一起创造属于自己的天气小工具吧!
|
22天前
|
JSON 数据可视化 BI
我常用的5个Python可视化库
我常用的5个Python可视化库
|
3天前
|
存储 数据挖掘 测试技术
Python接口自动化中操作Excel文件的技术方法
通过上述方法和库,Python接口自动化中的Excel操作变得既简单又高效,有助于提升自动化测试的整体质量和效率。
11 0
|
20天前
|
搜索推荐 API 数据处理
Python魔法:打造个性化天气查询工具
【8月更文挑战第31天】 在这篇文章中,我们将一起探索如何用Python构建一个个性化的天气查询工具。不同于传统的技术文章,我们将通过一个简单的故事引入主题,让读者感受到编程的乐趣和实用性。文章将介绍如何使用API获取数据,处理这些数据,并以用户友好的方式展示信息。无论你是编程新手还是想扩展你的项目库,这篇文章都会给你提供有价值的见解和代码示例。