Currently when importing any of the entropy calculator, _core is imported, which runs matplotlib.use("Agg") automatically, suppressing plots to show as per intended by this package.
However, in experimental environments (like working with notebooks during testing for example), users may want other upstream scripts to output plots automatically: e.g. running df['feature'].plot() to visually inspect the trend. With matplotlib.use("Agg"), pandas' Series.plot() doesn't work naively.
Perhaps should restrict the matplotlib.use("Agg") option to within the utils.plot module itself if users want a clean CI pipeline/Docker integration.
Currently when importing any of the entropy calculator, _core is imported, which runs
matplotlib.use("Agg")automatically, suppressing plots to show as per intended by this package.However, in experimental environments (like working with notebooks during testing for example), users may want other upstream scripts to output plots automatically: e.g. running df['feature'].plot() to visually inspect the trend. With
matplotlib.use("Agg"), pandas' Series.plot() doesn't work naively.Perhaps should restrict the
matplotlib.use("Agg")option to within the utils.plot module itself if users want a clean CI pipeline/Docker integration.