Skip to content

Commit e38f693

Browse files
committed
rename pandas and examples
1 parent b09352d commit e38f693

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

examples/meteorites/meteorites.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"import pandas as pd\n",
7272
"import requests\n",
7373
"\n",
74-
"import ydata_profiling\n",
74+
"import data_profiling\n",
7575
"from data_profiling.utils.cache import cache_file"
7676
]
7777
},

examples/meteorites/meteorites_cloud.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"import numpy as np\n",
4141
"import pandas as pd\n",
4242
"\n",
43-
"import ydata_profiling\n",
43+
"import data_profiling\n",
4444
"from data_profiling.utils.cache import cache_file"
4545
]
4646
},

src/pandas_profiling/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
from data_profiling.version import __version__
1212

1313
# backend
14-
import ydata_profiling.model.pandas # isort:skip # noqa
14+
import data_profiling.model.pandas # isort:skip # noqa
1515

1616
spec = importlib.util.find_spec("pyspark")
1717
if spec is not None:
18-
import ydata_profiling.model.spark # isort:skip # noqa
18+
import data_profiling.model.spark # isort:skip # noqa
1919

2020
warn(
21-
"`import pandas_profiling` is going to be deprecated by April 1st. Please use `import ydata_profiling` instead.",
21+
"`import pandas_profiling` is going to be deprecated by April 1st. Please use `import data_profiling` instead.",
2222
DeprecationWarning,
2323
stacklevel=2,
2424
)

0 commit comments

Comments
 (0)