\begin{center}
\begin{tabular}{|l|} \hline
\psset{llx=-1cm,lly=-1cm,urx=.5cm,ury=0.5cm}
\begin{psgraph}[axesstyle=frame,xticksize=0 4cm,yticksize=0 9cm,subticks=0,Dx=100,Dy=.02](0,0)(750,.12){9cm}{4cm}
\readdata{\dat}{mesdata.dat}
\listplot[plotstyle=curve,showpoints=true,dotstyle=triangle]{\dat}
\end{psgraph} \\ \hline
\textbf{\BS{}listplot}[plotstyle=curve,showpoints=true,dotstyle=triangle]\AC{\BS{}dat} \\ \hline
\TFRGB{liste des coordonnées séparées que par des espaces blancs}{separator of data : space only} !
\\ \hline
\end{tabular}
\end{center}
\bigskip
%=====================================================
\SbSSCT{\'Echelle des données}{Scale factor}
\BSS{pstScalePoints}(\TFRGB{facteur échelle X,facteur échelle Y}{X scale factor , Y scale factor})\AC{\TFRGB{code calcul postscript sur X}{PostScript code applied to the x values}}\AC{\TFRGB{code calcul postscript sur Y}{PostScript code applied to the Y values} }
\BSI{pstScalePoints}{pst-plot}
\bigskip
\begin{center}
\begin{tabular}{|l|} \hline
\readdata{\dat}{mesdata.dat}
\psset{llx=-.5cm,lly=-.5cm,urx=.5cm,ury=0.5cm}
\begin{psgraph}[axesstyle=frame,xticksize=0 4cm,yticksize=0 9cm,subticks=0,Dx=100,dy=1,Dy=2](0,0)(750,12){9cm}{4cm}
\pstScalePoints(1,100){}{}
\listplot[linecolor=red,linewidth=2pt]{\dat}
\end{psgraph} \\\hline
\BSS{pstScalePoints}({\red 1,100})\AC{}\AC{} \\ \hline
\multicolumn{1}{|c|}{\cyan \TFRGB{ne fonctionne qu'avec \BS{listplot} et \BS{pslistplot}{Only work with \BS{listplot} and \BS{pslistplot}! }}} \\ \hline
\end{tabular}
\end{center}
%----------------------------------------------------------------------------------------
\SbSSCT{Options de lecture de fichier}{Options reading the file of data}
\\ \hline
plotNoX=2 & \TFRGB{ la colonne B correspond à X}{ X values on column B} \\
plotNoMax=3 & \TFRGB{ soit 2 colonnes y + 1 colonne x}{ 1 columm with x values + 2 columms with y values} \\
plotNo=2 & \TFRGB{ la colonne C correspond à Y}{ Y values on column C} \\ \hline
\end{tabular}
\newpage
\subsection{Macro sur Excel}
\TFRGB{Voici un programme en Visual Basic permettant de créer son fichier de données d'après une feuille Excel}{Here is a Visual Basic program to create a data file from an Excel spreadsheet}
\bigskip
\psframebox{\parbox[c]{\linewidth}{
Sub mesdata() \\
deb = 8 \hspace{2cm} ' \TFRGB{première ligne de données}{first line of data} \\
fin = 382 \hspace{2cm} ' \TFRGB{dernière ligne de données}{last line of data} \\
colX = 5 \hspace{2cm} ' \TFRGB{colonne des valeurs de X}{column of the values X} \\
colY = 6 \hspace{2cm} ' \TFRGB{colonne des valeurs de Y}{column of the values Y} \\
nom = "mesdata.dat" \hspace{1cm} ' \TFRGB{nom du fichier}{name of the file} \\
Dim valX, valY As Double \\
'\TFRGB{pour effacer le fichier}{to erase the file} \\
Open nom For Output Access Write As \#1 \\
Close \#1 \\
'\TFRGB{création du fichier}{creation of the file} \\
For i = deb To fin \\
Open nom For Append As \#1 \\
valX = Cells(i, colX) \\
valY = Cells(i, colY) \\
Write \#1, valX \\
Write \#1, valY \\
Close \#1 \\
Next \\
End Sub}} \\
\TFRGB{A copier dans un module Excel et modifier les paramètres}{copy this code in a module Excel and modify the parameters} deb, fin , colX, colY et nom