aboutsummaryrefslogtreecommitdiff
path: root/tex/src/figure-tools-per-year.tex
diff options
context:
space:
mode:
Diffstat (limited to 'tex/src/figure-tools-per-year.tex')
-rw-r--r--tex/src/figure-tools-per-year.tex34
1 files changed, 34 insertions, 0 deletions
diff --git a/tex/src/figure-tools-per-year.tex b/tex/src/figure-tools-per-year.tex
new file mode 100644
index 0000000..e235424
--- /dev/null
+++ b/tex/src/figure-tools-per-year.tex
@@ -0,0 +1,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}