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
Copy file name to clipboardExpand all lines: README.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
# ydata-profiling
2
2
3
+
> **`ydata-profiling` is now `data-profiling`.** This package has been renamed to `data-profiling`. Please follow the [Migration Guide](#migration-guide) as soon as possible — the old package will no longer receive updates or bug fixes.
@@ -33,6 +35,40 @@ The package outputs a simple and digested analysis of a dataset, including **tim
33
35
> **Looking for a scalable solution that can fully integrate with your database systems?**<br>
34
36
> Leverage YData Fabric Data Catalog to connect to different databases and storages (Oracle, snowflake, PostGreSQL, GCS, S3, etc.) and leverage an interactive and guided profiling experience in Fabric. Check out the [Community Version](http://ydata.ai/register?utm_source=ydata-profiling&utm_medium=documentation&utm_campaign=YData%20Fabric%20Community).
35
37
38
+
## Migration Guide
39
+
40
+
### 1. Uninstall the old package
41
+
42
+
```bash
43
+
pip uninstall ydata-profiling
44
+
```
45
+
46
+
### 2. Install the new package
47
+
48
+
```bash
49
+
pip install data-profiling
50
+
```
51
+
52
+
### 3. Update your imports
53
+
54
+
Find and replace all occurrences of the old import in your codebase:
55
+
56
+
```python
57
+
# Before
58
+
import ydata_profiling
59
+
from ydata_profiling import ProfileReport
60
+
61
+
# After
62
+
import data_profiling
63
+
from data_profiling import ProfileReport
64
+
```
65
+
66
+
You can use this one-liner to find all affected files:
Copy file name to clipboardExpand all lines: docs/advanced_settings/available_settings.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Available Settings
2
2
3
-
A set of options is available in order to customize the behaviour of ``ydata-profiling`` and the appearance of the generated report. The depth of customization allows the creation of behaviours highly targeted at the specific dataset being analysed. The available settings are listed below. To learn how to change them, check :doc:`changing_settings`.
3
+
A set of options is available in order to customize the behaviour of ``data-profiling`` and the appearance of the generated report. The depth of customization allows the creation of behaviours highly targeted at the specific dataset being analysed. The available settings are listed below. To learn how to change them, check :doc:`changing_settings`.
4
4
5
5
## General settings
6
6
@@ -45,8 +45,8 @@ Configure the schema type for a given dataset.
0 commit comments