
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from functools import partial | |
from textwrap import fill | |
from scipy.stats import norm, uniform, skewnorm, gaussian_kde, triang | |
from numpy import ( | |
array, linspace, quantile, histogram, atleast_2d, mean, std, add | |
) | |
from numpy.lib.stride_tricks import sliding_window_view | |
from matplotlib.pyplot import subplots, show, rc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```python | |
from matplotlib.pyplot import figure, subplots, show, rc, rcdefaults | |
from numpy.random import default_rng | |
from numpy import linspace, atleast_2d | |
from pandas import DataFrame | |
from scipy.stats import gaussian_kde | |
from seaborn import stripplot, rugplot | |
rcdefaults() | |
rc('font', size=14) |


NewerOlder