def plot_histogram_matrix(data, name, fname=None): # local import to avoid dependency for non-debug use import matplotlib.pyplot as plt nhists = len(data[0]) nbins = 25 ylim = (0, 0.5) nrows = int(np.ceil(np.sqrt(nhists))) plt.figure(figsize=(nrows * 4, nrows * 4)) for...