in perfrunbook/utilities/measure_and_plot_basic_sysstat_stats.py [0:0]
def plot_matplotlib(data, title, xlabel, yrange):
import seaborn as sb
import matplotlib
sb.set(style="whitegrid")
matplotlib.rc('xtick', labelsize=12)
matplotlib.rc('ytick', labelsize=12)
matplotlib.rc('axes', titlesize=16)
matplotlib.rc('axes', labelsize=12)
matplotlib.rc('figure', titlesize=18)
matplotlib.rc('legend', fontsize=14)
data.plot(figsize=(24,8), xlabel=xlabel, ylim=(yrange[0], yrange[1]), title=title)