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
fix cross-device link error
[PyX.git]
/
examples
/
graphstyles
/
errorbar.py
blob
7c685c1a0b5480ba7daed8c5ab66bdddfd2961de
1
from
pyx
import
*
2
3
g
=
graph
.
graphxy
(
width
=
8
)
4
g
.
plot
(
graph
.
data
.
file
(
"errorbar.dat"
,
x
=
1
,
y
=
2
,
dy
=
3
),
5
[
graph
.
style
.
symbol
(),
graph
.
style
.
errorbar
()])
6
g
.
writeEPSfile
(
"errorbar"
)
7
g
.
writePDFfile
(
"errorbar"
)
8
g
.
writeSVGfile
(
"errorbar"
)