1 """Created on Fri Jan 16 09:16:56 2015
6 import matplotlib
as mpl
7 import matplotlib.pyplot
as plt
8 import matplotlib.ticker
as ticker
11 DEFAULT_FONT_SIZE = 20
12 DEFAULT_AXIS_FONT_SIZE = DEFAULT_FONT_SIZE
13 DEFAULT_LINE_WIDTH = 4
14 DEFAULT_MARKER_SIZE = 6
15 DEFAULT_FONT_FAMILY =
"sans-serif"
16 DEFAULT_FONT_SIZE = DEFAULT_FONT_SIZE
17 DEFAULT_FONT_SERIF = [
20 "Bitstream Vera Serif",
22 "New Century Schoolbook",
23 "Century Schoolbook L",
32 DEFAULT_FIGURE_FACE_COLOR =
"white"
33 DEFAULT_LEGEND_FONT_SIZE = DEFAULT_FONT_SIZE
34 DEFAULT_AXES_LABEL_SIZE = DEFAULT_FONT_SIZE
35 DEFAULT_TEXT_USE_TEX =
False
38 FILE_EXTENSIONS = [
"png"]
46 BOUNDS_COLOR =
"silver"
66 f, ax = plt.subplots(nRows, nCols, figsize=figsize, sharex=sharex)
67 _mngr = plt.get_current_fig_manager()
70 if spinesPos
is not None:
72 for axis
in ax.reshape(nRows * nCols):
80 ax.spines[
"right"].set_color(
"none")
81 ax.spines[
"top"].set_color(
"none")
82 ax.xaxis.set_ticks_position(
"bottom")
83 ax.spines[
"bottom"].set_position((
"data", spinesPos[0]))
84 ax.yaxis.set_ticks_position(
"left")
85 ax.spines[
"left"].set_position((
"data", spinesPos[1]))
89 for label
in ax.get_xticklabels() + ax.get_yticklabels():
90 label.set_fontsize(size)
91 label.set_bbox({
"facecolor":
"white",
"edgecolor":
"None",
"alpha": 0.65})
95 mpl.rcParams[
"lines.linewidth"] = DEFAULT_LINE_WIDTH
96 mpl.rcParams[
"lines.markersize"] = DEFAULT_MARKER_SIZE
97 mpl.rcParams[
"patch.linewidth"] = 1
98 mpl.rcParams[
"axes.grid"] =
True
99 mpl.rcParams[
"font.family"] = DEFAULT_FONT_FAMILY
100 mpl.rcParams[
"font.size"] = DEFAULT_FONT_SIZE
101 mpl.rcParams[
"font.serif"] = DEFAULT_FONT_SERIF
102 mpl.rcParams[
"text.usetex"] = DEFAULT_TEXT_USE_TEX
103 mpl.rcParams[
"axes.labelsize"] = DEFAULT_AXES_LABEL_SIZE
104 mpl.rcParams[
"legend.fontsize"] = DEFAULT_LEGEND_FONT_SIZE
105 mpl.rcParams[
"figure.facecolor"] = DEFAULT_FIGURE_FACE_COLOR
106 mpl.rcParams[
"figure.figsize"] = 23, 12
119 3, 1, quantity, title, ax, boundUp, boundLow, yscale, linestyle
136 t = quantity.shape[0]
137 n = quantity.shape[1]
138 if margins
is not None:
139 if isinstance(margins, list):
140 margins = [margins[0].reshape(t, 1, n), margins[1].reshape(t, 1, n)]
142 margins = margins.reshape(t, 1, n)
146 quantity.reshape(t, 1, n),
179 f, ax = plt.subplots(nRows, nCols, sharex=
True, sharey=sharey)
180 ax = ax.reshape(nRows, nCols)
183 x = list(range(quantity.shape[0]))
184 for j
in range(nCols):
185 for i
in range(nRows):
186 if k < quantity.shape[2]:
187 if subplot_titles
is not None:
188 ax[i, j].set_title(subplot_titles[k])
190 ax[i, j].set_title(str(k))
191 if ylabels
is not None:
192 ax[i, j].set_ylabel(ylabels[k])
194 ymin = np.min(quantity[:, :, k])
195 ymax = np.max(quantity[:, :, k])
196 if boundUp
is not None:
197 if len(boundUp.shape) == 1:
198 if boundUp[k] < 2 * ymax:
199 ymax = np.max([ymax, boundUp[k]])
201 [0, quantity.shape[0] - 1],
202 [boundUp[k], boundUp[k]],
208 len(boundUp.shape) == 2
210 if np.max(boundUp[:, k]) < 2 * ymax:
211 ymax = np.max(np.concatenate(([ymax], boundUp[:, k])))
219 if boundLow
is not None:
220 if len(boundLow.shape) == 1:
221 if boundLow[k] > 2 * ymin:
222 ymin = np.min([ymin, boundLow[k]])
224 [0, quantity.shape[0] - 1],
225 [boundLow[k], boundLow[k]],
231 if np.min(boundLow[:, k]) > 2 * ymin:
232 ymin = np.min(np.concatenate(([ymin], boundLow[:, k])))
240 lw = DEFAULT_LINE_WIDTH
241 for s
in range(quantity.shape[1]):
242 (p,) = ax[i, j].
plot(
249 if margins
is not None:
250 if isinstance(margins, list):
257 np.concatenate(([ymax], quantity[:, s, k] + mp[:, s, k]))
260 np.concatenate(([ymin], quantity[:, s, k] - mn[:, s, k]))
262 ax[i, j].fill_between(
264 quantity[:, s, k] + mp[:, s, k],
265 quantity[:, s, k] - mn[:, s, k],
270 if solver_names
is not None:
271 p.set_label(solver_names[s])
272 lw = max(LINE_WIDTH_MIN, lw - LINE_WIDTH_RED)
273 ax[i, j].set_yscale(yscale)
274 ax[i, j].xaxis.set_ticks(np.arange(0, x[-1], x[-1] / 2))
275 ax[i, j].yaxis.set_ticks([ymin, ymax])
276 if ymax - ymin > 5.0:
277 ax[i, j].yaxis.set_major_formatter(
278 ticker.FormatStrFormatter(
"%0.0f")
280 elif ymax - ymin > 0.5:
281 ax[i, j].yaxis.set_major_formatter(
282 ticker.FormatStrFormatter(
"%0.1f")
285 ax[i, j].yaxis.set_major_formatter(
286 ticker.FormatStrFormatter(
"%0.2f")
290 [ymin - 0.1 * (ymax - ymin), ymax + 0.1 * (ymax - ymin)]
294 ax[i, j].yaxis.set_major_formatter(ticker.FormatStrFormatter(
"%0.0f"))
297 for ext
in FILE_EXTENSIONS:
299 FIGURE_PATH + title.replace(
" ",
"_") +
"." + ext,
305 ax[nRows // 2, 0].set_ylabel(title)
308 _leg = ax[0, 0].legend(loc=
"best")
322 legend_location="best",
324 f, ax = plt.subplots()
325 lw = DEFAULT_LINE_WIDTH
327 x = list(range(quantity.shape[0]))
329 for i
in range(len(solver_names)):
330 ax.plot(x, quantity[:, i], line_styles[i], alpha=LINE_ALPHA, linewidth=lw)
331 lw = max(lw - LINE_WIDTH_RED, LINE_WIDTH_MIN)
332 ax.set_yscale(yscale)
333 ax.set_ylabel(ylabel)
334 ax.set_xlabel(xlabel)
335 ymin = np.min(quantity)
336 ymax = np.max(quantity)
337 ax.set_ylim([ymin - 0.1 * (ymax - ymin), ymax + 0.1 * (ymax - ymin)])
339 leg = ax.legend(solver_names, loc=legend_location)
340 leg.get_frame().set_alpha(LEGEND_ALPHA)
342 for ext
in FILE_EXTENSIONS:
344 FIGURE_PATH + title.replace(
" ",
"_") +
"." + ext,
354 quantity, quantityPerSolver, legend, solver_names, line_styles, yscale="linear"
358 if len(solver_names) == 4
or len(solver_names) == 3:
361 elif len(solver_names) == 5
or len(solver_names) == 6:
365 print(
"ERROR in plotQuantityVsQuantityPerSolver, number of solvers not managed")
367 f, ax = plt.subplots(r, c, sharex=
True, sharey=
True)
368 for i
in range(len(solver_names)):
369 ax[i / c, i % c].
plot(
372 quantityPerSolver[:, i],
376 ax[i / c, i % c].set_ylabel(solver_names[i])
377 ax[i / c, i % c].set_yscale(yscale)
379 for ext
in FILE_EXTENSIONS:
382 + (legend[0] +
"_VS_" + legend[1]).replace(
" ",
"_")
390 leg = ax[0, 0].legend(legend, loc=
"best")
391 leg.get_frame().set_alpha(LEGEND_ALPHA)
395 """Return a grayscale version of the colormap"""
396 cmap = plt.cm.get_cmap(cmap)
397 colors = cmap(np.arange(cmap.N))
401 RGB_weight = [0.299, 0.587, 0.114]
402 luminance = np.sqrt(np.dot(colors[:, :3] ** 2, RGB_weight))
403 colors[:, :3] = luminance[:, np.newaxis]
405 return cmap.from_list(cmap.name +
"_grayscale", colors, cmap.N)
410 for ext
in FILE_EXTENSIONS:
412 FIGURE_PATH + title.replace(
" ",
"_") +
"." + ext,