forerad

Utilities for collecting and analyzing with Citibike data in Python
Log | Files | Refs | README

commit fa9ffc6481e80341a33e2ba9ca3bc49b4ebb001b
Author: Steve Gattuso <steve@stevegattuso.me>
Date:   Sun, 29 Oct 2023 19:03:53 +0100

initial commit w/readme

Diffstat:
A.envrc | 1+
A.gitignore | 1+
AREADME.md | 13+++++++++++++
3 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/.envrc b/.envrc @@ -0,0 +1 @@ +layout python3 diff --git a/.gitignore b/.gitignore @@ -0,0 +1 @@ +.direnv diff --git a/README.md b/README.md @@ -0,0 +1,13 @@ +# Forerad +Trying to learn about statistics and forecasting via doing stuff with Citibike data. Also trying to prevent myself from going down another Factorio wormhole by essentially doing the same thing but a bit more useful. + +Goal: come up with a somewhat decent 3-to-7 day Citibike ride forecast. + +## Planning +Data collection is the hardest part. I need to: + +1. Build a scraper job that fetches, cleans, and stores historical ride data. +2. Build a scraper job that fetches, cleans, and stores any relevant real-time data. +3. Build a forecasting job that combines these datasets into a 3 day prediction. + * The MVP should just take the historical average for the day of the year. +4. Build a job that calculates MAPE for previous forecasts as realtime data comes out.