repo.or.cz
/
PyX.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add UnicodeEngine (MultiEngineText and axis texters returning MultiEngineText), texte...
[PyX.git]
/
examples
/
graphs
/
minimal.py
blob
c2e15b20e0a26522b98732ac3e629b414388ce23
1
from
pyx
import
*
2
3
g
=
graph
.
graphxy
(
width
=
8
)
4
g
.
plot
(
graph
.
data
.
file
(
"minimal.dat"
,
x
=
1
,
y
=
2
))
5
g
.
writeEPSfile
(
"minimal"
)
6
g
.
writePDFfile
(
"minimal"
)
7
g
.
writeSVGfile
(
"minimal"
)