01 — Getting Started

Course outlook, good research practice, and modern AI tools.

Lecturer
Date

March 1, 2026

Lift off.

This module introduces the course, covers good research practice and reproducibility, and surveys modern AI tools for economists.

Lecture slides

View fullscreen

Setup

Please complete the following before the course.

1. GitHub

2. Install core tools

Windows

All platforms

3. R packages

Open R and run:

install.packages("pacman")
pacman::p_load(
  tidyverse,    # data wrangling & visualization
  data.table,   # fast data manipulation
  ggplot2,      # plotting
  rvest,        # web scraping (module 04)
  sf,           # spatial data (module 07)
  terra,        # raster data (module 07)
  quanteda,     # text analysis (module 06)
  torch,        # deep learning backend (module 10)
  ellmer         # LLM API access (module 10)
)

For module 10 (LLMs), you additionally need to install the torch backend:

torch::install_torch()

Further resources