Skip to content

Commit ba43ab6

Browse files
Add ydata-profiling demo
1 parent 7441233 commit ba43ab6

File tree

2 files changed

+119110
-0
lines changed

2 files changed

+119110
-0
lines changed

dask-demo-day/README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# ⚙️ Installation
2+
3+
To use `ydata-profiling`, you can simply install the package from `pip`.
4+
5+
First, create a virtual/conda environment:
6+
7+
```
8+
conda create -n profiling-env python=3.10
9+
conda activate profiling-env
10+
```
11+
12+
And install `ydata-profiling`. In this case, we declare the extra `[notebook]` that adds support for rendering the report in Jupyter notebook widgets.
13+
14+
```
15+
pip install -U "ydata-profiling[notebook]"
16+
```
17+
18+
# ▶️ Quickstart
19+
Once installed, you just need to `import` the module. Then, using `ydata-profilig` is a simple two-step process:
20+
21+
1. Create a `ProfileReport`
22+
2. Use a `to_notebook_iframe()` function to render the report. You can also save the report to an **html** or **json** file.
23+
24+
# 🪐 Notebook
25+
Check the notebook to learn about the main functionalities provided in the package: https://github.com/Data-Centric-AI-Community/awesome-python-for-data-science/blob/main/dask-demo-day/ydata-profiling-dask-demo-day.ipynb
26+
27+

dask-demo-day/ydata-profiling-dask-demo-day.ipynb

+119,083
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)