如何更改pygal中的鳞片数量?
先决条件: pygal
Pygal是一个Python模块,主要用于构建 SVG(标量矢量图形)图形和图表。 Pygal 是Python的图形和用户界面库,提供设计和科学应用程序中通常需要的功能。在本文中,我们将看到如何更改 pygal 中的尺度数。图表上的刻度显示了数字或图片在数据中的使用方式。为图形轴选择的比例对受众如何解释消息具有重大影响,并且是优化数据可视化的重要部分。因此,比例尺在绘制图形中起着至关重要的作用。
方法
- 导入所需的模块。
- 创建图表对象。
- 通过最大/最小规模数。
- 标记图形。
- 显示图表。
句法:
- min_scale
- max_scale
You can specify the maximum/minimum number of scale graduation to generate with auto-scaling if possible.
示例 1:
Python3
# importing pygal
import pygal
import numpy
# creating the chart object
# minimum number of scale
chart = pygal.Line(min_scale=40)
# Random data
chart.add('line', [0, .02, .05, .0035])
# naming the title
chart.title = 'Line Chart'
chart.render_to_png('aa.png')
Python3
# importing pygal
import pygal
import numpy
# creating the chart object
# maximum number of scale
chart = pygal.Line(max_scale=3)
# Random data
chart.add('line', [0, .02, .05, .0035])
# naming the title
chart.title = 'Line Chart'
chart.render_to_png('aa.png')
输出
示例 2:
蟒蛇3
# importing pygal
import pygal
import numpy
# creating the chart object
# maximum number of scale
chart = pygal.Line(max_scale=3)
# Random data
chart.add('line', [0, .02, .05, .0035])
# naming the title
chart.title = 'Line Chart'
chart.render_to_png('aa.png')
输出