Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. date value
  2. 1986-03-01 0.11
  3. 1986-06-01 0.45
  4. ...
  5. 2016-03-01 0.78
  6.  
  7. usepackage{pgfplots}
  8. usepackage{amsthm, amsfonts, amsmath, amssymb, mathrsfs, enumerate,graphicx}
  9. usepackage{subcaption}
  10. usepgfplotslibrary{dateplot}
  11. usepackage{filecontents}
  12. pgfplotsset{height=5cm,width=8cm,compat=newest}
  13. usepgfplotslibrary{dateplot}
  14.  
  15. begin{figure}[H]
  16. begin{subfigure}{.5linewidth}centering
  17. begin{tikzpicture}
  18. begin{axis}[legend style={at={(0.5,-0.35)},anchor=north},
  19. date coordinates in=x,
  20. x tick label style={/pgf/number format/1000 sep=},
  21. xticklabel={year},
  22. ylabel=,
  23. xlabel=Time,
  24. enlargelimits=0.10,
  25. legend columns=1,
  26. ]
  27. addplot[no markers, color=black]
  28. table [x=date, y index=1] {msardhp.dat};
  29. legend{}
  30. end{axis}
  31. end{tikzpicture}
  32. end{subfigure}%
  33. caption{}
  34. end{figure}
  35.  
  36. documentclass{article}
  37. usepackage{pgfplots}
  38. usepgfplotslibrary{dateplot}
  39. pgfplotsset{height=5cm,width=8cm,compat=newest}
  40. begin{document}
  41. begin{tikzpicture}
  42. begin{axis}[legend style={at={(0.5,-0.35)},anchor=north},
  43. date coordinates in=x,
  44. xticklabel={year},
  45. date ZERO={1986-01-01},
  46. xtick={%
  47. 1986-01-01,
  48. 1992-01-01,
  49. 1998-01-01,
  50. 2004-01-01,
  51. 2010-01-01,
  52. 2016-01-01%
  53. },
  54. % ylabel=,
  55. xlabel=Time,
  56. enlargelimits=0.10,
  57. legend columns=1,
  58. ]
  59. addplot[no markers, color=black]
  60. table [x=date, y index=1] {
  61. date value
  62. 1986-03-01 0.11
  63. 1986-06-01 0.45
  64. 2016-03-01 0.78
  65. };
  66. legend{}
  67. end{axis}
  68. end{tikzpicture}
  69. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement