Python Pyx图:如何拆分图键?

时间:2019-04-29 10:37:46

标签: python matplotlib plot pyx

请考虑以下PyX plot

enter image description here

如何安排图形键,以使并排的2个列表(每2个条目)而不是一个4个条目的顶点列表?

我的意思是,而不是键:

x = y ^ 4,

x = y ^ 2,

x = y,

y = x ^ 4,

具有密钥:

x = y ^ 4,x = y

x = y ^ 2,y = x ^ 4

代码如下:

from pyx import *
g = graph.graphxy(width=8,
              x=graph.axis.linear(min=0, max=2),
              y=graph.axis.linear(min=0, max=2),
              key=graph.key.key(pos="br", dist=0.1))
g.plot([graph.data.function("x(y)=y**4", title=r"$x = y^4$"),
    graph.data.function("x(y)=y**2", title=r"$x = y^2$"),
    graph.data.function("x(y)=y", title=r"$x = y$"),
    graph.data.function("y(x)=x**4", title=r"$y = x^4$")],
   [graph.style.line([color.gradient.Rainbow])])
g.writePDFfile("change")

1 个答案:

答案 0 :(得分:1)

colums有一个参数graph.key,恰好是一个,可以将其设置为两个或任何其他想要的参数。 http://pyx.sourceforge.net/manual/graph.html#module-graph.key