Pythonpychart画图几种常见的形式

更新时间:2023-06-21 21:38:38 阅读: 评论:0

Pythonpychart画图⼏种常见的形式
在讲述之前先看⼀个图的基本元素:
1 线状图:
代码:(⾮⾃⼰创作,解析来⾃⾃带例⼦)
from pychart import *
<_options()
data = [(10, 20, 30), (20, 65, 33), (1)
(30, 55, 30), (40, 45, 51),
(50, 25, 27), (60, 75, 30),
(70, 80, 42), (80, 62, 32),
(90, 42, 39), (100, 32, 39)]
xaxis = axis.X(format="/a-60/hL%d", tic_interval = 20, label="Stuff") (2)
yaxis = axis.Y(tic_interval = 20, label="Value") (3)
ar = area.T(x_axis=xaxis, y_axis=yaxis, y_range=(0,None)) (4)
plot = line_plot.T(label="foo", data=data, ycol=1, tick_mark=tick_mark.star) (5)
plot2 = line_plot.T(label="bar", data=data, ycol=2, tick_mark=tick_mark.square)
ar.add_plot(plot, plot2) (6)
ar.draw() (7)
1 对于(1),数据的第⼀个列表⽰横坐标,后⾯两列表⽰两条线对应的纵坐标;
2 (2)和(3)表⽰坐标,主要⽤来定义坐标的式样,间隔等,分别有x,y两类,xy对应的参数基本相同。处理draw_tics_above属于X⽽  draw_tics_right属于Y的属性。
label表⽰X或者Y轴的名称,label_offt表⽰显⽰的地⽅,默认为x轴的下⽅后者Y轴的左⽅,居中放置;tic_interval表⽰坐标轴的间隔,类型为数字或者函数,如果是函数的话返回值必须是能表⽰坐标
点如何话的list,tic_label_offt 表⽰坐标轴上点下的label表⽰的位置,默认为0,0,tic_len表⽰画轴上坐标的时候的长度,如果是正直,则位于坐标轴下⽅开始画,如果是上⽅,则需要⽤负值表⽰;
format表⽰坐标轴上数字或者标签的式样,具体的样式可以参见:
望岳翻译
border_line_style: 图形框架线的样式a/pychart/doc/module-line-style.html#module-line-style,你可以通过修改ar = area.T(x_axis=xaxis, y_axis=yaxis, y_range=(0,None),border_line_style=d)来看到具体的效果,(效果是在图形的区域出现红⾊框⼦)
legend:就是⽤来表⽰图形每⼀个线⽤什么表⽰类似的标⽰
loc:标⽰图形左下⾓的位置
x_axis:x轴
y_axis:Y轴
y_range:Y值得范围,如果未None的话根据给出的数据⾃动计算,⼀般使⽤MIN/MAX来计算。如(0,None)实际表⽰0和Max Y的值,为80
add_plot(    plot, ...):将绘图添加到区域
draw:画图
嘉兴好玩的地方x_grid_style:背景⽹格线的式样,读者可以使⽤进⾏验证
ar = area.T(x_axis=xaxis, y_axis=yaxis, y_range=
(0,None),border_line_style=d,x_grid_style=d_dash1,y_grid_style=d_dash2)
x_coord: Set the X coordinate system.我理解这个意思,不太知道该怎么翻译,如果有知道的可以告诉我
2 柱状图
1991年属
⽰例代码:
from pychart import *
get_options()
data = [(10, 20, 30, 5), (20, 65, 33, 5),
(30, 55, 30, 5), (40, 45, 51, 7), (50, 25, 27, 3)]
chart_object.t_defaults(, size = (150, 120), y_range = (0, None),
x_coord = (data, 0))
chart_object.t_defaults(, data = data)
# Draw the 1st graph. The Y upper bound is calculated automatically.
ar = (x_axis=X(label="X label", format="/a-30{}%d"),
y_axis=Y(label="Y label", tic_interval=10))
ar.add_plot((label="foo", cluster=(0, 3)),
(label="bar", hcol=2, cluster=(1, 3)),
(label="baz", hcol=3, cluster=(2, 3)))
ar.draw()
bar_plot:
cluster:柱状在图中的排列位置。⼀般表⽰⼀个元组,第⼀个数表⽰图的相对位置,0表⽰最左边,第⼆个数表⽰这个位置上总共的bar的个数
bcol: 表⽰从ba value的第⼀列抽取数据,基本上data,bcol,或者hcol决定bar
legend_fill_style、legend_line_style,line_style⽐较好理解
stack_on:值要么设置为none,要么为bar_plot,如果不为空,则⼀条位于另⼀条bar之上
3 饼状图:
from pychart import *
import sys
data = [("foo", 10),("bar", 20), ("baz", 30), ("ao", 40)]
ar = area.T(size=(150,150), legend=legend.T(),
x_grid_style = None, y_grid_style = None)
plot = pie_plot.T(data=data, arc_offts=[0,10,0,10],
shadow = (20, -2, ay50),
label_offt = 25,
arrow_style = arrow.a3)
ar.add_plot(plot)
ar.draw()
pie_plot主要是⽤来画饼图的类。
arrow_style: 箭头的类型.
更多的箭头类型可以参考:

本文发布于:2023-06-21 21:38:38,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/1048906.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:数据   位置   式样   图形   时候   对应   知道
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图