Guest User

Untitled

a guest
Jan 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. documentclass[11pt]{scrartcl}
  2. usepackage[utf8]{inputenc}
  3. usepackage{pgf}
  4. usepackage{pgfplots}
  5. usepgfplotslibrary{statistics, external}
  6. usetikzlibrary{fit,calc}
  7. usepackage{mathtools}
  8. usepackage[ngerman]{babel}
  9.  
  10. newcommand*{boxplot}[6]{
  11. % As seen in several examples
  12. % #1: center, #2: median, #3: 1/4 quartile, #4: 3/4 quartile, #5: min, #6: max
  13. addplot+[
  14. line width=.2mm,
  15. black,
  16. boxplot prepared={
  17. lower whisker={#5},
  18. lower quartile={#3},
  19. median={#2},
  20. upper quartile={#4},
  21. upper whisker={#6},
  22. draw position = 10,
  23. box extend = 15,
  24. whisker extend = 17,
  25. }
  26. ]
  27. coordinates{};
  28. }
  29.  
  30. begin{document}
  31.  
  32. begin{table}
  33. centering
  34. begin{tabular}{p{7.5cm}|p{7.5cm}}
  35. hline
  36. Wie wichtig ist es dir, dass du mit deinen Kommilitonen gut auskommst? &
  37. begin{tikzpicture}
  38. begin{axis}[
  39. height=2cm, width=7cm,
  40. ybar, ymax=19, ymin=0, ytick={0,19}, yticklabels={0,19},
  41. xmin=0, xmax=6, xtick={1,...,5}, xticklabels={$text{gar nicht}$,2,3,4,$text{sehr}$}
  42. ] addplot coordinates {(1,0) (2,0) (3,1) (4,8) (5,10)};
  43. end{axis}
  44. end{tikzpicture}
  45. hspace*{0.3cm}
  46. begin{tikzpicture}
  47. begin{axis}[
  48. height=2cm, width=7cm,
  49. ymin=0, ymax=19, ytick={0,19}, yticklabels={,},
  50. xmin=0, xmax=6, xtick={1,...,5}, xticklabels={$text{gar nicht}$,2,3,4,$text{sehr}$},
  51. boxplot/every median/.style={draw=red},
  52. ] boxplot{4.4736842105}{5}{3.91966759}{5.027700831}{3}{5}
  53. end{axis}
  54. end{tikzpicture}\
  55. hline
  56. end{tabular}
  57. end{table}
  58.  
  59. end{document}
Add Comment
Please, Sign In to add comment