Skip to content

Commit

Permalink
plot univariate time series -> v0.21.3
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Jun 17, 2024
1 parent 3f2e8e0 commit 6ccf0fc
Show file tree
Hide file tree
Showing 8 changed files with 17,553 additions and 6,850 deletions.
27 changes: 0 additions & 27 deletions nnetsauce.egg-info/PKG-INFO

This file was deleted.

88 changes: 0 additions & 88 deletions nnetsauce.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion nnetsauce.egg-info/dependency_links.txt

This file was deleted.

11 changes: 0 additions & 11 deletions nnetsauce.egg-info/requires.txt

This file was deleted.

1 change: 0 additions & 1 deletion nnetsauce.egg-info/top_level.txt

This file was deleted.

24,250 changes: 17,536 additions & 6,714 deletions nnetsauce/demo/thierrymoudiki_20240617_nnetsauce_mts.ipynb

Large diffs are not rendered by default.

23 changes: 16 additions & 7 deletions nnetsauce/mts/mts.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,13 +757,22 @@ def plot(self, series=None, type_axis="dates", type_plot="pi"):
alpha=0.2,
color="orange",
)
plt.title(
f"prediction intervals for {self.replications} simulations of {series}",
loc="left",
fontsize=12,
fontweight=0,
color="black",
)
if self.n_series > 1:
plt.title(
f"prediction intervals for {self.replications} simulations of {series}",
loc="left",
fontsize=12,
fontweight=0,
color="black",
)
else:
plt.title(
f"prediction intervals for {self.replications} simulations of input time series",
loc="left",
fontsize=12,
fontweight=0,
color="black",
)
plt.show()

if type_plot == "spaghetti":
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from codecs import open
from os import path

__version__ = '0.21.2'
__version__ = '0.21.3'

# get the dependencies and installs
here = path.abspath(path.dirname(__file__))
Expand Down

0 comments on commit 6ccf0fc

Please sign in to comment.