There are some settings for seaborn that are set at module import time in a few modules. (e.g. analysis.analysis. Let's move into the functions that actually graph stuff, where they belong.
If the code was outside of a function because it was meant to apply to everything in the module, refactor accordingly (put it all in a helper function, and call that helper function explicitly in each of the analysis functions).
There are some settings for seaborn that are set at module import time in a few modules. (e.g.
analysis.analysis
. Let's move into the functions that actually graph stuff, where they belong.If the code was outside of a function because it was meant to apply to everything in the module, refactor accordingly (put it all in a helper function, and call that helper function explicitly in each of the analysis functions).