We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6feac8 commit 7a6ebd0Copy full SHA for 7a6ebd0
1 file changed
content/python_files/feature_engineering.py
@@ -7,9 +7,13 @@
7
# %pip install -q https://pypi.anaconda.org/ogrisel/simple/polars/1.24.0/polars-1.24.0-cp39-abi3-emscripten_3_1_58_wasm32.whl
8
# %pip install -q holidays https://pypi.anaconda.org/ogrisel/simple/skrub/0.6.dev0/skrub-0.6.dev0-py3-none-any.whl
9
# %%
10
-import polars as pl
+# The following 3 imports are only needed to workaround some limitations
11
+# when using polars in a pyodide/jupyterlite notebook.
12
+import tzdata
13
import pandas as pd
14
from pyarrow.parquet import read_table
15
+
16
+import polars as pl
17
import skrub
18
from pathlib import Path
19
0 commit comments