Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. begin{tikzpicture}
  2. begin{axis}[width=3cm,
  3. height=6cm,
  4. footnotesize,
  5. xmin=1,
  6. xmax=15,
  7. xlabel={X},
  8. xmajorgrids,
  9. ymin=0.2,
  10. ymax=1.2,
  11. ylabel={Y},
  12. ymajorgrids,
  13. axis background/.style={fill=white},
  14. legend style={legend cell align=left,at={(axis cs:0.,0.2)},anchor=south}
  15. ]
  16. addplot [color=mycolor1c,dashed,mark size=5pt,mark=x,mark options={solid}]
  17. table[row sep=crcr, y expr=thisrow{Y}*.5]{%
  18. X Y\
  19. 1 1.98396947369363\
  20. 2 1.86736194644617\
  21. 3 1.39672685380491\
  22. 4 1.81801351792524\
  23. 5 1.65800541448776\
  24. 6 1.72124859501669\
  25. 7 1.95053632111296\
  26. 8 1.5953158074501\
  27. 9 2.20484922246232\
  28. 10 2.06660239159798\
  29. 11 1.15700938093597\
  30. 12 1.70354273363983\
  31. 13 1.97071496027903\
  32. 14 1.5377824362414\
  33. 15 1.34852389652374\
  34. };
  35. addlegendentry{1};
  36.  
  37. addplot [color=mycolor3c,solid,mark size=3.0pt,mark=o,mark options={solid}]
  38. table[row sep=crcr, y expr=thisrow{Y}*.5]{%
  39. X Y\
  40. 1 1.98396947369363\
  41. 2 1.87985797050402\
  42. 3 1.81018984587384\
  43. 4 1.45668153706335\
  44. 5 1.45662344223124\
  45. 6 1.42321790298663\
  46. 7 1.58846550051792\
  47. 8 1.7261014576169\
  48. 9 1.84497235618249\
  49. 10 1.83868784206141\
  50. 11 1.91262415124094\
  51. 12 1.87950764557444\
  52. 13 1.16064983693758\
  53. 14 1.28630813303169\
  54. 15 0.729867599135851\
  55. };
  56. addlegendentry{2};
  57.  
  58. addplot [color=mycolor2c,solid,mark size=3.0pt,mark=*,mark options={solid}]
  59. table[row sep=crcr, y expr=thisrow{Y}*.5]{%
  60. X Y\
  61. 1 1.98396947369363\
  62. 2 1.58099605261815\
  63. 3 1.25697492063651\
  64. 4 1.46582314712387\
  65. 5 1.3939586089965\
  66. 6 1.32595119844705\
  67. 7 1.41440624648194\
  68. 8 1.53386555109464\
  69. 9 1.7654715541107\
  70. 10 1.54694708739791\
  71. 11 1.53904078916298\
  72. 12 1.66515096650716\
  73. 13 1.09210648149942\
  74. 14 1.2047294527546\
  75. 15 0.647646671362433\
  76. };
  77. addlegendentry{3};
  78. end{axis}
  79. end{tikzpicture}%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement