Skip to content

Commit 9d25aa9

Browse files
authored
Update README.md
1 parent cc0fe1c commit 9d25aa9

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,18 @@ In this step, I created several DBT models that:
143143
- Performed aggregations and filtering logic (e.g., identifying high claim patients, summarizing chronic conditions)
144144
- Joined datasets (e.g., patients with claims or EHR data)
145145
- Were configured with DBT’s built-in materializations (`view`, `incremental`) for flexibility and performance
146+
All transformations were written in modular `.sql` models, configured via `dbt_project.yml` and executed using DBT CLI or GitHub Actions.
146147

147148
<p align="center">
148149
<img src="./images/dbt-model-lineage.png" alt="DBT Lineage Graph" width="800"/>
149150
</p>
150-
151+
This lineage graph was generated using `dbt docs generate` and `dbt docs serve`.
152+
153+
It shows how each model in the pipeline is derived from raw external source tables in BigQuery:
154+
155+
-**Sources** (`SRC`) like `claims_data_external`, `patient_data_external`, and `ehr_data_external` represent external tables that directly query files stored in Google Cloud Storage
156+
-**Models** (`MDL`) like `high-claim-patients`, `chronic-conditions-summary`, and `health-anomalies` represent transformed tables built using SQL logic in DBT
151157

152-
All transformations were written in modular `.sql` models, configured via `dbt_project.yml` and executed using DBT CLI or GitHub Actions.
153158

154159

155160
#### 🧱 Key DBT Concepts Used:

0 commit comments

Comments
 (0)