Copulas
refer to An intuitive, visual guide to copulas
%matplotlib inline
import seaborn as sns
from scipy import statsRandom Variable Transformation
# uniform sampling
x = stats.uniform(0, 1).rvs(10000)
sns.distplot(x, kde=False, norm_hist=True)





Adding correlation with Gaussian copulas




Last updated