forked from sinaptik-ai/pandas-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdf_info.py
64 lines (49 loc) · 1.35 KB
/
df_info.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from typing import Union
import pandas as pd
def _import_modin():
try:
import modin.pandas as pd
except ImportError as e:
raise ImportError(
"Could not import modin, please install with " "`pip install modin`."
) from e
return pd
def _import_polars():
try:
import polars as pl
except ImportError as e:
raise ImportError(
"Could not import polars, please install with " "`pip install polars`."
) from e
return pl
DataFrameType = Union[pd.DataFrame, str]
polars_imported = False
modin_imported = False
try:
pl = _import_polars()
polars_imported = True
DataFrameType = Union[DataFrameType, pl.DataFrame]
except ImportError:
pass
try:
mpd = _import_modin()
modin_imported = True
DataFrameType = Union[DataFrameType, mpd.DataFrame]
except ImportError:
pass
def df_type(df: DataFrameType) -> Union[str, None]:
"""
Returns the type of the dataframe.
Args:
df (DataFrameType): Pandas, Modin or Polars dataframe
Returns:
str: Type of the dataframe
"""
if polars_imported and isinstance(df, pl.DataFrame):
return "polars"
elif modin_imported and isinstance(df, mpd.DataFrame):
return "modin"
elif isinstance(df, pd.DataFrame):
return "pandas"
else:
return None