@miao-vision/cli 0.1.9 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +1202 -106
- package/dist/examples/campaign-data.csv +33 -0
- package/dist/examples/campaign-report-deck.yaml +115 -0
- package/dist/examples/executive-overview-deck.yaml +137 -0
- package/dist/examples/executive-overview.csv +37 -0
- package/examples/campaign-data.csv +33 -0
- package/examples/campaign-report-deck.yaml +115 -0
- package/examples/executive-overview-deck.yaml +137 -0
- package/examples/executive-overview.csv +37 -0
- package/package.json +1 -1
- package/dist/examples/sales-dashboard.yaml +0 -54
- package/examples/sales-dashboard.yaml +0 -54
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
week,channel,impressions,clicks,conversions,spend
|
|
2
|
+
2025-W01,Social,52000,2100,85,3400
|
|
3
|
+
2025-W01,Search,38000,1850,72,2900
|
|
4
|
+
2025-W01,Email,15000,980,45,1200
|
|
5
|
+
2025-W01,Display,28000,620,18,2100
|
|
6
|
+
2025-W02,Social,58000,2400,98,3600
|
|
7
|
+
2025-W02,Search,42000,2100,84,3100
|
|
8
|
+
2025-W02,Email,17000,1050,50,1250
|
|
9
|
+
2025-W02,Display,31000,680,22,2200
|
|
10
|
+
2025-W03,Social,65000,2750,112,3800
|
|
11
|
+
2025-W03,Search,46000,2300,92,3200
|
|
12
|
+
2025-W03,Email,19000,1120,55,1300
|
|
13
|
+
2025-W03,Display,35000,750,26,2300
|
|
14
|
+
2025-W04,Social,72000,3100,128,4000
|
|
15
|
+
2025-W04,Search,51000,2500,101,3400
|
|
16
|
+
2025-W04,Email,21000,1200,60,1400
|
|
17
|
+
2025-W04,Display,38000,820,30,2400
|
|
18
|
+
2025-W05,Social,68000,2900,118,3900
|
|
19
|
+
2025-W05,Search,48000,2400,95,3300
|
|
20
|
+
2025-W05,Email,20000,1150,57,1350
|
|
21
|
+
2025-W05,Display,36000,790,28,2350
|
|
22
|
+
2025-W06,Social,76000,3300,135,4200
|
|
23
|
+
2025-W06,Search,54000,2650,108,3500
|
|
24
|
+
2025-W06,Email,23000,1280,65,1450
|
|
25
|
+
2025-W06,Display,40000,860,33,2500
|
|
26
|
+
2025-W07,Social,81000,3550,148,4400
|
|
27
|
+
2025-W07,Search,58000,2800,115,3600
|
|
28
|
+
2025-W07,Email,25000,1350,70,1500
|
|
29
|
+
2025-W07,Display,43000,910,36,2600
|
|
30
|
+
2025-W08,Social,88000,3900,162,4600
|
|
31
|
+
2025-W08,Search,62000,3000,125,3800
|
|
32
|
+
2025-W08,Email,27000,1420,75,1550
|
|
33
|
+
2025-W08,Display,46000,960,40,2700
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
title: Campaign Performance Report
|
|
2
|
+
theme: dark
|
|
3
|
+
slides:
|
|
4
|
+
- layout: cover
|
|
5
|
+
eyebrow: "2025 · Q1 Campaigns"
|
|
6
|
+
title: "Campaign Performance"
|
|
7
|
+
claim: "Social and Search channels drove 74% of conversions with improving efficiency."
|
|
8
|
+
|
|
9
|
+
- layout: metrics-chart
|
|
10
|
+
eyebrow: "01 · CAMPAIGN SNAPSHOT"
|
|
11
|
+
title: "Scale Improved While Efficiency Stayed Strong"
|
|
12
|
+
metrics:
|
|
13
|
+
- label: Total Impressions
|
|
14
|
+
format: ".0s"
|
|
15
|
+
data:
|
|
16
|
+
transform:
|
|
17
|
+
- type: aggregate
|
|
18
|
+
measures:
|
|
19
|
+
- field: impressions
|
|
20
|
+
op: sum
|
|
21
|
+
as: v
|
|
22
|
+
- label: Total Clicks
|
|
23
|
+
format: ".0s"
|
|
24
|
+
data:
|
|
25
|
+
transform:
|
|
26
|
+
- type: aggregate
|
|
27
|
+
measures:
|
|
28
|
+
- field: clicks
|
|
29
|
+
op: sum
|
|
30
|
+
as: v
|
|
31
|
+
- label: Total Spend
|
|
32
|
+
format: "$,.0f"
|
|
33
|
+
data:
|
|
34
|
+
transform:
|
|
35
|
+
- type: aggregate
|
|
36
|
+
measures:
|
|
37
|
+
- field: spend
|
|
38
|
+
op: sum
|
|
39
|
+
as: v
|
|
40
|
+
charts:
|
|
41
|
+
- type: line
|
|
42
|
+
title: Weekly Clicks
|
|
43
|
+
data:
|
|
44
|
+
transform:
|
|
45
|
+
- type: aggregate
|
|
46
|
+
groupBy: [week]
|
|
47
|
+
measures:
|
|
48
|
+
- field: clicks
|
|
49
|
+
op: sum
|
|
50
|
+
as: total
|
|
51
|
+
- type: sort
|
|
52
|
+
field: week
|
|
53
|
+
order: asc
|
|
54
|
+
encoding:
|
|
55
|
+
x: { field: week }
|
|
56
|
+
y: { field: total }
|
|
57
|
+
|
|
58
|
+
- layout: text-chart
|
|
59
|
+
eyebrow: "02 · CHANNEL EFFICIENCY"
|
|
60
|
+
title: "Social Scales While Email Converts"
|
|
61
|
+
annotation: "Social drives the most volume; Email has the best conversion rate per impression."
|
|
62
|
+
bullets:
|
|
63
|
+
- "Social: 41% of conversions, CPA trending down over the campaign."
|
|
64
|
+
- "Search: consistent volume with stable CPA."
|
|
65
|
+
- "Display: lowest CTR at 2.2%, but useful for top-of-funnel reach."
|
|
66
|
+
charts:
|
|
67
|
+
- type: scatter
|
|
68
|
+
title: Spend vs Conversions
|
|
69
|
+
data:
|
|
70
|
+
transform:
|
|
71
|
+
- type: aggregate
|
|
72
|
+
groupBy: [channel]
|
|
73
|
+
measures:
|
|
74
|
+
- field: spend
|
|
75
|
+
op: sum
|
|
76
|
+
as: total_spend
|
|
77
|
+
- field: conversions
|
|
78
|
+
op: sum
|
|
79
|
+
as: total_conversions
|
|
80
|
+
encoding:
|
|
81
|
+
x: { field: total_spend }
|
|
82
|
+
y: { field: total_conversions }
|
|
83
|
+
|
|
84
|
+
- layout: title-only
|
|
85
|
+
title: "03 · Channel Performance"
|
|
86
|
+
|
|
87
|
+
- layout: chart-full
|
|
88
|
+
eyebrow: "04 · DISTRIBUTION"
|
|
89
|
+
title: "Impression Distribution"
|
|
90
|
+
charts:
|
|
91
|
+
- type: histogram
|
|
92
|
+
title: Impression Distribution
|
|
93
|
+
encoding:
|
|
94
|
+
x: { field: impressions }
|
|
95
|
+
|
|
96
|
+
- layout: table-full
|
|
97
|
+
eyebrow: "05 · TOP CAMPAIGNS"
|
|
98
|
+
title: "Top Campaigns by Conversions"
|
|
99
|
+
charts:
|
|
100
|
+
- type: table
|
|
101
|
+
title: Top Campaigns
|
|
102
|
+
data:
|
|
103
|
+
transform:
|
|
104
|
+
- type: sort
|
|
105
|
+
field: conversions
|
|
106
|
+
order: desc
|
|
107
|
+
- type: limit
|
|
108
|
+
value: 10
|
|
109
|
+
encoding:
|
|
110
|
+
x: { field: channel }
|
|
111
|
+
y: { field: conversions }
|
|
112
|
+
|
|
113
|
+
- layout: ending
|
|
114
|
+
title: "Scale Social, protect Search, test Email retargeting"
|
|
115
|
+
claim: "Increase Social budget 15% and test Display retargeting in Q2."
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
title: Executive Overview
|
|
2
|
+
description: Revenue grew 22% QoQ driven by Alpha product adoption in East and South regions.
|
|
3
|
+
theme: editorial
|
|
4
|
+
slides:
|
|
5
|
+
- layout: cover
|
|
6
|
+
eyebrow: "2025 · Q1 Review"
|
|
7
|
+
title: "Executive Overview"
|
|
8
|
+
claim: "Revenue grew 22% QoQ driven by strong Enterprise product adoption."
|
|
9
|
+
|
|
10
|
+
- layout: title-only
|
|
11
|
+
title: "01 · Performance Highlights"
|
|
12
|
+
|
|
13
|
+
- layout: metrics-chart
|
|
14
|
+
eyebrow: "01 · PERFORMANCE HIGHLIGHTS"
|
|
15
|
+
title: "Revenue Growth Accelerated While Margins Held"
|
|
16
|
+
metrics:
|
|
17
|
+
- label: Total Revenue
|
|
18
|
+
format: "$,.0f"
|
|
19
|
+
data:
|
|
20
|
+
transform:
|
|
21
|
+
- type: aggregate
|
|
22
|
+
measures:
|
|
23
|
+
- field: revenue
|
|
24
|
+
op: sum
|
|
25
|
+
as: v
|
|
26
|
+
- label: Total Units
|
|
27
|
+
format: ",.0f"
|
|
28
|
+
data:
|
|
29
|
+
transform:
|
|
30
|
+
- type: aggregate
|
|
31
|
+
measures:
|
|
32
|
+
- field: units
|
|
33
|
+
op: sum
|
|
34
|
+
as: v
|
|
35
|
+
- label: Total Profit
|
|
36
|
+
format: "$,.0f"
|
|
37
|
+
data:
|
|
38
|
+
transform:
|
|
39
|
+
- type: aggregate
|
|
40
|
+
measures:
|
|
41
|
+
- field: profit
|
|
42
|
+
op: sum
|
|
43
|
+
as: v
|
|
44
|
+
- label: Avg Revenue
|
|
45
|
+
format: "$,.0f"
|
|
46
|
+
data:
|
|
47
|
+
transform:
|
|
48
|
+
- type: aggregate
|
|
49
|
+
measures:
|
|
50
|
+
- field: revenue
|
|
51
|
+
op: avg
|
|
52
|
+
as: v
|
|
53
|
+
charts:
|
|
54
|
+
- type: area
|
|
55
|
+
title: Monthly Revenue
|
|
56
|
+
data:
|
|
57
|
+
transform:
|
|
58
|
+
- type: derive-month
|
|
59
|
+
field: date
|
|
60
|
+
as: month
|
|
61
|
+
- type: aggregate
|
|
62
|
+
groupBy: [month]
|
|
63
|
+
measures:
|
|
64
|
+
- field: revenue
|
|
65
|
+
op: sum
|
|
66
|
+
as: total
|
|
67
|
+
- type: sort
|
|
68
|
+
field: month
|
|
69
|
+
order: asc
|
|
70
|
+
encoding:
|
|
71
|
+
x: { field: month }
|
|
72
|
+
y: { field: total }
|
|
73
|
+
|
|
74
|
+
- layout: text-points
|
|
75
|
+
eyebrow: "02 · KEY INSIGHTS"
|
|
76
|
+
title: "Revenue Drivers"
|
|
77
|
+
claim: "Three trends shaped the quarter: Enterprise expansion, regional balance, and product mix."
|
|
78
|
+
bullets:
|
|
79
|
+
- "Enterprise segment (Alpha + Gamma) contributed 68% of total revenue across all regions."
|
|
80
|
+
- "East region grew 29% QoQ, the fastest among all four regions."
|
|
81
|
+
- "Product Alpha leads with 42% revenue share, up from 40% in January."
|
|
82
|
+
callout: "Recommendation: Expand Alpha capacity in North region to capture untapped demand."
|
|
83
|
+
|
|
84
|
+
- layout: title-only
|
|
85
|
+
title: "02 · Revenue Breakdown"
|
|
86
|
+
|
|
87
|
+
- layout: text-chart
|
|
88
|
+
eyebrow: "03 · PRODUCT MIX"
|
|
89
|
+
title: "Product Revenue Is Concentrated in Alpha"
|
|
90
|
+
annotation: "Alpha is the top revenue product across every region."
|
|
91
|
+
bullets:
|
|
92
|
+
- "Alpha: 42% share, driven by Enterprise accounts."
|
|
93
|
+
- "Beta: 31% share, strongest in East and South."
|
|
94
|
+
- "Gamma: 27% share, growth opportunity in West."
|
|
95
|
+
charts:
|
|
96
|
+
- type: pie
|
|
97
|
+
title: Revenue by Product
|
|
98
|
+
data:
|
|
99
|
+
transform:
|
|
100
|
+
- type: aggregate
|
|
101
|
+
groupBy: [product]
|
|
102
|
+
measures:
|
|
103
|
+
- field: revenue
|
|
104
|
+
op: sum
|
|
105
|
+
as: total
|
|
106
|
+
- type: sort
|
|
107
|
+
field: total
|
|
108
|
+
order: desc
|
|
109
|
+
encoding:
|
|
110
|
+
label: { field: product }
|
|
111
|
+
value: { field: total }
|
|
112
|
+
|
|
113
|
+
- layout: chart-full
|
|
114
|
+
eyebrow: "04 · REGIONAL"
|
|
115
|
+
title: "Revenue by Region"
|
|
116
|
+
charts:
|
|
117
|
+
- type: bar
|
|
118
|
+
title: Revenue by Region
|
|
119
|
+
data:
|
|
120
|
+
transform:
|
|
121
|
+
- type: aggregate
|
|
122
|
+
groupBy: [region]
|
|
123
|
+
measures:
|
|
124
|
+
- field: revenue
|
|
125
|
+
op: sum
|
|
126
|
+
as: total
|
|
127
|
+
- type: sort
|
|
128
|
+
field: total
|
|
129
|
+
order: desc
|
|
130
|
+
encoding:
|
|
131
|
+
x: { field: region }
|
|
132
|
+
y: { field: total }
|
|
133
|
+
color: { field: region }
|
|
134
|
+
|
|
135
|
+
- layout: ending
|
|
136
|
+
title: "Focus on North region growth"
|
|
137
|
+
claim: "Enterprise product expansion in North is the highest-ROI opportunity for Q2."
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
date,region,product,segment,revenue,units,cost,profit
|
|
2
|
+
2025-01-01,East,Alpha,Enterprise,45000,120,28000,17000
|
|
3
|
+
2025-01-01,East,Beta,SMB,32000,85,21000,11000
|
|
4
|
+
2025-01-01,East,Gamma,Enterprise,28000,70,19000,9000
|
|
5
|
+
2025-01-01,West,Alpha,Enterprise,38000,100,25000,13000
|
|
6
|
+
2025-01-01,West,Beta,SMB,29000,78,20000,9000
|
|
7
|
+
2025-01-01,West,Gamma,Enterprise,22000,55,16000,6000
|
|
8
|
+
2025-01-01,North,Alpha,Enterprise,31000,82,21000,10000
|
|
9
|
+
2025-01-01,North,Beta,SMB,24000,65,17000,7000
|
|
10
|
+
2025-01-01,North,Gamma,Enterprise,18000,48,13000,5000
|
|
11
|
+
2025-01-01,South,Alpha,Enterprise,35000,92,23000,12000
|
|
12
|
+
2025-01-01,South,Beta,SMB,26000,70,18000,8000
|
|
13
|
+
2025-01-01,South,Gamma,Enterprise,20000,52,14000,6000
|
|
14
|
+
2025-02-01,East,Alpha,Enterprise,51000,135,31000,20000
|
|
15
|
+
2025-02-01,East,Beta,SMB,36000,95,23000,13000
|
|
16
|
+
2025-02-01,East,Gamma,Enterprise,32000,80,21000,11000
|
|
17
|
+
2025-02-01,West,Alpha,Enterprise,42000,110,27000,15000
|
|
18
|
+
2025-02-01,West,Beta,SMB,32000,86,22000,10000
|
|
19
|
+
2025-02-01,West,Gamma,Enterprise,25000,62,18000,7000
|
|
20
|
+
2025-02-01,North,Alpha,Enterprise,35000,92,23000,12000
|
|
21
|
+
2025-02-01,North,Beta,SMB,27000,72,19000,8000
|
|
22
|
+
2025-02-01,North,Gamma,Enterprise,21000,55,15000,6000
|
|
23
|
+
2025-02-01,South,Alpha,Enterprise,39000,102,25000,14000
|
|
24
|
+
2025-02-01,South,Beta,SMB,29000,78,20000,9000
|
|
25
|
+
2025-02-01,South,Gamma,Enterprise,23000,60,16000,7000
|
|
26
|
+
2025-03-01,East,Alpha,Enterprise,58000,150,34000,24000
|
|
27
|
+
2025-03-01,East,Beta,SMB,40000,105,25000,15000
|
|
28
|
+
2025-03-01,East,Gamma,Enterprise,36000,90,23000,13000
|
|
29
|
+
2025-03-01,West,Alpha,Enterprise,48000,125,30000,18000
|
|
30
|
+
2025-03-01,West,Beta,SMB,36000,95,24000,12000
|
|
31
|
+
2025-03-01,West,Gamma,Enterprise,29000,72,20000,9000
|
|
32
|
+
2025-03-01,North,Alpha,Enterprise,40000,105,26000,14000
|
|
33
|
+
2025-03-01,North,Beta,SMB,31000,82,21000,10000
|
|
34
|
+
2025-03-01,North,Gamma,Enterprise,24000,62,17000,7000
|
|
35
|
+
2025-03-01,South,Alpha,Enterprise,44000,115,28000,16000
|
|
36
|
+
2025-03-01,South,Beta,SMB,33000,88,22000,11000
|
|
37
|
+
2025-03-01,South,Gamma,Enterprise,26000,68,18000,8000
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
week,channel,impressions,clicks,conversions,spend
|
|
2
|
+
2025-W01,Social,52000,2100,85,3400
|
|
3
|
+
2025-W01,Search,38000,1850,72,2900
|
|
4
|
+
2025-W01,Email,15000,980,45,1200
|
|
5
|
+
2025-W01,Display,28000,620,18,2100
|
|
6
|
+
2025-W02,Social,58000,2400,98,3600
|
|
7
|
+
2025-W02,Search,42000,2100,84,3100
|
|
8
|
+
2025-W02,Email,17000,1050,50,1250
|
|
9
|
+
2025-W02,Display,31000,680,22,2200
|
|
10
|
+
2025-W03,Social,65000,2750,112,3800
|
|
11
|
+
2025-W03,Search,46000,2300,92,3200
|
|
12
|
+
2025-W03,Email,19000,1120,55,1300
|
|
13
|
+
2025-W03,Display,35000,750,26,2300
|
|
14
|
+
2025-W04,Social,72000,3100,128,4000
|
|
15
|
+
2025-W04,Search,51000,2500,101,3400
|
|
16
|
+
2025-W04,Email,21000,1200,60,1400
|
|
17
|
+
2025-W04,Display,38000,820,30,2400
|
|
18
|
+
2025-W05,Social,68000,2900,118,3900
|
|
19
|
+
2025-W05,Search,48000,2400,95,3300
|
|
20
|
+
2025-W05,Email,20000,1150,57,1350
|
|
21
|
+
2025-W05,Display,36000,790,28,2350
|
|
22
|
+
2025-W06,Social,76000,3300,135,4200
|
|
23
|
+
2025-W06,Search,54000,2650,108,3500
|
|
24
|
+
2025-W06,Email,23000,1280,65,1450
|
|
25
|
+
2025-W06,Display,40000,860,33,2500
|
|
26
|
+
2025-W07,Social,81000,3550,148,4400
|
|
27
|
+
2025-W07,Search,58000,2800,115,3600
|
|
28
|
+
2025-W07,Email,25000,1350,70,1500
|
|
29
|
+
2025-W07,Display,43000,910,36,2600
|
|
30
|
+
2025-W08,Social,88000,3900,162,4600
|
|
31
|
+
2025-W08,Search,62000,3000,125,3800
|
|
32
|
+
2025-W08,Email,27000,1420,75,1550
|
|
33
|
+
2025-W08,Display,46000,960,40,2700
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
title: Campaign Performance Report
|
|
2
|
+
theme: dark
|
|
3
|
+
slides:
|
|
4
|
+
- layout: cover
|
|
5
|
+
eyebrow: "2025 · Q1 Campaigns"
|
|
6
|
+
title: "Campaign Performance"
|
|
7
|
+
claim: "Social and Search channels drove 74% of conversions with improving efficiency."
|
|
8
|
+
|
|
9
|
+
- layout: metrics-chart
|
|
10
|
+
eyebrow: "01 · CAMPAIGN SNAPSHOT"
|
|
11
|
+
title: "Scale Improved While Efficiency Stayed Strong"
|
|
12
|
+
metrics:
|
|
13
|
+
- label: Total Impressions
|
|
14
|
+
format: ".0s"
|
|
15
|
+
data:
|
|
16
|
+
transform:
|
|
17
|
+
- type: aggregate
|
|
18
|
+
measures:
|
|
19
|
+
- field: impressions
|
|
20
|
+
op: sum
|
|
21
|
+
as: v
|
|
22
|
+
- label: Total Clicks
|
|
23
|
+
format: ".0s"
|
|
24
|
+
data:
|
|
25
|
+
transform:
|
|
26
|
+
- type: aggregate
|
|
27
|
+
measures:
|
|
28
|
+
- field: clicks
|
|
29
|
+
op: sum
|
|
30
|
+
as: v
|
|
31
|
+
- label: Total Spend
|
|
32
|
+
format: "$,.0f"
|
|
33
|
+
data:
|
|
34
|
+
transform:
|
|
35
|
+
- type: aggregate
|
|
36
|
+
measures:
|
|
37
|
+
- field: spend
|
|
38
|
+
op: sum
|
|
39
|
+
as: v
|
|
40
|
+
charts:
|
|
41
|
+
- type: line
|
|
42
|
+
title: Weekly Clicks
|
|
43
|
+
data:
|
|
44
|
+
transform:
|
|
45
|
+
- type: aggregate
|
|
46
|
+
groupBy: [week]
|
|
47
|
+
measures:
|
|
48
|
+
- field: clicks
|
|
49
|
+
op: sum
|
|
50
|
+
as: total
|
|
51
|
+
- type: sort
|
|
52
|
+
field: week
|
|
53
|
+
order: asc
|
|
54
|
+
encoding:
|
|
55
|
+
x: { field: week }
|
|
56
|
+
y: { field: total }
|
|
57
|
+
|
|
58
|
+
- layout: text-chart
|
|
59
|
+
eyebrow: "02 · CHANNEL EFFICIENCY"
|
|
60
|
+
title: "Social Scales While Email Converts"
|
|
61
|
+
annotation: "Social drives the most volume; Email has the best conversion rate per impression."
|
|
62
|
+
bullets:
|
|
63
|
+
- "Social: 41% of conversions, CPA trending down over the campaign."
|
|
64
|
+
- "Search: consistent volume with stable CPA."
|
|
65
|
+
- "Display: lowest CTR at 2.2%, but useful for top-of-funnel reach."
|
|
66
|
+
charts:
|
|
67
|
+
- type: scatter
|
|
68
|
+
title: Spend vs Conversions
|
|
69
|
+
data:
|
|
70
|
+
transform:
|
|
71
|
+
- type: aggregate
|
|
72
|
+
groupBy: [channel]
|
|
73
|
+
measures:
|
|
74
|
+
- field: spend
|
|
75
|
+
op: sum
|
|
76
|
+
as: total_spend
|
|
77
|
+
- field: conversions
|
|
78
|
+
op: sum
|
|
79
|
+
as: total_conversions
|
|
80
|
+
encoding:
|
|
81
|
+
x: { field: total_spend }
|
|
82
|
+
y: { field: total_conversions }
|
|
83
|
+
|
|
84
|
+
- layout: title-only
|
|
85
|
+
title: "03 · Channel Performance"
|
|
86
|
+
|
|
87
|
+
- layout: chart-full
|
|
88
|
+
eyebrow: "04 · DISTRIBUTION"
|
|
89
|
+
title: "Impression Distribution"
|
|
90
|
+
charts:
|
|
91
|
+
- type: histogram
|
|
92
|
+
title: Impression Distribution
|
|
93
|
+
encoding:
|
|
94
|
+
x: { field: impressions }
|
|
95
|
+
|
|
96
|
+
- layout: table-full
|
|
97
|
+
eyebrow: "05 · TOP CAMPAIGNS"
|
|
98
|
+
title: "Top Campaigns by Conversions"
|
|
99
|
+
charts:
|
|
100
|
+
- type: table
|
|
101
|
+
title: Top Campaigns
|
|
102
|
+
data:
|
|
103
|
+
transform:
|
|
104
|
+
- type: sort
|
|
105
|
+
field: conversions
|
|
106
|
+
order: desc
|
|
107
|
+
- type: limit
|
|
108
|
+
value: 10
|
|
109
|
+
encoding:
|
|
110
|
+
x: { field: channel }
|
|
111
|
+
y: { field: conversions }
|
|
112
|
+
|
|
113
|
+
- layout: ending
|
|
114
|
+
title: "Scale Social, protect Search, test Email retargeting"
|
|
115
|
+
claim: "Increase Social budget 15% and test Display retargeting in Q2."
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
title: Executive Overview
|
|
2
|
+
description: Revenue grew 22% QoQ driven by Alpha product adoption in East and South regions.
|
|
3
|
+
theme: editorial
|
|
4
|
+
slides:
|
|
5
|
+
- layout: cover
|
|
6
|
+
eyebrow: "2025 · Q1 Review"
|
|
7
|
+
title: "Executive Overview"
|
|
8
|
+
claim: "Revenue grew 22% QoQ driven by strong Enterprise product adoption."
|
|
9
|
+
|
|
10
|
+
- layout: title-only
|
|
11
|
+
title: "01 · Performance Highlights"
|
|
12
|
+
|
|
13
|
+
- layout: metrics-chart
|
|
14
|
+
eyebrow: "01 · PERFORMANCE HIGHLIGHTS"
|
|
15
|
+
title: "Revenue Growth Accelerated While Margins Held"
|
|
16
|
+
metrics:
|
|
17
|
+
- label: Total Revenue
|
|
18
|
+
format: "$,.0f"
|
|
19
|
+
data:
|
|
20
|
+
transform:
|
|
21
|
+
- type: aggregate
|
|
22
|
+
measures:
|
|
23
|
+
- field: revenue
|
|
24
|
+
op: sum
|
|
25
|
+
as: v
|
|
26
|
+
- label: Total Units
|
|
27
|
+
format: ",.0f"
|
|
28
|
+
data:
|
|
29
|
+
transform:
|
|
30
|
+
- type: aggregate
|
|
31
|
+
measures:
|
|
32
|
+
- field: units
|
|
33
|
+
op: sum
|
|
34
|
+
as: v
|
|
35
|
+
- label: Total Profit
|
|
36
|
+
format: "$,.0f"
|
|
37
|
+
data:
|
|
38
|
+
transform:
|
|
39
|
+
- type: aggregate
|
|
40
|
+
measures:
|
|
41
|
+
- field: profit
|
|
42
|
+
op: sum
|
|
43
|
+
as: v
|
|
44
|
+
- label: Avg Revenue
|
|
45
|
+
format: "$,.0f"
|
|
46
|
+
data:
|
|
47
|
+
transform:
|
|
48
|
+
- type: aggregate
|
|
49
|
+
measures:
|
|
50
|
+
- field: revenue
|
|
51
|
+
op: avg
|
|
52
|
+
as: v
|
|
53
|
+
charts:
|
|
54
|
+
- type: area
|
|
55
|
+
title: Monthly Revenue
|
|
56
|
+
data:
|
|
57
|
+
transform:
|
|
58
|
+
- type: derive-month
|
|
59
|
+
field: date
|
|
60
|
+
as: month
|
|
61
|
+
- type: aggregate
|
|
62
|
+
groupBy: [month]
|
|
63
|
+
measures:
|
|
64
|
+
- field: revenue
|
|
65
|
+
op: sum
|
|
66
|
+
as: total
|
|
67
|
+
- type: sort
|
|
68
|
+
field: month
|
|
69
|
+
order: asc
|
|
70
|
+
encoding:
|
|
71
|
+
x: { field: month }
|
|
72
|
+
y: { field: total }
|
|
73
|
+
|
|
74
|
+
- layout: text-points
|
|
75
|
+
eyebrow: "02 · KEY INSIGHTS"
|
|
76
|
+
title: "Revenue Drivers"
|
|
77
|
+
claim: "Three trends shaped the quarter: Enterprise expansion, regional balance, and product mix."
|
|
78
|
+
bullets:
|
|
79
|
+
- "Enterprise segment (Alpha + Gamma) contributed 68% of total revenue across all regions."
|
|
80
|
+
- "East region grew 29% QoQ, the fastest among all four regions."
|
|
81
|
+
- "Product Alpha leads with 42% revenue share, up from 40% in January."
|
|
82
|
+
callout: "Recommendation: Expand Alpha capacity in North region to capture untapped demand."
|
|
83
|
+
|
|
84
|
+
- layout: title-only
|
|
85
|
+
title: "02 · Revenue Breakdown"
|
|
86
|
+
|
|
87
|
+
- layout: text-chart
|
|
88
|
+
eyebrow: "03 · PRODUCT MIX"
|
|
89
|
+
title: "Product Revenue Is Concentrated in Alpha"
|
|
90
|
+
annotation: "Alpha is the top revenue product across every region."
|
|
91
|
+
bullets:
|
|
92
|
+
- "Alpha: 42% share, driven by Enterprise accounts."
|
|
93
|
+
- "Beta: 31% share, strongest in East and South."
|
|
94
|
+
- "Gamma: 27% share, growth opportunity in West."
|
|
95
|
+
charts:
|
|
96
|
+
- type: pie
|
|
97
|
+
title: Revenue by Product
|
|
98
|
+
data:
|
|
99
|
+
transform:
|
|
100
|
+
- type: aggregate
|
|
101
|
+
groupBy: [product]
|
|
102
|
+
measures:
|
|
103
|
+
- field: revenue
|
|
104
|
+
op: sum
|
|
105
|
+
as: total
|
|
106
|
+
- type: sort
|
|
107
|
+
field: total
|
|
108
|
+
order: desc
|
|
109
|
+
encoding:
|
|
110
|
+
label: { field: product }
|
|
111
|
+
value: { field: total }
|
|
112
|
+
|
|
113
|
+
- layout: chart-full
|
|
114
|
+
eyebrow: "04 · REGIONAL"
|
|
115
|
+
title: "Revenue by Region"
|
|
116
|
+
charts:
|
|
117
|
+
- type: bar
|
|
118
|
+
title: Revenue by Region
|
|
119
|
+
data:
|
|
120
|
+
transform:
|
|
121
|
+
- type: aggregate
|
|
122
|
+
groupBy: [region]
|
|
123
|
+
measures:
|
|
124
|
+
- field: revenue
|
|
125
|
+
op: sum
|
|
126
|
+
as: total
|
|
127
|
+
- type: sort
|
|
128
|
+
field: total
|
|
129
|
+
order: desc
|
|
130
|
+
encoding:
|
|
131
|
+
x: { field: region }
|
|
132
|
+
y: { field: total }
|
|
133
|
+
color: { field: region }
|
|
134
|
+
|
|
135
|
+
- layout: ending
|
|
136
|
+
title: "Focus on North region growth"
|
|
137
|
+
claim: "Enterprise product expansion in North is the highest-ROI opportunity for Q2."
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
date,region,product,segment,revenue,units,cost,profit
|
|
2
|
+
2025-01-01,East,Alpha,Enterprise,45000,120,28000,17000
|
|
3
|
+
2025-01-01,East,Beta,SMB,32000,85,21000,11000
|
|
4
|
+
2025-01-01,East,Gamma,Enterprise,28000,70,19000,9000
|
|
5
|
+
2025-01-01,West,Alpha,Enterprise,38000,100,25000,13000
|
|
6
|
+
2025-01-01,West,Beta,SMB,29000,78,20000,9000
|
|
7
|
+
2025-01-01,West,Gamma,Enterprise,22000,55,16000,6000
|
|
8
|
+
2025-01-01,North,Alpha,Enterprise,31000,82,21000,10000
|
|
9
|
+
2025-01-01,North,Beta,SMB,24000,65,17000,7000
|
|
10
|
+
2025-01-01,North,Gamma,Enterprise,18000,48,13000,5000
|
|
11
|
+
2025-01-01,South,Alpha,Enterprise,35000,92,23000,12000
|
|
12
|
+
2025-01-01,South,Beta,SMB,26000,70,18000,8000
|
|
13
|
+
2025-01-01,South,Gamma,Enterprise,20000,52,14000,6000
|
|
14
|
+
2025-02-01,East,Alpha,Enterprise,51000,135,31000,20000
|
|
15
|
+
2025-02-01,East,Beta,SMB,36000,95,23000,13000
|
|
16
|
+
2025-02-01,East,Gamma,Enterprise,32000,80,21000,11000
|
|
17
|
+
2025-02-01,West,Alpha,Enterprise,42000,110,27000,15000
|
|
18
|
+
2025-02-01,West,Beta,SMB,32000,86,22000,10000
|
|
19
|
+
2025-02-01,West,Gamma,Enterprise,25000,62,18000,7000
|
|
20
|
+
2025-02-01,North,Alpha,Enterprise,35000,92,23000,12000
|
|
21
|
+
2025-02-01,North,Beta,SMB,27000,72,19000,8000
|
|
22
|
+
2025-02-01,North,Gamma,Enterprise,21000,55,15000,6000
|
|
23
|
+
2025-02-01,South,Alpha,Enterprise,39000,102,25000,14000
|
|
24
|
+
2025-02-01,South,Beta,SMB,29000,78,20000,9000
|
|
25
|
+
2025-02-01,South,Gamma,Enterprise,23000,60,16000,7000
|
|
26
|
+
2025-03-01,East,Alpha,Enterprise,58000,150,34000,24000
|
|
27
|
+
2025-03-01,East,Beta,SMB,40000,105,25000,15000
|
|
28
|
+
2025-03-01,East,Gamma,Enterprise,36000,90,23000,13000
|
|
29
|
+
2025-03-01,West,Alpha,Enterprise,48000,125,30000,18000
|
|
30
|
+
2025-03-01,West,Beta,SMB,36000,95,24000,12000
|
|
31
|
+
2025-03-01,West,Gamma,Enterprise,29000,72,20000,9000
|
|
32
|
+
2025-03-01,North,Alpha,Enterprise,40000,105,26000,14000
|
|
33
|
+
2025-03-01,North,Beta,SMB,31000,82,21000,10000
|
|
34
|
+
2025-03-01,North,Gamma,Enterprise,24000,62,17000,7000
|
|
35
|
+
2025-03-01,South,Alpha,Enterprise,44000,115,28000,16000
|
|
36
|
+
2025-03-01,South,Beta,SMB,33000,88,22000,11000
|
|
37
|
+
2025-03-01,South,Gamma,Enterprise,26000,68,18000,8000
|