3 Created on Fri Jan 16 09:16:56 2015 8 import matplotlib
as mpl
9 import matplotlib.pyplot
as plt
10 import matplotlib.ticker
as ticker
13 DEFAULT_FONT_SIZE = 20
14 DEFAULT_AXIS_FONT_SIZE = DEFAULT_FONT_SIZE
15 DEFAULT_LINE_WIDTH = 4
16 DEFAULT_MARKER_SIZE = 6
17 DEFAULT_FONT_FAMILY =
"sans-serif" 18 DEFAULT_FONT_SIZE = DEFAULT_FONT_SIZE
19 DEFAULT_FONT_SERIF = [
22 "Bitstream Vera Serif",
24 "New Century Schoolbook",
25 "Century Schoolbook L",
34 DEFAULT_FIGURE_FACE_COLOR =
"white" 35 DEFAULT_LEGEND_FONT_SIZE = DEFAULT_FONT_SIZE
36 DEFAULT_AXES_LABEL_SIZE = DEFAULT_FONT_SIZE
37 DEFAULT_TEXT_USE_TEX =
False 40 FILE_EXTENSIONS = [
"png"]
48 BOUNDS_COLOR =
"silver" 68 f, ax = plt.subplots(nRows, nCols, figsize=figsize, sharex=sharex)
69 mngr = plt.get_current_fig_manager()
72 if spinesPos
is not None:
74 for axis
in ax.reshape(nRows * nCols):
82 ax.spines[
"right"].set_color(
"none")
83 ax.spines[
"top"].set_color(
"none")
84 ax.xaxis.set_ticks_position(
"bottom")
85 ax.spines[
"bottom"].set_position((
"data", spinesPos[0]))
86 ax.yaxis.set_ticks_position(
"left")
87 ax.spines[
"left"].set_position((
"data", spinesPos[1]))
91 for label
in ax.get_xticklabels() + ax.get_yticklabels():
92 label.set_fontsize(size)
93 label.set_bbox(dict(facecolor=
"white", edgecolor=
"None", alpha=0.65))
97 mpl.rcParams[
"lines.linewidth"] = DEFAULT_LINE_WIDTH
98 mpl.rcParams[
"lines.markersize"] = DEFAULT_MARKER_SIZE
99 mpl.rcParams[
"patch.linewidth"] = 1
100 mpl.rcParams[
"axes.grid"] =
True 101 mpl.rcParams[
"font.family"] = DEFAULT_FONT_FAMILY
102 mpl.rcParams[
"font.size"] = DEFAULT_FONT_SIZE
103 mpl.rcParams[
"font.serif"] = DEFAULT_FONT_SERIF
104 mpl.rcParams[
"text.usetex"] = DEFAULT_TEXT_USE_TEX
105 mpl.rcParams[
"axes.labelsize"] = DEFAULT_AXES_LABEL_SIZE
106 mpl.rcParams[
"legend.fontsize"] = DEFAULT_LEGEND_FONT_SIZE
107 mpl.rcParams[
"figure.facecolor"] = DEFAULT_FIGURE_FACE_COLOR
108 mpl.rcParams[
"figure.figsize"] = 23, 12
121 3, 1, quantity, title, ax, boundUp, boundLow, yscale, linestyle
138 t = quantity.shape[0]
139 n = quantity.shape[1]
140 if margins
is not None:
141 if isinstance(margins, list):
142 margins = [margins[0].reshape(t, 1, n), margins[1].reshape(t, 1, n)]
144 margins = margins.reshape(t, 1, n)
148 quantity.reshape(t, 1, n),
181 f, ax = plt.subplots(nRows, nCols, sharex=
True, sharey=sharey)
182 ax = ax.reshape(nRows, nCols)
185 x = list(range(quantity.shape[0]))
186 for j
in range(nCols):
187 for i
in range(nRows):
188 if k < quantity.shape[2]:
189 if subplot_titles
is not None:
190 ax[i, j].set_title(subplot_titles[k])
192 ax[i, j].set_title(str(k))
193 if ylabels
is not None:
194 ax[i, j].set_ylabel(ylabels[k])
196 ymin = np.min(quantity[:, :, k])
197 ymax = np.max(quantity[:, :, k])
198 if boundUp
is not None:
199 if len(boundUp.shape) == 1:
200 if boundUp[k] < 2 * ymax:
201 ymax = np.max([ymax, boundUp[k]])
203 [0, quantity.shape[0] - 1],
204 [boundUp[k], boundUp[k]],
210 len(boundUp.shape) == 2
212 if np.max(boundUp[:, k]) < 2 * ymax:
213 ymax = np.max(np.concatenate(([ymax], boundUp[:, k])))
221 if boundLow
is not None:
222 if len(boundLow.shape) == 1:
223 if boundLow[k] > 2 * ymin:
224 ymin = np.min([ymin, boundLow[k]])
226 [0, quantity.shape[0] - 1],
227 [boundLow[k], boundLow[k]],
233 if np.min(boundLow[:, k]) > 2 * ymin:
234 ymin = np.min(np.concatenate(([ymin], boundLow[:, k])))
242 lw = DEFAULT_LINE_WIDTH
243 for s
in range(quantity.shape[1]):
244 (p,) = ax[i, j].plot(
251 if margins
is not None:
252 if isinstance(margins, list):
259 np.concatenate(([ymax], quantity[:, s, k] + mp[:, s, k]))
262 np.concatenate(([ymin], quantity[:, s, k] - mn[:, s, k]))
264 ax[i, j].fill_between(
266 quantity[:, s, k] + mp[:, s, k],
267 quantity[:, s, k] - mn[:, s, k],
272 if solver_names
is not None:
273 p.set_label(solver_names[s])
274 lw = max(LINE_WIDTH_MIN, lw - LINE_WIDTH_RED)
275 ax[i, j].set_yscale(yscale)
276 ax[i, j].xaxis.set_ticks(np.arange(0, x[-1], x[-1] / 2))
277 ax[i, j].yaxis.set_ticks([ymin, ymax])
278 if ymax - ymin > 5.0:
279 ax[i, j].yaxis.set_major_formatter(
280 ticker.FormatStrFormatter(
"%0.0f")
282 elif ymax - ymin > 0.5:
283 ax[i, j].yaxis.set_major_formatter(
284 ticker.FormatStrFormatter(
"%0.1f")
287 ax[i, j].yaxis.set_major_formatter(
288 ticker.FormatStrFormatter(
"%0.2f")
292 [ymin - 0.1 * (ymax - ymin), ymax + 0.1 * (ymax - ymin)]
296 ax[i, j].yaxis.set_major_formatter(ticker.FormatStrFormatter(
"%0.0f"))
299 for ext
in FILE_EXTENSIONS:
301 FIGURE_PATH + title.replace(
" ",
"_") +
"." + ext,
307 ax[nRows // 2, 0].set_ylabel(title)
310 leg = ax[0, 0].legend(loc=
"best")
324 legend_location="best",
326 f, ax = plt.subplots()
327 lw = DEFAULT_LINE_WIDTH
329 x = list(range(quantity.shape[0]))
331 for i
in range(len(solver_names)):
332 ax.plot(x, quantity[:, i], line_styles[i], alpha=LINE_ALPHA, linewidth=lw)
333 lw = max(lw - LINE_WIDTH_RED, LINE_WIDTH_MIN)
334 ax.set_yscale(yscale)
335 ax.set_ylabel(ylabel)
336 ax.set_xlabel(xlabel)
337 ymin = np.min(quantity)
338 ymax = np.max(quantity)
339 ax.set_ylim([ymin - 0.1 * (ymax - ymin), ymax + 0.1 * (ymax - ymin)])
341 leg = ax.legend(solver_names, loc=legend_location)
342 leg.get_frame().set_alpha(LEGEND_ALPHA)
344 for ext
in FILE_EXTENSIONS:
346 FIGURE_PATH + title.replace(
" ",
"_") +
"." + ext,
356 quantity, quantityPerSolver, legend, solver_names, line_styles, yscale="linear"
360 if len(solver_names) == 4
or len(solver_names) == 3:
363 elif len(solver_names) == 5
or len(solver_names) == 6:
367 print(
"ERROR in plotQuantityVsQuantityPerSolver, number of solvers not managed")
369 f, ax = plt.subplots(r, c, sharex=
True, sharey=
True)
370 for i
in range(len(solver_names)):
371 ax[i / c, i % c].plot(
374 quantityPerSolver[:, i],
378 ax[i / c, i % c].set_ylabel(solver_names[i])
379 ax[i / c, i % c].set_yscale(yscale)
381 for ext
in FILE_EXTENSIONS:
384 + (legend[0] +
"_VS_" + legend[1]).replace(
" ",
"_")
392 leg = ax[0, 0].legend(legend, loc=
"best")
393 leg.get_frame().set_alpha(LEGEND_ALPHA)
397 """Return a grayscale version of the colormap""" 398 cmap = plt.cm.get_cmap(cmap)
399 colors = cmap(np.arange(cmap.N))
403 RGB_weight = [0.299, 0.587, 0.114]
404 luminance = np.sqrt(np.dot(colors[:, :3] ** 2, RGB_weight))
405 colors[:, :3] = luminance[:, np.newaxis]
407 return cmap.from_list(cmap.name +
"_grayscale", colors, cmap.N)
412 for ext
in FILE_EXTENSIONS:
414 FIGURE_PATH + title.replace(
" ",
"_") +
"." + ext,
def create_empty_figure(nRows=1, nCols=1, figsize=(7, 7), spinesPos=None, sharex=True)
def plotQuantityVsQuantityPerSolver(quantity, quantityPerSolver, legend, solver_names, line_styles, yscale="linear")
def plotNdQuantityPerSolver(nRows, nCols, quantity, title, solver_names, line_styles, ax=None, boundUp=None, boundLow=None, yscale="linear", subplot_titles=None, ylabels=None, sharey=False, margins=None, x=None)
def setAxisFontSize(ax, size)
def plot3dQuantity(quantity, title, ax=None, boundUp=None, boundLow=None, yscale="linear", linestyle="k")
def plotNdQuantity(nRows, nCols, quantity, title="", ax=None, boundUp=None, boundLow=None, yscale="linear", linestyle="k--", sharey=False, margins=None)
def plotQuantityPerSolver(quantity, title, solver_names, line_styles, yscale="linear", ylabel="", x=None, xlabel="", legend_location="best")
def movePlotSpines(ax, spinesPos)