Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. documentclass[letterpaper]{article}
  2. usepackage{tikz}
  3. usepackage{amsmath}
  4. usetikzlibrary{arrows}
  5. begin{document}
  6.  
  7. usetikzlibrary{arrows}
  8. begin{tikzpicture}[x=1.25]
  9.  
  10. begin{scope}[shift={(-50,0)}]
  11.  
  12. draw[latex-latex] (0,0) -- (60,0);
  13.  
  14.  
  15. foreach x in {10, 13, 15, 25, 50} {
  16.  
  17. draw[
  18. shift={(x,0)},
  19. ] (0pt,3pt) -- (0pt,-3pt);
  20. draw[
  21. shift={(x,0)},
  22. ]
  23. (0pt,0pt) -- (0pt,-3pt)
  24. node[
  25. below,
  26. anchor=west,
  27. rotate=-45,
  28. font=scriptsize
  29. ] {$x$};
  30. }
  31.  
  32. draw[
  33. *-,
  34. very thick,
  35. shift={(0,0.1)}
  36. ] (25, 0) -- (0, 25)
  37. node[
  38. above,
  39. anchor=west,
  40. font=scriptsize
  41. ] {Sample mean $bar{x}$};
  42.  
  43. end{scope}
  44. end{tikzpicture}
  45. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement