forked from skulumani/2018_JGCD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
castalia_metrics.tikz
30 lines (28 loc) · 1.12 KB
/
castalia_metrics.tikz
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
\tikzsetnextfilename{castalia_metrics}
\begin{tikzpicture}[baseline]
\begin{groupplot}[
group style={
group name={castalia_metrics},
group size=1 by 2,
xlabels at=edge bottom,
ylabels at=edge left,
xticklabels at=edge bottom,
},
xlabel={Normalized Time},
scale only axis,
width=0.8\textwidth,
height=0.1\textheight,
ylabel style={align=center},
]
\nextgroupplot[ylabel={Normalized\\Uncertainty}]
\addplot [ultra thick, color=blue, mark=none] table [x=NORMALIZED_TIME, y=NORMALIZED_UNCERTAINTY, col sep=comma] {dynamic_exploration_castalia_uncertainty.csv};
\addplot [ultra thick,red, mark=none, dashed] coordinates {
(0.0, 0.0) (1.0, 0.0)
};
\nextgroupplot[ylabel={Volume Percent\\Error}]
\addplot [ultra thick, blue, mark=none] table [x=NORMALIZED_TIME, y=VOLUME_PERCENT_ERROR, col sep=comma] {dynamic_exploration_castalia_volume.csv};
\addplot [ultra thick,red, mark=none, dashed] coordinates {
(0.0, 0.0) (1.0, 0.0)
};
\end{groupplot}
\end{tikzpicture}