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

Chapter 13 summary added, html updated #46

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 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
12 changes: 10 additions & 2 deletions 13_time_series/13_time_series.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### A Pluto.jl notebook ###
# v0.12.20
# v0.12.21

using Markdown
using InteractiveUtils
Expand Down Expand Up @@ -795,7 +795,15 @@ md"Well, good! We started this chapter not knowing how to tackle time series for

As a final summary, when dealing with a time series it is very important to be able to define if it has any latent variables such as trend or seasonality. Once we can find that underlying information, we will be able to generate forecasts with confidence. We just need to look deeper.

### Bibliography
### Summary

In this chapter, we have learned the basic foundations of time series analysis.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we learned

We have defined what a time series is and delved into a particular method, the exponential smoothing, that allows us to take into account the most distant values of our data.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we defined

Finally, we explained more complex versions of the method and used them to make predictions in different kinds of scenarios.
When the processes followed a marked tendency, we used the trend method and the damped trend method to make long term predictions.
When the process was highly correlated with the seasonality of the year, like the quantity of air passengers in Australia, we utilized the Holt-Winters’ seasonal method.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

, like the quantity of air passengers in Australia,

delete this part since it's too specific

When the process exhibited seasonal trends, we utilized the Holt-Winters’ seasonal method.


### References

- [Forecasting: Principles and Practice, Chap 7](https://otexts.com/fpp2/expsmooth.html)

Expand Down
Loading