Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage{pst-plot}
\begin{document}
\def\data{
0.0 0
0.1 0
0.2 0
0.3 0
0.4 0.01
0.5 0.02
0.6 0.02
0.7 0.03
0.8 0.03
0.9 0.03
1.0 0.02
1.1 0.03
1.2 0.02
1.3 0.01
1.4 0.01
1.5 0.01
1.6 0.01
1.7 0
1.8 -0.01
1.9 -0.01
2.0 -0.01
2.1 -0.01
2.2 -0.01
2.3 -0.01
2.4 -0.01
2.5 -0.01
2.6 -0.01
2.7 0
2.8 0.01
2.9 0.02
3.0 0.02
3.1 0.03
3.2 0.03
3.3 0.03}
\psset{unit=20mm}
\begin{pspicture}(10,10)
\listplot[plotstyle=dots,linecolor=red]{\data}
\psaxes[Dx=1,Dy=0.1]{->}(0,0)(0,-0.4)(3.4,0.4)
\end{pspicture}
\end{document}