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
remove none-existing reference
[PyX.git]
/
examples
/
graphs
/
axis.py
blob
f9e085bd0248f207611c6499557e620f0089315c
1
from
pyx
import
*
2
3
g
=
graph
.
graphxy
(
width
=
8
,
4
x
=
graph
.
axis
.
log
(
min
=
1e-1
,
max
=
1
e4
,
title
=
r
"$x$-axis"
),
5
y
=
graph
.
axis
.
lin
(
max
=
5
,
title
=
r
"$y$-axis"
))
6
g
.
plot
(
graph
.
data
.
function
(
"y(x)=tan(log(1/x))**2"
))
7
g
.
writeEPSfile
(
"axis"
)
8
g
.
writePDFfile
(
"axis"
)