Access the recreated dashboard to view the visualizations and insights.
This repository is connected to dbt Cloud, providing a seamless data modeling and analytics environment.
Find the completed MCDM files in the staging directory. Each platform is mapped to a suggested structure for its data table, and the paid_ads__basic_performance
model aggregates data from all platforms.
The core folder contains the queries used to create the dashboard.
To add a new platform to the data model, follow these steps:
- Include the data for the new platform in a
new_platform_data.csv
file within the seed folder. - Create an
new_platform.sql
model that maps the new platform's data to thepaid_ads__basic_performance
model. You can refer to the existingnew_*.sql
files in the models folder. - Update the
combined_data.sql
model by adding a new source using aunion
statement:
...
union all
select *
from {{ ref('new_platform') }}
- In the dbt console, run
dbt seed
anddbt build
to incorporate the new platform's data.
Feel free to reach out if you have any questions or need further assistance.