summaryrefslogtreecommitdiffstats
path: root/openbb_terminal/forecast/forecast_view.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_terminal/forecast/forecast_view.py')
-rw-r--r--openbb_terminal/forecast/forecast_view.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbb_terminal/forecast/forecast_view.py b/openbb_terminal/forecast/forecast_view.py
index 4edbd5eaaad..d4c04699e86 100644
--- a/openbb_terminal/forecast/forecast_view.py
+++ b/openbb_terminal/forecast/forecast_view.py
@@ -259,11 +259,12 @@ def show_df(
)
data = data.iloc[:, :limit_col]
print_rich_table(
- data.head(limit),
+ data,
headers=list(data.columns),
show_index=True,
title=f"Dataset {name} | Showing {limit} of {len(data)} rows",
export=bool(export),
+ limit=limit,
)
export_data(