How do I plot with pst-plot when the x- and y- data are stored in different files?
\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage{pst-plot}
\usepackage{auto-pst-pdf}
\begin{document}
\begin{postscript}
\readdata{\xData}{x.dat}
\readdata{\yData}{y.dat}
\begin{psgraph}[axesstyle=frame](0,0)(25,7.5){10cm}{6cm}
\listplot{**What to do here?**}
\end{psgraph}
\end{postscript}
\end{document}

pst-plotmanual. The command\psreadColumnDatadescribed on p. 5 probably should read\psreadDataColumn. +1 for the nice answer. – Feb 14 '18 at 01:52