Economics 148 - Time Series
Data Science for Economics
Spring 2024 - UC Berkeley
Eric Van Dusen
1
LECTURE 23
Econ 148 - UC Berkeley
Outline
Lecture 23, Econ 148, Spring 2024
Project
Prophet
Emily Aitken
2
Econ 148 - UC Berkeley
Announcements
Midterm - still being graded - like half way through
Project 3 - was released this week
Group Project - 3 / 4 people
Fill out the Google Form
3
Econ 148 - UC Berkeley
Fill out Google Form !
Please fill out this form with who all you would like to be in your group.
4
Econ 148 - UC Berkeley
Project - Latex
5
Econ 148 - UC Berkeley
Why LaTeX?
Econ 148 - UC Berkeley
There are easier approaches - hostmath.com
Econ 148 - UC Berkeley
Let’s go make an overleaf account
“Sign in with Google”
Use UC Berkeley Account
Econ 148 - UC Berkeley
Econ 148 - UC Berkeley
Econ 148 - UC Berkeley
Overleaf - start a new file
Copy and paste text into new document on Overleaf
Or… download file and upload to Overleaf
You can upload a template
You can import other folks files
You can do all of the formatting of the file
Econ 148 - UC Berkeley
Good things to know about LaTeX
Language uses \ a lot to denote actions or unique characters
Everything that’s part of a symbol or function is wrapped within {}
E.g. \frac{5}{8} == ⅝
E.g. \section{This is a section header}
Econ 148 - UC Berkeley
Titles and Imports
TLDR: don’t worry about these
Econ 148 - UC Berkeley
Sections and Subsections
\section{<SECTION NAME>}
Without numbers: \section*{<SECTION NAME>}
Econ 148 - UC Berkeley
Making a List
\begin{enumerate}
\item …
\item …
\end{enumerate}
Econ 148 - UC Berkeley
Adding Images
Put this in the title/imports:
\usepackage{graphicx}
\graphicspath{ {./images/} }
To add an image:
Make sure an images folder is created, then to include image.png:
\includegraphics{image.png}
Econ 148 - UC Berkeley
Typesetting Equations
In-line: $<LATEX FORMULA>$
As its own block: there are a few ways to do this. Two of my most commonly used:
\end{align*}
Econ 148 - UC Berkeley
Project - Reproduce a Journal Article
18
Econ 148 - UC Berkeley
19
Econ 148 - UC Berkeley
20
Econ 148 - UC Berkeley
Have to fill out Dataverse form!
21
Econ 148 - UC Berkeley
Open the dataset!
22
Econ 148 - UC Berkeley
23
Econ 148 - UC Berkeley
A little more on Prophet! -
24
https://ryxcommar.com/2021/11/06/zillow-prophet-time-series-and-prices/
Econ 148 - UC Berkeley
Python on top - Stan underneath
25
Econ 148 - UC Berkeley
https://ryxcommar.com/2021/11/06/zillow-prophet-time-series-and-prices/
Data Scientists
Easy to Use Model
AI - ML algorithms
Domain Knowledge
Finance
Local Knowledge
26
Econ 148 - UC Berkeley
27
Econ 148 - UC Berkeley
Zillow drops in Nov 21
28
Econ 148 - UC Berkeley
29
Econ 148 - UC Berkeley