blob: 69d4d0d7172062de9a6b93664b592ace34c2a7a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Original Python:
# suggested by Chris Spencer
# from pyx import *
#
# g = graph.graphxy(width=8)
# # either provide lists of the individual coordinates
# g.plot(graph.data.values(x=list(range(10)), y=list(range(10))))
# # or provide one list containing the whole points
# g.plot(graph.data.points(list(zip(range(10), range(10))), x=1, y=2))
# g.writeEPSfile("points")
# g.writePDFfile("points")
# g.writeSVGfile("points")
using PyX
g = graph.graphxy(width=8)
plot(g, graph_data.values(x=0:9, y=0:9))
# XXX: x, y syntax in Python3 version only
# XXX: also other errors
#plot(g, graph_data.points([[i i] for i in 0:9], 0:9), x=1, y=2)
writeEPSfile(g, "points")
writePDFfile(g, "points")
|