yellow_tripdata
, aggregates it at a daily level, and then compresses it into a monthly-level fact table where each vendor has one row per month. Within this row, daily values (e.g., trip counts, fares, tips) are stored in arrays, ordered using a reverse-day index (e.g., 31st = 0, 30th = 1, etc.).
reverse_day_index
allows the final arrays to be reverse-ordered.
Print Sizes & Counts
dim_vendor
).