Slide 32
Slide 32 text
● MetricFlow統合後の初リリース時にはWINDOW関数の機能はなし
● しかし、廃止されるdbt-metricsではWINDOW関数に対応した
Secondary calculationsの機能があり、再導入予定と公式ブログに
表記あり
○ 下図は、Period over Period(ある指標について別の期間の値と比較する)の例
WINDOW関数:dbt Semantic Layer 32
※参考情報:公式ブログ「The dbt Semantic Layer: what’s next」DevelopersIO:相樂がSecondary calculationsを検証したブログ
select *
from {{ metrics.calculate(
metric('revenue'),
grain='week',
secondary_calculations = [
metrics.period_over_period(
comparison_strategy = 'difference',
interval = 1,
alias = 'week_over_week'
) ] ) }}
前週との差を
出している