We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e689665 + 906591e commit 5a7c611Copy full SHA for 5a7c611
src/pandas_profiling/model/describe.py
@@ -84,7 +84,9 @@ def describe(
84
if type_name != "Unsupported"
85
]
86
interval_columns = [
87
- column for column, type_name in variables.items() if type_name == "Numeric"
+ column
88
+ for column, type_name in variables.items()
89
+ if type_name in {"Numeric", "TimeSeries"}
90
91
pbar.update()
92
src/pandas_profiling/model/pandas/correlations_pandas.py
@@ -164,7 +164,7 @@ def pandas_auto_compute(
164
numerical_columns = [
165
key
166
for key, value in summary.items()
167
- if value["type"] == "Numeric" and value["n_distinct"] > 1
+ if value["type"] in {"Numeric", "TimeSeries"} and value["n_distinct"] > 1
168
169
categorical_columns = [
170
0 commit comments