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 2 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
11 changes: 9 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,14 @@ 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.

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

We have defined what a time series is and delve into a particular method: The exponential smoothing.
Copy link
Collaborator

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.

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.
Copy link
Collaborator

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


### References

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

Expand Down
Loading