I have the following MWE in PSTricks:
\documentclass{article}
\usepackage{pstricks}
\usepackage{pst-plot}
\begin{document}
\psset{xunit=2cm,yunit=1.5cm}
\begin{pspicture}(80,-2)(120,2)
\savedata{\mydatasinexp}%
[{83., -1.45},{87., -1.49},{98., -1.6}, %lower row
{83., +1.45},{87., +1.49},{98., +1.6}] %upper row
\dataplot[plotstyle=dots,linecolor=blue,
dotsize=2.5pt]{\mydatasinexp}
\end{pspicture}
\end{document}
As the data points suggest, I have an upper and a lower curve. I would like to fill the area between these two curves. Is it possible to obtain this with PSTricks?