Skip to content

Commit

Permalink
fix bug in demographics table construction
Browse files Browse the repository at this point in the history
  • Loading branch information
jfeser committed Sep 16, 2024
1 parent 39e8eed commit 17a41d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/models/demographics.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- Demographic data
-- Contains data from the ACS and the computed segregation indexes.
with
demographics_union as (select * from {{ ref('stg_demographics_union') }}),
demographics as (select * from {{ ref('stg_demographics_union') }}),
-- Fill in data for 2011, 2012 using closest available year. Replace 2020 data
-- with 2019 data to avoid pandemic effects.
demographics_replace_years as (
Expand Down

0 comments on commit 17a41d3

Please sign in to comment.