aboutsummaryrefslogtreecommitdiff
path: root/tex/src/figure-tools-per-year.tex
blob: e2354242626b366e226c97364e0b492a61fdfa29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
\begin{tikzpicture}[scale=0.9]
  \begin{axis}[
      ymin=0,
      ymax=100,
      width=\linewidth,
      height=0.3\linewidth,
      xlabel={Year},
      ylabel={Frac. papers with tools},
      axis y line*=left,
      enlarge x limits = false,
      yticklabel=\pgfmathprintnumber{\tick}\,\%,
      x tick label style={/pgf/number format/1000 sep=},
    ]

    %% Linear plot, showing the number of papers mentioning tools.
    \addplot+ [mark=none, very thick, green!60!black]
    table {tex/build/to-publish/tools-per-year.txt};
  \end{axis}

  %% Add the right-side Y axis.
  \begin{axis}[
      ymode=log,
      width=\linewidth,
      height=0.3\linewidth,
      axis x line=none,
      axis y line*=right,
      enlarge x limits = false,
      ylabel=Num. papers (log-scale),
      max space between ticks=20,
    ]
    \addplot+ [ybar, mark=none, fill=red!50!white, red, opacity=0.25]
    table [x index=0, y index=2] {tex/build/to-publish/tools-per-year.txt};
    \end{axis}
\end{tikzpicture}