Advertisement
Guest User

Great a Graph

a guest
Mar 28th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.26 KB | None | 0 0
  1. \documentclass{article}
  2. \usepackage{pgfplots}
  3. \pgfplotsset{compat=newest}
  4.  
  5. \begin{document}
  6.    \begin{tikzpicture}
  7.    \begin{axis}[width=4in, height=2.25in,
  8.      axis on top=false,
  9.      scaled y ticks=false,
  10.      ybar,
  11.      ymin=0,
  12.      ymax=70,
  13.      ytick={0,10,...,70},
  14.      restrict y to domain=0:70,
  15.      ymajorgrids,
  16.      minor y tick num=4,
  17.      yticklabel={${\pgfmathprintnumber{\tick}\%}$},
  18.      yticklabel style={/pgf/number format/.cd,fixed,fixed zerofill,precision=0,/tikz/.cd},
  19.      xlabel={Frequency},
  20.      symbolic x coords={Never, Sometimes, Often, Always},
  21.      xtick=data,
  22.      legend style={
  23.        cells={anchor=east},
  24.        at={(0.5,-0.5)},
  25.        anchor=north,
  26.        legend columns=-1
  27.      },
  28.       cycle list={%
  29.           {black,fill=red!60!black},%
  30.           {black,fill=blue!60!red}%
  31.       },
  32.       axis background/.style={fill=gray!20}
  33.      ]
  34.  
  35.      \addplot coordinates {
  36.        (Never, 0)
  37.        (Sometimes, 23)
  38.        (Often, 14)
  39.        (Always, 62)
  40.      };
  41.      \addlegendentry{Agile}
  42.  
  43.      \addplot coordinates {
  44.        (Never, 12)
  45.        (Sometimes, 23)
  46.        (Often, 62)
  47.      };
  48.      \addlegendentry{Plan Based}
  49.    \end{axis}
  50.    \end{tikzpicture}
  51.  
  52. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement