Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. RequirePackage{filecontents}
  2. begin{filecontents}{data.dat}
  3. X P $Q_B$ $Q_C$ $Q_D$
  4. 1 A1 2 6 7
  5. 2 A2 3 65 87
  6. 3 A3 1 45 65
  7. 4 A4 4 54 45
  8. 5 A5 6 56 34
  9. 6 A6 8 34 23
  10. 7 A7 9 45 45
  11. 8 A8 13 23 56
  12. 9 A9 4.6 6 87
  13. 10 A10 4 56 89
  14. end{filecontents}
  15.  
  16. documentclass{article}
  17. usepackage{pgfplotstable}
  18. usepackage{pgfplots}
  19. pagestyle{empty}
  20. begin{document}
  21.  
  22. pgfplotstabletypeset[columns/P/.style={string type}]{data.dat}
  23.  
  24. vspace{1cm}
  25.  
  26. begin{tikzpicture}
  27. begin{axis}[
  28. xlabel=Q Series,
  29. ylabel=P Values,
  30. xticklabels from table={data.dat}{P},xtick=data]
  31. addplot[blue,thick,mark=square*] table [y=$Q_B$,x=X]{data.dat};
  32. addlegendentry{$Q_B$ series}
  33. addplot[red,thick,mark=square*] table [y=$Q_C$,x=X]{data.dat};
  34. addlegendentry{$Q_C$ series}
  35. addplot[black,dashed,thick,mark=square*] table [y=$Q_D$,x=X]{data.dat};
  36. addlegendentry{$Q_D$ series}
  37. end{axis}
  38. end{tikzpicture}
  39.  
  40. end{document}
  41.  
  42. X P $Q_B$ $Q_C$ $Q_D$
  43. 1 A1 1/2 1/6 1/7
  44. 2 A2 1/3 65 87
  45. 3 A3 1 1/45 65
  46. 4 A4 4 54 45
  47. 5 A5 6 56 34
  48. 6 A6 8 1/4^3 23
  49. 7 A7 9 45 45
  50. 8 A8 13 23 56
  51. 9 A9 1/4.6 6 87
  52. 10 A10 4 56 89
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement