ich würde gerne einen großen Datensatz als .txt-Datei in meinem TeX plotten lassen. Leider funktioniert das nicht, da die Datei wohl zu groß ist.
% arara: pdflatex: {shell: yes}
\documentclass[ 12pt,
a4paper,
]{scrreprt}
\usepackage[ngerman]{babel}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{ compat=1.12,
/pgf/number format/.cd,
use comma%,
}
\begin{document}
\begin{figure}
\centering
\begin{tikzpicture}
%
\begin{axis}[axis x line=bottom, axis y line=left,
xlabel= Zeit ,
xmin=0, xmax= 20000,
ylabel= einheit,
ymin=0, ymax=25,
xtick={0,1800,...,20400},
xticklabel={%
\pgfmathdivide{\tick}{60}%
\pgfmathprintnumber{\pgfmathresult}%
},
scaled ticks=false,
width=0.9\textwidth, height=5cm,
]
\addplot[mark=, color=blue, smooth] table{test.txt};
\end{axis}
%
\end{tikzpicture}
\caption[zeuch]{zeuch
\label{pic:abc}
\end{figure}
\end{document}
Weiß jemand wie ich es hin bekomme, die Daten geplottet zu bekommen?
Vielen Dank!
Grüße


