from stratmc.data import load_trace
from stratmc.plotting import proxy_data_gaps

full_trace = load_trace('examples/example_docs_trace')

proxy_data_gaps(full_trace, time_grid = full_trace.X_new.X_new.values[::2])

plt.show()