some updates to the webpage
[PyX.git] / examples / graphs / axis.py
blob14e260988b76a319fdd2fda012804f3f02c152ee
1 from pyx import *
3 g = graph.graphxy(width=8,
4 x=graph.axis.log(min=1e-1, max=1e4),
5 y=graph.axis.lin(max=5))
6 g.plot(graph.data.function("y(x)=tan(log(1/x))**2"))
7 g.writeEPSfile("axis")
8 g.writePDFfile("axis")