You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
873 B

  1. \documentclass{article}
  2. \usepackage{pgfplots}
  3. \usepackage{filecontents}
  4. %\newcommand{\resultPath}{../mdp/consensus/results_3_3_2/}
  5. %\newcommand{\resultPath}{../mdp/scheduler/results05/}
  6. %\newcommand{\resultPath}{../mdp/zeroconf-tb/results4_10/}
  7. \newcommand{\resultPath}{../ma/stream/results1000/}
  8. \begin{document}
  9. \centering
  10. \begin{tikzpicture}[scale=1.75]
  11. \begin{axis}[enlargelimits=false, axis background/.style={fill=red!50}]
  12. \addplot[fill=white, very thin] table [col sep=comma] {\resultPath overapproximation.csv} -- cycle;
  13. \addplot[fill=green, very thin] table [col sep=comma] {\resultPath underapproximation.csv} -- cycle;
  14. %\addplot[mark=o, mark options={blue, scale=1.3, thick}, only marks] table [col sep=comma] {\resultPath paretopoints.csv};
  15. \addplot[mark=false] table [col sep=comma] {\resultPath boundaries.csv};
  16. \end{axis}
  17. \end{tikzpicture}
  18. \end{document}