This is the code I use for plotting the diagram:
Code: Select all
\begin{figure}[h]
\psset{xunit=00.145cm,yunit=00.0071cm}
\begin{pspicture}(-8,-240)(69,970)
\psaxes[axesstyle=axes, ticksize=-4pt 0pt, labelFontSize=\displaystyle, labels=x,labels=y, Dx=11,dx=11,Dy=200,dy=200, Oy=0]{->}(0,0)(69,970)
\readdata{\dat}{file1.csv}
\dataplot[plotstyle=line,linewidth=0.5pt]{\dat}
\end{pspicture}
\end{figure}
Obviously, if I change the Oy=0 to , lets say, Oy=1000, it only changes the labeling range. however displayed diagram is the same as before, meaning that it is not magnified .
As an example suppose that data in file1 ranges from 1200 to 1500. Clearly when y ranges from 1000 to 1500 the plotted data should be scaled and looked different to what is plotted when y ranges from 0 to 1500. If I change Oy, diagram does not change and only labeling would change.