from stratmc.data import load_object, load_trace
from stratmc.plotting import noise_summary

full_trace = load_trace('examples/example_docs_trace')
example_sample_path = 'examples/example_sample_df'
sample_df = load_object(example_sample_path)
sections = np.unique(sample_df['section'].values)

noise_summary(full_trace)

plt.show()