Skip to content

Commit 2d00729

Browse files
authored
feat: rename to data-profiling (#1838)
1 parent 3309dd7 commit 2d00729

File tree

395 files changed

+1189
-1211
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

395 files changed

+1189
-1211
lines changed

.github/ISSUE_TEMPLATE/bug_report_form.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ body:
4141
description: A minimal standalone code sample that reproduces the bug
4242
placeholder: |
4343
import pandas as pd
44-
from ydata_profiling import ProfileReport
44+
from data_profiling import ProfileReport
4545
4646
df = pd.read_parquet(r"<file>")
4747
report = ProfileReport(df, title="bug report")

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repos:
1616
hooks:
1717
- id: nbqa-black
1818
- id: nbqa-isort
19-
args: [ --profile=black, --project=ydata_profiling ]
19+
args: [ --profile=black, --project=data_profiling ]
2020
- id: nbqa-pyupgrade
2121
args: [ --py36-plus ]
2222
- repo: https://github.com/asottile/pyupgrade
@@ -29,12 +29,12 @@ repos:
2929
hooks:
3030
- id: isort
3131
files: '.*'
32-
args: [ --profile=black, --project=ydata_profiling ]
32+
args: [ --profile=black, --project=data_profiling ]
3333
- repo: https://github.com/mgedmin/check-manifest
3434
rev: "0.47"
3535
hooks:
3636
- id: check-manifest
37-
args: [ "--ignore=src/ydata_profiling/version.py" ]
37+
args: [ "--ignore=src/data_profiling/version.py" ]
3838
stages: [manual]
3939
- repo: https://github.com/PyCQA/flake8
4040
rev: "4.0.1"
@@ -60,8 +60,8 @@ repos:
6060
(?x)(
6161
^tests/|
6262
^docsrc/|
63-
^src/ydata_profiling/utils/common.py|
64-
^src/ydata_profiling/utils/imghdr_patch.py
63+
^src/data_profiling/utils/common.py|
64+
^src/data_profiling/utils/imghdr_patch.py
6565
)
6666
- repo: https://github.com/asottile/blacken-docs
6767
rev: v1.12.1

CONTRIBUTING.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## How to contribute to YData-Profiling
1+
## How to contribute to Data-Profiling
22

3-
YData-profiling aims to ease exploratory data analysis for structured datasets, including time-series.
3+
Data-profiling aims to ease exploratory data analysis for structured datasets, including time-series.
44
Our focus is to provide users with useful and robust statistics for such datasets encountered in industry, academia and elsewhere.
5-
YData-profiling is open-source and stimulates contributions from passionate community users.
5+
Data-profiling is open-source and stimulates contributions from passionate community users.
66

77

88
#### Themes to contribute
@@ -17,23 +17,23 @@ In line with our aim, we identify the following themes:
1717
time series analysis,
1818
or even images (e.g. dimensions, EXIF).
1919

20-
_Related_: [#7][i7], [#129][i129], [#190][i190], [#204][i204] or [create one](https://github.com/ydataai/ydata-profiling/issues/new/choose).
20+
_Related_: [#7][i7], [#129][i129], [#190][i190], [#204][i204] or [create one](https://github.com/Data-Centric-AI-Community/data-profiling/issues/new/choose).
2121

2222
- **Stability, Performance and Restricted environment compatibility:**
2323
Data exploration takes place in all kinds of conditions, on the latest machine learning platforms with enormous dataset to managed environments in large corporations.
24-
`ydata-profiling` helps analysts, researchers and engineers alike in these cases.
24+
`data-profiling` helps analysts, researchers and engineers alike in these cases.
2525
We do this by fixing bugs, improving performance on big datasets and adding environment compatibility.
2626

2727
_Suggestions for contribution (Performance)_:
28-
Perform concurrency analysis or profile execution times and leverage the gained insights for improved performance (e.g. multiprocessing, cython, numba) or test the performance of `ydata-profiling` with [big data sets](https://www.stats.govt.nz/large-datasets/csv-files-for-download/) and corresponding commonly used data formats (such as parquet).
28+
Perform concurrency analysis or profile execution times and leverage the gained insights for improved performance (e.g. multiprocessing, cython, numba) or test the performance of `data-profiling` with [big data sets](https://www.stats.govt.nz/large-datasets/csv-files-for-download/) and corresponding commonly used data formats (such as parquet).
2929

3030
_Suggestions for contribution (Stability)_:
31-
Either review the code and add tests or watch the [issues page](https://github.com/ydataai/ydata-profiling/issues) and [Stackoverflow tag](https://stackoverflow.com/questions/tagged/ydata-profiling) to find current issues.
31+
Either review the code and add tests or watch the [issues page](https://github.com/Data-Centric-AI-Community/data-profiling/issues) and [Stackoverflow tag](https://stackoverflow.com/questions/tagged/ydata-profiling) to find current issues.
3232

33-
_Related_: [#98][i98], [#122][i122] or [create one](https://github.com/ydataai/ydata-profiling/issues/new/choose).
33+
_Related_: [#98][i98], [#122][i122] or [create one](https://github.com/Data-Centric-AI-Community/data-profiling/issues/new/choose).
3434

3535
- **Interaction, presentation and user experience**:
36-
As `ydata-profiling` eases exploratory data analysis, working with the package should reflect that.
36+
As `data-profiling` eases exploratory data analysis, working with the package should reflect that.
3737
Interaction and user experience plays a central role in working with the package.
3838
Working on interactive and static features is possible through the modular nature of the package: the user can configure which features to use.
3939

@@ -46,30 +46,30 @@ In line with our aim, we identify the following themes:
4646
Other forms of distribution than HTML (for example PDF or packaged as an GUI application via [PyQt](https://riverbankcomputing.com/software/pyqt/intro))
4747
Users should be able to share reports (improve size of labels in graph, add explanations to correlation matrices and allow for styling/branding).
4848

49-
_Related_: [#161][i161], [#175][i175], [#191][i191] or [create one](https://github.com/ydataai/ydata-profiling/issues/new/choose).
49+
_Related_: [#161][i161], [#175][i175], [#191][i191] or [create one](https://github.com/Data-Centric-AI-Community/data-profiling/issues/new/choose).
5050

5151
- **Community**:
5252
The success of this package demonstrates the power of sharing and working together.
5353
You are welcome as part of this community.
5454

5555
_Suggestions for contribution_:
5656
Share with us if this package is of value to you, let us know [in our community](https://discord.com/invite/mw7xjJ7b7s).
57-
We are interested in how you use `ydata-profiling` in your work.
57+
We are interested in how you use `data-profiling` in your work.
5858

59-
_Related_: [#87][i87] or [create one](https://github.com/ydataai/ydata-profiling/issues/new/choose).
59+
_Related_: [#87][i87] or [create one](https://github.com/Data-Centric-AI-Community/data-profiling/issues/new/choose).
6060

6161
- **Machine learning:**
62-
`ydata-profiling` is not a machine learning package, even though many of our users use EDA as a step prior to developing their models.
62+
`data-profiling` is not a machine learning package, even though many of our users use EDA as a step prior to developing their models.
6363
Our focus lies in the exploratory data analysis.
6464
Any functionality that enables machine learning applications by more effective data profiling, is welcome.
6565

66-
_Related_: [#124][i124], [#173][i173], [#198][i198] or [create one](https://github.com/ydataai/ydata-profiling/issues/new/choose).
66+
_Related_: [#124][i124], [#173][i173], [#198][i198] or [create one](https://github.com/Data-Centric-AI-Community/data-profiling/issues/new/choose).
6767

6868
#### **Did you find a bug?**
6969

70-
* **Ensure the bug was not already reported** by searching on Github under [Issues](https://github.com/ydataai/ydata-profiling/issues).
70+
* **Ensure the bug was not already reported** by searching on Github under [Issues](https://github.com/Data-Centric-AI-Community/data-profiling/issues).
7171

72-
* If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/ydataai/ydata-profiling/issues/new/choose).
72+
* If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/Data-Centric-AI-Community/data-profiling/issues/new/choose).
7373
If possible, use the relevant bug report templates to create the issue.
7474

7575
#### **Did you write a patch that fixes a bug?**
@@ -84,19 +84,19 @@ Include the relevant issue number if applicable.
8484

8585
We would like to thank everyone who has helped getting us to where we are now.
8686

87-
See the [Contributor Graph](https://github.com/ydataai/ydata-profiling/graphs/contributors)
88-
89-
[i7]: https://github.com/ydataai/ydata-profiling/issues/7
90-
[i129]: https://github.com/ydataai/ydata-profiling/issues/129
91-
[i190]: https://github.com/ydataai/ydata-profiling/issues/190
92-
[i204]: https://github.com/ydataai/ydata-profiling/issues/204
93-
[i98]: https://github.com/ydataai/ydata-profiling/issues/98
94-
[i122]: https://github.com/ydataai/ydata-profiling/issues/122
95-
[i124]: https://github.com/ydataai/ydata-profiling/issues/24
96-
[i173]: https://github.com/ydataai/ydata-profiling/issues/173
97-
[i198]: https://github.com/ydataai/ydata-profiling/issues/198
98-
[i87]: https://github.com/ydataai/ydata-profiling/issues/87
99-
[i161]: https://github.com/ydataai/ydata-profiling/issues/161
100-
[i175]: https://github.com/ydataai/ydata-profiling/issues/175
101-
[i191]: https://github.com/ydataai/ydata-profiling/issues/191
87+
See the [Contributor Graph](https://github.com/Data-Centric-AI-Community/data-profiling/graphs/contributors)
88+
89+
[i7]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/7
90+
[i129]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/129
91+
[i190]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/190
92+
[i204]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/204
93+
[i98]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/98
94+
[i122]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/122
95+
[i124]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/24
96+
[i173]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/173
97+
[i198]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/198
98+
[i87]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/87
99+
[i161]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/161
100+
[i175]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/175
101+
[i191]: https://github.com/Data-Centric-AI-Community/data-profiling/issues/191
102102

MANIFEST.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ include LICENSE
66
include *.md
77

88
# Templates and static resources
9-
recursive-include src/ydata_profiling/report/presentation/flavours/html/templates *.html *.js *.css
9+
recursive-include src/data_profiling/report/presentation/flavours/html/templates *.html *.js *.css
1010

1111
# Configuration
12-
include src/ydata_profiling/*.yaml
12+
include src/data_profiling/*.yaml
1313

1414
# Spark Dev venv
1515
recursive-include venv *.yml

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ test:
77
pytest tests/unit/
88
pytest tests/issues/
99
pytest --nbval tests/notebooks/
10-
ydata_profiling -h
10+
data_profiling -h
1111

1212
test_spark:
1313
pytest tests/backends/spark_backend/
14-
ydata_profiling -h
14+
data_profiling -h
1515

1616
test_cov:
1717
pytest --cov=. tests/unit/
1818
pytest --cov=. --cov-append tests/issues/
1919
pytest --cov=. --cov-append --nbval tests/notebooks/
20-
ydata_profiling -h
20+
data_profiling -h
2121

2222
examples:
2323
find ./examples -maxdepth 2 -type f -name "*.py" -execdir python {} \;

0 commit comments

Comments
 (0)