4. Flow Change Detection#
from molass.Global.Options import set_molass_options
set_molass_options(flowchange=True)
import numpy as np
import matplotlib.pyplot as plt
from molass.Local import get_local_settings
from molass.DataObjects import SecSaxsData as SSD
local_settings = get_local_settings()
ORIGINAL_DATA = local_settings['ORIGINAL_DATA']
ssd = SSD(ORIGINAL_DATA)
ssd.plot_3d();
tinfo = ssd.make_trimming()
ssd.plot_trimming(tinfo)
<molass.PlotUtils.PlotResult.PlotResult at 0x1e83cf9df70>

