Apply taper before filtering to reduce edge artifacts.
taper
import dascore as dc patch = ( dc.get_example_patch('example_event_1') .pass_filter(time=(None, 300)) ) patch.viz.waterfall(show=True);
import dascore as dc patch = ( dc.get_example_patch('example_event_1') .taper(time=0.05) .pass_filter(time=(None, 300)) ) patch.viz.waterfall(show=True);