Add function to visualize Mutual Information values
Open
new feature
- Dominant language
- Python
- Stars
- 155
- Forks
- 24
- PR merge metrics
- No merged PRs in 30d
Description
- As a user, I wish I could use Woodwork to plot my mutual information values.
- This would be interactive plot, where I could see the values in a matrix, with higher values being darker.
- We should use `plotly` and make it a optional dependency
#### Code Example
```python
import pandas as pd
import woodwork as ww
df = pd.read_csv("https://api.featurelabs.com/datasets/online-retail-logs-2018-08-28.csv")
df.ww.init(name="retail", make_index=True, index="order_product_id")
df.ww.graph_mutual_information()
```
Contributor guide
Assessment
This issue has not been assessed yet.