Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix call to tight_layout #1658

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions neuralprophet/plot_forecast_matplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def plot(
log.warning("Legend is available only for the ten first handles")
else:
ax.legend(handles, labels)
fig = fig.tight_layout()
fig.tight_layout()
return fig


Expand Down Expand Up @@ -239,7 +239,7 @@ def plot_components(
elif "auto-regression" in name or "lagged regressor" in name:
plot_multiforecast_component(fcst=fcst, ax=ax, **comp)

fig = fig.tight_layout()
fig.tight_layout()
# Reset multiplicative axes labels after tight_layout adjustment
for ax in multiplicative_axes:
ax = set_y_as_percent(ax)
Expand Down
2 changes: 1 addition & 1 deletion neuralprophet/plot_model_parameters_matplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def plot_parameters(
multiplicative_axes.append(ax)
weights = multiplicative_events
plot_scalar_weights(weights=weights, plot_name=comp["plot_name"], focus=forecast_in_focus, ax=ax)
fig = fig.tight_layout()
fig.tight_layout()
# Reset multiplicative axes labels after tight_layout adjustment
for ax in multiplicative_axes:
ax = set_y_as_percent(ax)
Expand Down
Loading