aboutsummaryrefslogtreecommitdiff
path: root/tex/src/delete-me.tex
blob: fc1a1f93d1a38c3747bc4555f4573688cbe9e467 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
%% PGFPlots code to plot a random set of numbers as demo

\begin{tikzpicture}

  %% Settings of the plotted axis
  \begin{axis}[
      width=\linewidth,
      xlabel=$X$,
      ylabel=$X^2$,
    ]

    %% A particular plot.
    \addplot+[scatter, only marks]
    table {tex/pipeline/delete-me/data.txt};

  \end{axis}
\end{tikzpicture}