赞
踩
第1关 Radar:雷达图(一)
- from PreTest import *
- from pyecharts import options as opts
- from pyecharts.render import make_snapshot
- from snapshot_phantomjs import snapshot
-
- from pyecharts.charts import Radar
-
-
- data1 = [[4300, 10000, 28000, 35000, 50000, 19000]]
- data2 = [[5000, 14000, 28000, 31000, 42000, 21000]]
-
- def radar_chart() -> Radar:
- # ********* Begin *********#
- radar = (
- Radar()
- .add_schema(
- schema=[
- opts.RadarIndicatorItem(name="销售", max_=6500),
- opts.RadarIndicatorItem(name="管理", max_=16000),
- opts.RadarIndicatorItem(name="信息技术", max_=30000),
- opts.RadarIndicatorItem(name="客服", max_=38000),
- opts.RadarIndicatorItem(name="研发", max_=52000),
- opts.RadarIndicatorItem(name="市场", max_=25000),
- ],
- )
- .add(series_name="预算分配",data=data1)
- .add(series_name="实际开销",data=data2)
- .set_series_opts(label_opts=opts.LabelOpts(is_show=False))
- .set_global_opts(
- title_opts=opts.TitleOpts(title="Radar-单例模式"),
- legend_opts=opts.LegendOpts(selected_mode="single"),
- )
- )
- # ********** End **********#
- return radar
-
- make_snapshot(snapshot, radar_chart().render("Result/render.html"), 'StudentAnswer/student_answer.png') # 输出图片
- make_snapshot(snapshot, radar_base(data1, data2).render(), "StandardAnswer/task1/standard_answer_1.png")
第2关 Radar:雷达图(二)
- from PreTest import *
- from pyecharts import options as opts
- from pyecharts.render import make_snapshot
- from snapshot_phantomjs import snapshot
-
- from pyecharts.charts import Radar
-
- data_bj = [
- [55, 9, 56, 0.46, 18, 6, 1],
- [25, 11, 21, 0.65, 34, 9, 2],
- [56, 7, 63, 0.3, 14, 5, 3],
- [33, 7, 29, 0.33, 16, 6, 4],
- [42, 24, 44, 0.76, 40, 16, 5],
- [82, 58, 90, 1.77, 68, 33, 6],
- [74, 49, 77, 1.46, 48, 27, 7],
- [78, 55, 80, 1.29, 59, 29, 8],
- [267, 216, 280, 4.8, 108, 64, 9],
- [185, 127, 216, 2.52, 61, 27, 10],
- [39, 19, 38, 0.57, 31, 15, 11],
- [41, 11, 40, 0.43, 21, 7, 12],
- ]
- data_sh = [
- [91, 45, 125, 0.82, 34, 23, 1],
- [65, 27, 78, 0.86, 45, 29, 2],
- [83, 60, 84, 1.09, 73, 27, 3],
- [109, 81, 121, 1.28, 68, 51, 4],
- [106, 77, 114, 1.07, 55, 51, 5],
- [109, 81, 121, 1.28, 68, 51, 6],
- [106, 77, 114, 1.07, 55, 51, 7],
- [89, 65, 78, 0.86, 51, 26, 8],
- [53, 33, 47, 0.64, 50, 17, 9],
- [80, 55, 80, 1.01, 75, 24, 10],
- [117, 81, 124, 1.03, 45, 24, 11],
- [99, 71, 142, 1.1, 62, 42, 12],
- ]
- radar_schema = [
- {"name": "AQI", "max": 300, "min": 5},
- {"name": "PM2.5", "max": 250, "min": 20},
- {"name": "PM10", "max": 300, "min": 5},
- {"name": "CO", "max": 5},
- {"name": "NO2", "max": 200},
- {"name": "SO2", "max": 100},
- ]
-
- def radar_chart() -> Radar:
- # ********* Begin *********#
- radar = (
- Radar()
- .add_schema(schema=radar_schema, shape="circle")
- .add("北京",data_bj,color='#f9713c')
- .add("上海",data_sh,color='#b3e4a1')
- .set_series_opts(label_opts=opts.LabelOpts(is_show=False))
- .set_global_opts(title_opts=opts.TitleOpts(title="Radar-空气质量"))
-
- )
- # ********** End **********#
- return radar
-
- make_snapshot(snapshot, radar_chart().render("Result/render.html"), "StudentAnswer/student_answer.png") # 输出图片
- make_snapshot(snapshot, radar_air_quality(data_bj, data_sh, radar_schema).render(), "StandardAnswer/task2/standard_answer_2.png")
第3关 Radar:雷达图(三)
- from PreTest import *
- from pyecharts import options as opts
- from pyecharts.render import make_snapshot
- from snapshot_phantomjs import snapshot
-
- from pyecharts.charts import Radar
-
-
-
- # ********* Begin *********#
- data = [{"value": [4, -4, 2, 3, 0, 1], "name": "预算分配"}]
-
- radar_schema = [
- {"name": "销售", "max": 4, "min": -4},
- {"name": "管理", "max": 4, "min": -4},
- {"name": "技术", "max": 4, "min": -4},
- {"name": "客服", "max": 4, "min": -4},
- {"name": "研发", "max": 4, "min": -4},
- {"name": "市场", "max": 4, "min": -4},
- ]
- # ********** End **********#
-
-
- def radar_chart() -> Radar:
- # ********* Begin *********#
- radar = (
- Radar()
- .set_colors(['#4587E7'])
- .add_schema(
- schema=radar_schema,
- shape='circle',
- center=['50%','50%'],
- radius='80%',
- angleaxis_opts=opts.AngleAxisOpts(
- min_=0,
- max_=360,
- is_clockwise=False,
- interval=5,
- axistick_opts=opts.AxisTickOpts(is_show=False),
- axislabel_opts=opts.LabelOpts(is_show=False),
- axisline_opts=opts.AxisLineOpts(is_show=False),
- splitline_opts=opts.SplitLineOpts(is_show=False),
- ),
- radiusaxis_opts=opts.RadiusAxisOpts(
- min_=-4,
- max_=4,
- interval=2,
- splitarea_opts=opts.SplitAreaOpts(
- is_show=True,
- areastyle_opts=opts.AreaStyleOpts(opacity=1)
- ),
- ),
- polar_opts=opts.PolarOpts(),
- splitarea_opt=opts.SplitAreaOpts(is_show=False),
- splitline_opt=opts.SplitLineOpts(is_show=False),
- )
- .add(
- series_name="预算",
- data=data,
- areastyle_opts=opts.AreaStyleOpts(opacity=0.1),
- linestyle_opts=opts.LineStyleOpts(width=1),
- )
- )
- # ********** End **********#
- return radar
-
- make_snapshot(snapshot, radar_chart().render("Result/render.html"), 'StudentAnswer/student_answer.png') # 输出图片
- make_snapshot(snapshot, radar_angle_radius_axis(data, radar_schema).render(), "StandardAnswer/task3/standard_answer_3.png")
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。