summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.tex')
-rw-r--r--Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.tex144
1 files changed, 144 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.tex b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.tex
new file mode 100644
index 00000000000..15b4e0d7dfa
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/pgfplots/bugtracker/minimal_1.tex
@@ -0,0 +1,144 @@
+
+\documentclass[a4paper]{report}
+\usepackage{pgfplots}
+
+\pgfplotsset{compat=1.3}
+\begin{document}
+\begin{tikzpicture}
+ \begin{axis}[
+ xbar,
+ width=12cm,
+ height=3.5cm,
+ enlarge y limits=0.5,
+ xlabel={\#participants},
+ xmin=0,
+ symbolic y coords={no,yes},
+ ytick=data,
+ nodes near coords,
+ nodes near coords align={horizontal},
+ ]
+ \addplot coordinates {(3,no) (7,yes)};
+ \end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{axis}[
+ xbar,
+ width=12cm,
+ height=3.5cm,
+ enlarge y limits=0.5,
+ xlabel={\#participants},
+ symbolic y coords={no,yes},
+ ytick=data,
+ nodes near coords,
+ nodes near coords align={horizontal},
+ ]
+ \addplot coordinates {(1,no) (9,yes)};
+ \end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{axis}[
+ xbar,
+ width=12cm,
+ height=3.5cm,
+ enlarge y limits=0.5,
+ xlabel={\#participants},
+ xmin=0,
+ symbolic y coords={set A,set B},
+ ytick=data,
+ nodes near coords,
+ nodes near coords align={horizontal},
+ ]
+ \addplot coordinates {(6,set A) (4,set B)};
+ \end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{axis}[
+ ybar,
+ enlargelimits=0.15,
+ xlabel={\# of bananas},
+ ylabel={\#participants},
+ ytick={0,1,2,3},
+ ymin=0,
+ symbolic x coords={1,2,3,4,5,more},
+ nodes near coords,
+ ]
+ \addplot coordinates {(1,1) (2,1) (3,3) (4,2) (5,1) (more,2)};
+ \end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{axis}[
+ ybar stacked,
+ enlargelimits=0.15,
+ legend style={at={(0.5,-0.20)},
+ anchor=north,legend columns=-1},
+ ylabel={\#participants},
+ symbolic x coords={tool1, tool2, tool3, tool4, tool5, tool6, tool7},
+ xtick=data,
+ x tick label style={rotate=45,anchor=east},
+ ]
+ \addplot+[ybar] plot coordinates {(tool1,0) (tool2,2) (tool3,2) (tool4,3) (tool5,0) (tool6,2) (tool7,0)}; % never
+ \addplot+[ybar] plot coordinates {(tool1,0) (tool2,0) (tool3,0) (tool4,3) (tool5,1) (tool6,1) (tool7,0)}; % rarely
+ \addplot+[ybar] plot coordinates {(tool1,6) (tool2,6) (tool3,8) (tool4,2) (tool5,6) (tool6,5) (tool7,6)}; % sometimes
+ \addplot+[ybar] plot coordinates {(tool1,4) (tool2,2) (tool3,0) (tool4,2) (tool5,3) (tool6,2) (tool7,4)}; % often
+ \legend{never, rarely, sometimes, often}
+ \end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{axis}[
+ ybar,
+ enlargelimits=0.15,
+ legend style={at={(0.5,-0.15)},
+ anchor=north,legend columns=-1},
+ ylabel={\#participants},
+ symbolic x coords={tool8,tool9,tool10},
+ xtick=data,
+ nodes near coords,
+ nodes near coords align={vertical},
+ ]
+ \addplot coordinates {(tool8,7) (tool9,9) (tool10,4)};
+ \addplot coordinates {(tool8,4) (tool9,4) (tool10,4)};
+ \addplot coordinates {(tool8,1) (tool9,1) (tool10,1)};
+ \legend{used,understood,not understood}
+ \end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{axis}[
+ ybar,
+ enlargelimits=0.15,
+ legend style={at={(0.5,-0.2)},
+ anchor=north,legend columns=-1},
+ ylabel={\#participants},
+ symbolic x coords={excellent,good,neutral,not good,poor},
+ xtick=data,
+ nodes near coords,
+ nodes near coords align={vertical},
+ x tick label style={rotate=45,anchor=east},
+ ]
+ \addplot coordinates {(excellent,0) (good,8) (neutral,2) (not good,0) (poor,0)};
+ \end{axis}
+\end{tikzpicture}
+
+\begin{tikzpicture}
+ \begin{axis}[
+ ybar,
+ enlargelimits=0.15,
+ legend style={at={(0.5,-0.2)},
+ anchor=north,legend columns=-1},
+ ylabel={\#participants},
+ symbolic x coords={excellent,good,neutral,not good,poor},
+ xtick=data,
+ nodes near coords,
+ nodes near coords align={vertical},
+ x tick label style={rotate=45,anchor=east},
+ ]
+ \addplot coordinates { (excellent,0) (good,7) (neutral,3) (not good,0) (poor,0)};
+ \end{axis}
+\end{tikzpicture}
+\end{document}
+