-
Notifications
You must be signed in to change notification settings - Fork 25
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
base: main
Are you sure you want to change the base?
Conversation
13_time_series/13_time_series.jl
Outdated
### Summary | ||
|
||
In this chapter we have learned the basic foundations of time series analysis. | ||
We have defined what a time series is and delve into a particular method: The exponential smoothing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
attention to detail: "delve" should be in the past tense.
13_time_series/13_time_series.jl
Outdated
### Bibliography | ||
### Summary | ||
|
||
In this chapter we have learned the basic foundations of time series analysis. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remember the comma after the introductory clause (I've marked this issue in several PRs):
In this chapter,
For more information check out https://owl.purdue.edu/owl/general_writing/punctuation/commas/commas_after_introductions.html
13_time_series/13_time_series.jl
Outdated
In this chapter we have learned the basic foundations of time series analysis. | ||
We have defined what a time series is and delve into a particular method: The exponential smoothing. | ||
After building up an intuition of how the simple exponential smoothing works, we continued to introduce more complex versions of the method as the various problems we set ourselves required it. | ||
The simple, trended and seasonality methods were presented and coded, generating in that way a much greater understanding of how they work. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The last two sentences don't seem to include a lot of information, remember to refresh concepts instead of just narrate what happened
13_time_series/13_time_series.jl
Outdated
### Bibliography | ||
### Summary | ||
|
||
In this chapter, we have learned the basic foundations of time series analysis. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we learned
13_time_series/13_time_series.jl
Outdated
### Summary | ||
|
||
In this chapter, we have learned the basic foundations of time series analysis. | ||
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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we defined
13_time_series/13_time_series.jl
Outdated
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. | ||
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. |
There was a problem hiding this comment.
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.
…eedback-to-do-messages Chapter 13: Added feedback and to do messages
No description provided.