You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Computes pairwise associations across all columns in a pandas DataFrame `df`. Internally, for each pair, it selects a measure appropriate to the variable types:
@@ -77,7 +117,7 @@ Below is a non-exhaustive overview of core modules and features. For full API an
This utility helps visualize classification performance. For a given true-label array y_true and predicted scores y_pred, it can plot ROC curves, compute AUC for each class (in multiclass settings), and show threshold recommendations.
@@ -126,7 +166,25 @@ Dependencies include standard scientific Python packages such as
126
166
`matplotlib` [@matplotlib],
127
167
and`seaborn` [@seaborn].
128
168
129
-
# Example workflow
169
+
# Usage Mention
170
+
171
+
Throughout its lifetime, `dython` has been used in many projects, including:
172
+
173
+
* [Official implementation](`https://github.com/yandex-research/tab-ddpm`) of TabDDPM [@tabddpm] by [Yandex Research](https://research.yandex.com)
174
+
175
+
* [`gretel-synthetics`](https://github.com/gretelai/gretel-synthetics/tree/a0e712852f74c238ce848456952e90a141e8da2a) by [Gretal.ai](https://gretel.ai)
176
+
177
+
* [`torchmetrics`](https://github.com/Lightning-AI/torchmetrics?tab=readme-ov-file) by [Lightning AI](https://lightning.ai)
178
+
179
+
* [`ydata-quiality`](https://github.com/ydataai/ydata-quality) by [YData](https://ydata.ai)
180
+
181
+
182
+
# Acknowledgements
183
+
184
+
The author thanks users and contributors who have filed issues, submitted pull requests, or suggested enhancements, as well as the authors and
185
+
communities of the foundational packages on which `dython` builds.
186
+
187
+
# Appendix: Code Examples
130
188
**A minimal example using `associations`**:
131
189
132
190
```python
@@ -196,22 +254,4 @@ This would output:
196
254

197
255
198
256
199
-
# Usage Mention
200
-
201
-
Throughout its lifetime, `dython` has been used in many projects, including:
202
-
203
-
* [Official implementation](`https://github.com/yandex-research/tab-ddpm`) of TabDDPM [@tabddpm] by [Yandex Research](https://research.yandex.com)
204
-
205
-
* [`gretel-synthetics`](https://github.com/gretelai/gretel-synthetics/tree/a0e712852f74c238ce848456952e90a141e8da2a) by [Gretal.ai](https://gretel.ai)
206
-
207
-
* [`torchmetrics`](https://github.com/Lightning-AI/torchmetrics?tab=readme-ov-file) by [Lightning AI](https://lightning.ai)
208
-
209
-
* [`ydata-quiality`](https://github.com/ydataai/ydata-quality) by [YData](https://ydata.ai)
210
-
211
-
212
-
# Acknowledgements
213
-
214
-
The author thanks users and contributors who have filed issues, submitted pull requests, or suggested enhancements, as well as the authors and
215
-
communities of the foundational packages on which `dython` builds.
0 commit comments