copulas 0.10.1.dev0__py3-none-any.whl → 0.12.1.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of copulas might be problematic. Click here for more details.
- copulas/__init__.py +17 -258
- copulas/bivariate/__init__.py +3 -3
- copulas/bivariate/base.py +8 -9
- copulas/bivariate/clayton.py +3 -2
- copulas/bivariate/frank.py +2 -1
- copulas/datasets.py +3 -10
- copulas/errors.py +5 -0
- copulas/multivariate/__init__.py +1 -7
- copulas/multivariate/base.py +2 -1
- copulas/multivariate/gaussian.py +79 -48
- copulas/multivariate/tree.py +12 -14
- copulas/multivariate/vine.py +14 -9
- copulas/optimize/__init__.py +4 -3
- copulas/univariate/__init__.py +1 -1
- copulas/univariate/base.py +16 -5
- copulas/univariate/beta.py +1 -6
- copulas/univariate/gaussian.py +2 -8
- copulas/univariate/gaussian_kde.py +6 -7
- copulas/univariate/selection.py +1 -1
- copulas/univariate/student_t.py +1 -5
- copulas/univariate/truncated_gaussian.py +9 -17
- copulas/univariate/uniform.py +2 -8
- copulas/utils.py +248 -0
- copulas/visualization.py +15 -20
- {copulas-0.10.1.dev0.dist-info → copulas-0.12.1.dev0.dist-info}/METADATA +58 -66
- copulas-0.12.1.dev0.dist-info/RECORD +34 -0
- {copulas-0.10.1.dev0.dist-info → copulas-0.12.1.dev0.dist-info}/WHEEL +1 -1
- copulas-0.10.1.dev0.dist-info/RECORD +0 -32
- {copulas-0.10.1.dev0.dist-info → copulas-0.12.1.dev0.dist-info}/LICENSE +0 -0
- {copulas-0.10.1.dev0.dist-info → copulas-0.12.1.dev0.dist-info}/top_level.txt +0 -0
copulas/visualization.py
CHANGED
|
@@ -31,11 +31,7 @@ def _generate_1d_plot(data, title, labels, colors):
|
|
|
31
31
|
plotly.graph_objects._figure.Figure
|
|
32
32
|
"""
|
|
33
33
|
fig = ff.create_distplot(
|
|
34
|
-
hist_data=data,
|
|
35
|
-
group_labels=labels,
|
|
36
|
-
show_hist=False,
|
|
37
|
-
show_rug=False,
|
|
38
|
-
colors=colors
|
|
34
|
+
hist_data=data, group_labels=labels, show_hist=False, show_rug=False, colors=colors
|
|
39
35
|
)
|
|
40
36
|
|
|
41
37
|
for i, name in enumerate(labels):
|
|
@@ -52,7 +48,7 @@ def _generate_1d_plot(data, title, labels, colors):
|
|
|
52
48
|
font={'size': PlotConfig.FONT_SIZE},
|
|
53
49
|
showlegend=True if labels[0] else False,
|
|
54
50
|
xaxis_title='value',
|
|
55
|
-
yaxis_title='frequency'
|
|
51
|
+
yaxis_title='frequency',
|
|
56
52
|
)
|
|
57
53
|
|
|
58
54
|
return fig
|
|
@@ -80,10 +76,7 @@ def dist_1d(data, title=None, label=None):
|
|
|
80
76
|
title += f" for column '{data.name}'"
|
|
81
77
|
|
|
82
78
|
return _generate_1d_plot(
|
|
83
|
-
data=[data],
|
|
84
|
-
title=title,
|
|
85
|
-
labels=[label],
|
|
86
|
-
colors=[PlotConfig.DATACEBO_DARK]
|
|
79
|
+
data=[data], title=title, labels=[label], colors=[PlotConfig.DATACEBO_DARK]
|
|
87
80
|
)
|
|
88
81
|
|
|
89
82
|
|
|
@@ -112,7 +105,7 @@ def compare_1d(real, synth, title=None):
|
|
|
112
105
|
data=[real, synth],
|
|
113
106
|
title=title,
|
|
114
107
|
labels=['Real', 'Synthetic'],
|
|
115
|
-
colors=[PlotConfig.DATACEBO_DARK, PlotConfig.DATACEBO_GREEN]
|
|
108
|
+
colors=[PlotConfig.DATACEBO_DARK, PlotConfig.DATACEBO_GREEN],
|
|
116
109
|
)
|
|
117
110
|
|
|
118
111
|
|
|
@@ -148,7 +141,7 @@ def _generate_scatter_2d_plot(data, columns, color_discrete_map, title):
|
|
|
148
141
|
y=columns[1],
|
|
149
142
|
color='Data',
|
|
150
143
|
color_discrete_map=color_discrete_map,
|
|
151
|
-
symbol='Data'
|
|
144
|
+
symbol='Data',
|
|
152
145
|
)
|
|
153
146
|
|
|
154
147
|
fig.update_layout(
|
|
@@ -189,7 +182,7 @@ def scatter_2d(data, columns=None, title=None):
|
|
|
189
182
|
data=data,
|
|
190
183
|
columns=columns,
|
|
191
184
|
color_discrete_map={'Real': PlotConfig.DATACEBO_DARK},
|
|
192
|
-
title=title
|
|
185
|
+
title=title,
|
|
193
186
|
)
|
|
194
187
|
|
|
195
188
|
|
|
@@ -226,9 +219,9 @@ def compare_2d(real, synth, columns=None, title=None):
|
|
|
226
219
|
columns=columns,
|
|
227
220
|
color_discrete_map={
|
|
228
221
|
'Real': PlotConfig.DATACEBO_DARK,
|
|
229
|
-
'Synthetic': PlotConfig.DATACEBO_GREEN
|
|
222
|
+
'Synthetic': PlotConfig.DATACEBO_GREEN,
|
|
230
223
|
},
|
|
231
|
-
title=title
|
|
224
|
+
title=title,
|
|
232
225
|
)
|
|
233
226
|
|
|
234
227
|
|
|
@@ -302,14 +295,15 @@ def scatter_3d(data, columns=None, title=None):
|
|
|
302
295
|
if columns:
|
|
303
296
|
title += f" for columns '{columns[0]}', '{columns[1]}' and '{columns[2]}'"
|
|
304
297
|
elif isinstance(data, pd.DataFrame):
|
|
305
|
-
title +=
|
|
298
|
+
title += (
|
|
306
299
|
f" for columns '{data.columns[0]}', '{data.columns[1]}' and '{data.columns[2]}'"
|
|
300
|
+
)
|
|
307
301
|
|
|
308
302
|
return _generate_scatter_3d_plot(
|
|
309
303
|
data=data,
|
|
310
304
|
columns=columns,
|
|
311
305
|
color_discrete_map={'Real': PlotConfig.DATACEBO_DARK},
|
|
312
|
-
title=title
|
|
306
|
+
title=title,
|
|
313
307
|
)
|
|
314
308
|
|
|
315
309
|
|
|
@@ -336,15 +330,16 @@ def compare_3d(real, synth, columns=None, title=None):
|
|
|
336
330
|
if columns:
|
|
337
331
|
title += f" for columns '{columns[0]}', '{columns[1]}' and '{columns[2]}'"
|
|
338
332
|
elif isinstance(data, pd.DataFrame):
|
|
339
|
-
title +=
|
|
333
|
+
title += (
|
|
340
334
|
f" for columns '{data.columns[0]}', '{data.columns[1]}' and '{data.columns[2]}'"
|
|
335
|
+
)
|
|
341
336
|
|
|
342
337
|
return _generate_scatter_3d_plot(
|
|
343
338
|
data=data,
|
|
344
339
|
columns=columns,
|
|
345
340
|
color_discrete_map={
|
|
346
341
|
'Real': PlotConfig.DATACEBO_DARK,
|
|
347
|
-
'Synthetic': PlotConfig.DATACEBO_GREEN
|
|
342
|
+
'Synthetic': PlotConfig.DATACEBO_GREEN,
|
|
348
343
|
},
|
|
349
|
-
title=title
|
|
344
|
+
title=title,
|
|
350
345
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: copulas
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.12.1.dev0
|
|
4
4
|
Summary: Create tabular synthetic data using copulas-based modeling.
|
|
5
5
|
Author-email: "DataCebo, Inc." <info@sdv.dev>
|
|
6
6
|
License: BSL-1.1
|
|
@@ -19,74 +19,66 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.9
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
24
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
23
|
-
Requires-Python: <3.
|
|
25
|
+
Requires-Python: <3.14,>=3.8
|
|
24
26
|
Description-Content-Type: text/markdown
|
|
25
27
|
License-File: LICENSE
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist: numpy
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist: pandas
|
|
33
|
-
Requires-Dist: pandas
|
|
34
|
-
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist: m2r <0.3,>=0.2.0 ; extra == 'dev'
|
|
41
|
-
Requires-Dist: nbsphinx <0.7,>=0.5.0 ; extra == 'dev'
|
|
42
|
-
Requires-Dist: Sphinx <3,>=1.7.1 ; extra == 'dev'
|
|
43
|
-
Requires-Dist: sphinx-rtd-theme <0.5,>=0.2.4 ; extra == 'dev'
|
|
44
|
-
Requires-Dist: Jinja2 <3,>=2 ; extra == 'dev'
|
|
45
|
-
Requires-Dist: flake8 <4,>=3.7.7 ; extra == 'dev'
|
|
46
|
-
Requires-Dist: isort <5,>=4.3.4 ; extra == 'dev'
|
|
47
|
-
Requires-Dist: flake8-debugger <4.1,>=4.0.0 ; extra == 'dev'
|
|
48
|
-
Requires-Dist: flake8-mock <0.4,>=0.3 ; extra == 'dev'
|
|
49
|
-
Requires-Dist: flake8-mutable <1.3,>=1.2.0 ; extra == 'dev'
|
|
50
|
-
Requires-Dist: flake8-fixme <1.2,>=1.1.1 ; extra == 'dev'
|
|
51
|
-
Requires-Dist: pep8-naming <0.13,>=0.12.1 ; extra == 'dev'
|
|
52
|
-
Requires-Dist: dlint <0.12,>=0.11.0 ; extra == 'dev'
|
|
53
|
-
Requires-Dist: flake8-docstrings <2,>=1.5.0 ; extra == 'dev'
|
|
54
|
-
Requires-Dist: pydocstyle <6.2,>=6.1.1 ; extra == 'dev'
|
|
55
|
-
Requires-Dist: flake8-pytest-style <2,>=1.5.0 ; extra == 'dev'
|
|
56
|
-
Requires-Dist: flake8-comprehensions <3.7,>=3.6.1 ; extra == 'dev'
|
|
57
|
-
Requires-Dist: flake8-print <4.1,>=4.0.0 ; extra == 'dev'
|
|
58
|
-
Requires-Dist: flake8-expression-complexity <0.1,>=0.0.9 ; extra == 'dev'
|
|
59
|
-
Requires-Dist: flake8-multiline-containers <0.1,>=0.0.18 ; extra == 'dev'
|
|
60
|
-
Requires-Dist: pandas-vet <0.3,>=0.2.2 ; extra == 'dev'
|
|
61
|
-
Requires-Dist: flake8-builtins <1.6,>=1.5.3 ; extra == 'dev'
|
|
62
|
-
Requires-Dist: flake8-eradicate <1.2,>=1.1.0 ; extra == 'dev'
|
|
63
|
-
Requires-Dist: flake8-quotes <4,>=3.3.0 ; extra == 'dev'
|
|
64
|
-
Requires-Dist: flake8-variables-names <0.1,>=0.0.4 ; extra == 'dev'
|
|
65
|
-
Requires-Dist: flake8-sfs <0.1,>=0.0.3 ; extra == 'dev'
|
|
66
|
-
Requires-Dist: flake8-absolute-import <2,>=1.0 ; extra == 'dev'
|
|
67
|
-
Requires-Dist: autoflake <2,>=1.1 ; extra == 'dev'
|
|
68
|
-
Requires-Dist: autopep8 <1.6,>=1.4.3 ; extra == 'dev'
|
|
69
|
-
Requires-Dist: twine <4,>=1.10.0 ; extra == 'dev'
|
|
70
|
-
Requires-Dist: wheel >=0.30.0 ; extra == 'dev'
|
|
71
|
-
Requires-Dist: coverage <6,>=4.5.1 ; extra == 'dev'
|
|
72
|
-
Requires-Dist: tox <4,>=2.9.1 ; extra == 'dev'
|
|
73
|
-
Requires-Dist: invoke ; extra == 'dev'
|
|
74
|
-
Requires-Dist: doc8 <0.9,>=0.8.0 ; extra == 'dev'
|
|
75
|
-
Requires-Dist: urllib3 <1.26,>=1.20 ; extra == 'dev'
|
|
76
|
-
Requires-Dist: tabulate <0.9,>=0.8.3 ; extra == 'dev'
|
|
77
|
-
Requires-Dist: boto3 <1.10,>=1.7.47 ; extra == 'dev'
|
|
78
|
-
Requires-Dist: docutils <0.15,>=0.10 ; extra == 'dev'
|
|
79
|
-
Provides-Extra: test
|
|
80
|
-
Requires-Dist: copulas[tutorials] ; extra == 'test'
|
|
81
|
-
Requires-Dist: pytest <7,>=6.2.5 ; extra == 'test'
|
|
82
|
-
Requires-Dist: pytest-cov <3,>=2.6.0 ; extra == 'test'
|
|
83
|
-
Requires-Dist: pytest-rerunfailures <10,>=9.0.0 ; extra == 'test'
|
|
84
|
-
Requires-Dist: rundoc <0.5,>=0.4.3 ; extra == 'test'
|
|
85
|
-
Requires-Dist: tomli <3,>=2.0.0 ; extra == 'test'
|
|
28
|
+
Requires-Dist: numpy>=1.21.0; python_version < "3.10"
|
|
29
|
+
Requires-Dist: numpy>=1.23.3; python_version >= "3.10" and python_version < "3.12"
|
|
30
|
+
Requires-Dist: numpy>=1.26.0; python_version >= "3.12" and python_version < "3.13"
|
|
31
|
+
Requires-Dist: numpy>=2.1.0; python_version >= "3.13"
|
|
32
|
+
Requires-Dist: pandas>=1.4.0; python_version < "3.11"
|
|
33
|
+
Requires-Dist: pandas>=1.5.0; python_version >= "3.11" and python_version < "3.12"
|
|
34
|
+
Requires-Dist: pandas>=2.1.1; python_version >= "3.12" and python_version < "3.13"
|
|
35
|
+
Requires-Dist: pandas>=2.2.3; python_version >= "3.13"
|
|
36
|
+
Requires-Dist: plotly>=5.10.0; python_version < "3.13"
|
|
37
|
+
Requires-Dist: plotly>=5.12.0; python_version >= "3.13"
|
|
38
|
+
Requires-Dist: scipy>=1.7.3; python_version < "3.10"
|
|
39
|
+
Requires-Dist: scipy>=1.9.2; python_version >= "3.10" and python_version < "3.12"
|
|
40
|
+
Requires-Dist: scipy>=1.12.0; python_version >= "3.12" and python_version < "3.13"
|
|
41
|
+
Requires-Dist: scipy>=1.14.1; python_version >= "3.13"
|
|
86
42
|
Provides-Extra: tutorials
|
|
87
|
-
Requires-Dist: markupsafe
|
|
88
|
-
Requires-Dist: scikit-learn
|
|
89
|
-
Requires-Dist:
|
|
43
|
+
Requires-Dist: markupsafe<=2.0.1; extra == "tutorials"
|
|
44
|
+
Requires-Dist: scikit-learn>=0.24; python_version < "3.12" and extra == "tutorials"
|
|
45
|
+
Requires-Dist: scikit-learn>=1.3.1; python_version >= "3.12" and extra == "tutorials"
|
|
46
|
+
Requires-Dist: jupyter<2,>=1.0.0; extra == "tutorials"
|
|
47
|
+
Provides-Extra: test
|
|
48
|
+
Requires-Dist: copulas[tutorials]; extra == "test"
|
|
49
|
+
Requires-Dist: pytest<7,>=6.2.5; extra == "test"
|
|
50
|
+
Requires-Dist: pytest-cov<3,>=2.6.0; extra == "test"
|
|
51
|
+
Requires-Dist: pytest-rerunfailures<15,>=10.3; extra == "test"
|
|
52
|
+
Requires-Dist: rundoc<0.5,>=0.4.3; extra == "test"
|
|
53
|
+
Requires-Dist: tomli<3,>=2.0.0; extra == "test"
|
|
54
|
+
Provides-Extra: dev
|
|
55
|
+
Requires-Dist: copulas[test,tutorials]; extra == "dev"
|
|
56
|
+
Requires-Dist: pip>=9.0.1; extra == "dev"
|
|
57
|
+
Requires-Dist: build<2,>=1.0.0; extra == "dev"
|
|
58
|
+
Requires-Dist: bump-my-version<1,>=0.18.3; extra == "dev"
|
|
59
|
+
Requires-Dist: watchdog<5,>=1.0.1; extra == "dev"
|
|
60
|
+
Requires-Dist: m2r<0.3,>=0.2.0; extra == "dev"
|
|
61
|
+
Requires-Dist: nbsphinx<0.7,>=0.5.0; extra == "dev"
|
|
62
|
+
Requires-Dist: Sphinx<3,>=1.7.1; extra == "dev"
|
|
63
|
+
Requires-Dist: sphinx_rtd_theme<0.5,>=0.2.4; extra == "dev"
|
|
64
|
+
Requires-Dist: sphinxcontrib_applehelp<1.0.8; extra == "dev"
|
|
65
|
+
Requires-Dist: sphinxcontrib-devhelp<1.0.6; extra == "dev"
|
|
66
|
+
Requires-Dist: sphinxcontrib-htmlhelp<2.0.5; extra == "dev"
|
|
67
|
+
Requires-Dist: sphinxcontrib_serializinghtml<1.1.10; extra == "dev"
|
|
68
|
+
Requires-Dist: sphinxcontrib_qthelp<1.0.7; extra == "dev"
|
|
69
|
+
Requires-Dist: alabaster<0.7.13; extra == "dev"
|
|
70
|
+
Requires-Dist: Jinja2<3,>=2; python_version < "3.12" and extra == "dev"
|
|
71
|
+
Requires-Dist: Jinja2<4,>=2; python_version >= "3.12" and extra == "dev"
|
|
72
|
+
Requires-Dist: ruff<1,>=0.3.2; extra == "dev"
|
|
73
|
+
Requires-Dist: twine<4,>=1.10.0; extra == "dev"
|
|
74
|
+
Requires-Dist: wheel>=0.30.0; extra == "dev"
|
|
75
|
+
Requires-Dist: coverage<6,>=4.5.1; extra == "dev"
|
|
76
|
+
Requires-Dist: tox<4,>=2.9.1; extra == "dev"
|
|
77
|
+
Requires-Dist: invoke; extra == "dev"
|
|
78
|
+
Requires-Dist: urllib3<1.26,>=1.20; extra == "dev"
|
|
79
|
+
Requires-Dist: tabulate<0.9,>=0.8.3; extra == "dev"
|
|
80
|
+
Requires-Dist: boto3<1.10,>=1.7.47; extra == "dev"
|
|
81
|
+
Requires-Dist: docutils<0.15,>=0.10; extra == "dev"
|
|
90
82
|
|
|
91
83
|
<p style="text-align:center">
|
|
92
84
|
<i>This repository is part of <a href="https://sdv.dev">The Synthetic Data Vault Project</a>, a project from <a href="https://datacebo.com">DataCebo</a>.</i>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
copulas/__init__.py,sha256=_IIx4fyKLZ_R4MunmcSy6m1kGY2X_fg5IYORluQd7rc,2929
|
|
2
|
+
copulas/datasets.py,sha256=uyiiEV2E_vztiIEIFR71yzMYXu_ZAlnP04Mhcv-me_0,6769
|
|
3
|
+
copulas/errors.py,sha256=YDb1uhFOsht_9ynu4MYyZJgdUQWoI_WoWzG1JfGdvzU,93
|
|
4
|
+
copulas/utils.py,sha256=2wWVVx-FMOhjPDt58ZgfFHQzVdLsMo44IPh7ccaIALE,6789
|
|
5
|
+
copulas/visualization.py,sha256=PJIa9ZiT8Px8owsZKVxy0LiTszDY3ymMDkvcgYTBzBk,9688
|
|
6
|
+
copulas/bivariate/__init__.py,sha256=CPt6D4Tae_hlqQ_cbhzMKf6m_xEQJms5ctfqt4ouZkQ,5097
|
|
7
|
+
copulas/bivariate/base.py,sha256=BGWxu7cbFxQCbBNR0vbSWQVAALxSTehE_uPk9Zxe9ic,13937
|
|
8
|
+
copulas/bivariate/clayton.py,sha256=5Hr90vrEMl2FdCcvxqeiWAt23ZQT41GKVQ0iHpmCmvA,4553
|
|
9
|
+
copulas/bivariate/frank.py,sha256=eBcPSpeOwe5NWCli9RawLB98Xc_6t6AamqbQHDiz9dk,4648
|
|
10
|
+
copulas/bivariate/gumbel.py,sha256=OFKf0FM3w9EQuu2gCIBGZ_DYZIIc2pQl7XoCpgq5ToA,4216
|
|
11
|
+
copulas/bivariate/independence.py,sha256=S0mERdcveH9Hw_N8Dpn4_xR_pGT9B2FEn_Yvi6CLfIE,2069
|
|
12
|
+
copulas/bivariate/utils.py,sha256=iNTwVL-vlE6gWGDQUIdGO4bmhP3Bws9CyBCi8Y3ZezE,347
|
|
13
|
+
copulas/multivariate/__init__.py,sha256=KZT1L1PfdZnqR6942jDOyibg7tjmF_HDNaHRGOg0AGg,340
|
|
14
|
+
copulas/multivariate/base.py,sha256=GavPayD6gghpTzwV1NR8Fu97zY2fhtQaJyLMZHlfkcQ,5632
|
|
15
|
+
copulas/multivariate/gaussian.py,sha256=b__9UkgmzduGMJye0qmncGMx1jonNfsbn6wSgP2xh2c,12176
|
|
16
|
+
copulas/multivariate/tree.py,sha256=8MLRBeM9Xc_kirPHwJ_C8Vci2AxsvXjrHjFws3GdLYE,22005
|
|
17
|
+
copulas/multivariate/vine.py,sha256=DXEaKJ14mWkpUFAapV6cPjZs_7qQRyFfUqDZ5EX5rjs,12919
|
|
18
|
+
copulas/optimize/__init__.py,sha256=x3KLFTF3CoO3-7vCxAK8PRAkVKpVHhcoJW0oDwGkPvg,4941
|
|
19
|
+
copulas/univariate/__init__.py,sha256=5j1pTKG1hVEn9wmAumLnVghR7eKI_Wv5sceXTr-aOUY,826
|
|
20
|
+
copulas/univariate/base.py,sha256=Gz4dry15fI8yxB6tGLFkP8KSILizQCVeWDz2lS5_TYQ,20060
|
|
21
|
+
copulas/univariate/beta.py,sha256=l_aTwzDfmZmDwMdBZL6vye8SoOTGWNy9akNFN0DMhOU,958
|
|
22
|
+
copulas/univariate/gamma.py,sha256=az8-3sMbp1-K16SxtW6qJ4fRKxoXg0XSyKNxH_x86tM,906
|
|
23
|
+
copulas/univariate/gaussian.py,sha256=ZRxwg-YNr8QHDGA0locVBYLKEi0dyOzoMZthRh3P0SA,660
|
|
24
|
+
copulas/univariate/gaussian_kde.py,sha256=vF7RY9KmOrnGlBUWBu34iubsJ9iLNAnJRgZTcbo7aIs,6077
|
|
25
|
+
copulas/univariate/log_laplace.py,sha256=1njkNjVc3-p3ZP6lkOA3fhc6wmr_70BQtm7pQuCAzTk,921
|
|
26
|
+
copulas/univariate/selection.py,sha256=nETHnLB89lTf5CPSEX28Xu2cNySQU7yhW2gZRu4Otic,950
|
|
27
|
+
copulas/univariate/student_t.py,sha256=r4_sHdEX4C74byC5_i60e8f2DT-J8RqGyjzeCtZkwbM,777
|
|
28
|
+
copulas/univariate/truncated_gaussian.py,sha256=ugr3Lm-rzadRIwsi1FTYpziNoNiP7t2iBQNGbfrFrKs,1999
|
|
29
|
+
copulas/univariate/uniform.py,sha256=BkGaEZkitKpDAEkMscvLVLJ4U-j6gZuZqnZiBtCVr8Y,686
|
|
30
|
+
copulas-0.12.1.dev0.dist-info/LICENSE,sha256=cORU2kpIo9Qyy7Kv2ZpYDIIcksrjqlNEL9c9Ic1ayo0,4822
|
|
31
|
+
copulas-0.12.1.dev0.dist-info/METADATA,sha256=_3Rd7aYo9wHqOFihyBgq2U_eRtkOXpD3PLN7IeP2pgs,9441
|
|
32
|
+
copulas-0.12.1.dev0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
33
|
+
copulas-0.12.1.dev0.dist-info/top_level.txt,sha256=xNXWuWoZ-U3Gb734WqQxkF5RIeGDVU3IstjD-RnWsk8,8
|
|
34
|
+
copulas-0.12.1.dev0.dist-info/RECORD,,
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
copulas/__init__.py,sha256=idtg-SyIGt2i1Hxk9FExWxaP72HGeJ0fKothSTkCFDk,9286
|
|
2
|
-
copulas/datasets.py,sha256=KMNCJXcOOMp28xML-Q_wQHwrpflRnR9Kkcxre-ubG9A,6831
|
|
3
|
-
copulas/visualization.py,sha256=f4wIkJ_AKrvBtrDGoNP0lofO75KL2JrHKhtLOz-GPkA,9707
|
|
4
|
-
copulas/bivariate/__init__.py,sha256=dn4sz2B0Nqt6p4eJG6CpHYhtvLQcZekxlmj5Kd0zcvo,5087
|
|
5
|
-
copulas/bivariate/base.py,sha256=t1g_c_TgIMkF-gp2wsh6R5jaLb7IE-GpYYlvNFjiYQ4,13952
|
|
6
|
-
copulas/bivariate/clayton.py,sha256=Tj2DGsycC7pfoSGTtG_f_o33snvPqaSbVIlxrll-G_Q,4536
|
|
7
|
-
copulas/bivariate/frank.py,sha256=NpIs8WPzk-kMXBTgsAxb0EbLpsGoyg8TaaPDyvNjOo8,4641
|
|
8
|
-
copulas/bivariate/gumbel.py,sha256=OFKf0FM3w9EQuu2gCIBGZ_DYZIIc2pQl7XoCpgq5ToA,4216
|
|
9
|
-
copulas/bivariate/independence.py,sha256=S0mERdcveH9Hw_N8Dpn4_xR_pGT9B2FEn_Yvi6CLfIE,2069
|
|
10
|
-
copulas/bivariate/utils.py,sha256=iNTwVL-vlE6gWGDQUIdGO4bmhP3Bws9CyBCi8Y3ZezE,347
|
|
11
|
-
copulas/multivariate/__init__.py,sha256=djmUWPlYrI-ofvWOO1xfnEBTwhe9L67irreEbVyeKPA,362
|
|
12
|
-
copulas/multivariate/base.py,sha256=I_ECmhSvv15ug0oYW6zk_I-_kdnSttoy2w3YFzdH0sQ,5600
|
|
13
|
-
copulas/multivariate/gaussian.py,sha256=8CmE6Jvx0eop_Nlz9j50YnMdXKFSZowtA1kVD-w_z8s,11175
|
|
14
|
-
copulas/multivariate/tree.py,sha256=qNETjQcXaPOA43Cp41B128tXfP26RT4DjmO0WLUTNs0,22020
|
|
15
|
-
copulas/multivariate/vine.py,sha256=nOs4e3TItDOgrlJTLAAWexOwEhDf-eRlcuBEByuJ-R0,12882
|
|
16
|
-
copulas/optimize/__init__.py,sha256=rb6IlQUhkJm-PEvpiwRrMQR-J5lBXcHzKOh5qWXD2wk,4927
|
|
17
|
-
copulas/univariate/__init__.py,sha256=35vwec1sjlPyrBD3yui7rtb8YwmWPPFVol__GZqwtEM,825
|
|
18
|
-
copulas/univariate/base.py,sha256=_nKcbi9w_-ZkA_T9KH26kPMb0jCmau6krFa6WIEBTfQ,19976
|
|
19
|
-
copulas/univariate/beta.py,sha256=Lx9qvJvJdoEvujk8_29XDVgqFGYfE3LaHw9EYNYgwx4,1016
|
|
20
|
-
copulas/univariate/gamma.py,sha256=az8-3sMbp1-K16SxtW6qJ4fRKxoXg0XSyKNxH_x86tM,906
|
|
21
|
-
copulas/univariate/gaussian.py,sha256=zWCvYQGktdVeb5FL2Fiu0d4COYCCCFSCWh7zDXB4_T8,728
|
|
22
|
-
copulas/univariate/gaussian_kde.py,sha256=LtGBi5PKdOGG3ZdQy4x8c6gh3yuCpYlmBBzJD-ooHOk,6093
|
|
23
|
-
copulas/univariate/log_laplace.py,sha256=1njkNjVc3-p3ZP6lkOA3fhc6wmr_70BQtm7pQuCAzTk,921
|
|
24
|
-
copulas/univariate/selection.py,sha256=uC-l8osnbx50Gqx4-WLfKTLco0ncb41TDEbdt1hp_j8,944
|
|
25
|
-
copulas/univariate/student_t.py,sha256=2CqIECLk4-rtFUASn79lUk8EHvIyIqjgRo1h2xEDpEk,823
|
|
26
|
-
copulas/univariate/truncated_gaussian.py,sha256=UQaxmK3LAFDE7RutO1tcsdov8ZFGPZhoKeNphlyQw4w,2074
|
|
27
|
-
copulas/univariate/uniform.py,sha256=Jou_lxzDHc2BMNIJ7iLh5ffw1xJvBIiAAd2r3k_Mqes,754
|
|
28
|
-
copulas-0.10.1.dev0.dist-info/LICENSE,sha256=cORU2kpIo9Qyy7Kv2ZpYDIIcksrjqlNEL9c9Ic1ayo0,4822
|
|
29
|
-
copulas-0.10.1.dev0.dist-info/METADATA,sha256=7jQilckxBwh68Rafmj5xIsXD1fPU6CphOjoN1Zi8PoI,9798
|
|
30
|
-
copulas-0.10.1.dev0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
31
|
-
copulas-0.10.1.dev0.dist-info/top_level.txt,sha256=xNXWuWoZ-U3Gb734WqQxkF5RIeGDVU3IstjD-RnWsk8,8
|
|
32
|
-
copulas-0.10.1.dev0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|