Skip to content

Commit

Permalink
Merge pull request #10 from fclesio/patch-2
Browse files Browse the repository at this point in the history
Typo in Seasonality title
  • Loading branch information
paulozip committed May 30, 2020
2 parents 4fd090e + 496f519 commit 2c8462f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/decompose_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ def decompose_series(ts):
'''
raise AttributeError(error_message)

decomposition.seasonal.plot(color='green', ax=ax1, title='Sazonality')
decomposition.seasonal.plot(color='green', ax=ax1, title='Seasonality')
plt.legend('')
#plt.title('Sazonality')
#plt.title('Seasonality')
#st.pyplot()

decomposition.trend.plot(color='green', ax=ax2, title='Trending')
Expand All @@ -40,4 +40,4 @@ def decompose_series(ts):
plt.legend('')
#plt.title('Resid')
plt.subplots_adjust(hspace=1)
st.pyplot()
st.pyplot()

0 comments on commit 2c8462f

Please sign in to comment.