Skip to content

Commit 4b5fd70

Browse files
dshkolclaude
andcommitted
Add diverse article coverage: manufacturing, food services, electricity
- Manufacturing sales October 2025 (Table 16-10-0047): $71.5B, -1.0% MoM - Food services October 2025 (Table 21-10-0019): $8.5B, +0.6% MoM - Electric power generation September 2025 (Table 25-10-0015): 44.4 TWh, -6.7% MoM Expands beyond CPI to demonstrate diverse CANSIM table coverage. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 0f84041 commit 4b5fd70

4 files changed

Lines changed: 375 additions & 0 deletions

File tree

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
---
2+
title: Electric power generation down 6.7% in September 2025
3+
toc: false
4+
---
5+
6+
# Electric power generation down 6.7% in September 2025
7+
8+
<p class="release-date">Released: December 25, 2025 <span class="article-type-tag release">New Release</span></p>
9+
10+
<div class="highlights">
11+
12+
**Highlights**
13+
14+
- Electric power generation fell 6.7% to 44.4 TWh in September 2025
15+
- Year-over-year generation was down 2.4% compared with September 2024
16+
- Hydroelectric power accounted for 52% of total generation
17+
- Wind power contributed 2.9 TWh, representing 6.5% of total output
18+
19+
</div>
20+
21+
Electric power generation in Canada totalled 44.4 terawatt hours (TWh) in September 2025, down 6.7% from August. Compared with September 2024, generation was down 2.4%.
22+
23+
The seasonal decline reflects lower electricity demand as summer cooling needs subside. Generation typically peaks in winter months when heating demand is highest.
24+
25+
```js
26+
import * as Plot from "npm:@observablehq/plot";
27+
28+
// Real data from Statistics Canada Table 25-10-0015
29+
const generationData = [
30+
{date: new Date("2024-09"), value: 45.5},
31+
{date: new Date("2024-10"), value: 47.3},
32+
{date: new Date("2024-11"), value: 50.3},
33+
{date: new Date("2024-12"), value: 61.6},
34+
{date: new Date("2025-01"), value: 66.8},
35+
{date: new Date("2025-02"), value: 59.2},
36+
{date: new Date("2025-03"), value: 56.6},
37+
{date: new Date("2025-04"), value: 48.8},
38+
{date: new Date("2025-05"), value: 46.5},
39+
{date: new Date("2025-06"), value: 46.0},
40+
{date: new Date("2025-07"), value: 50.0},
41+
{date: new Date("2025-08"), value: 47.6},
42+
{date: new Date("2025-09"), value: 44.4}
43+
];
44+
45+
display(Plot.plot({
46+
title: "Electric power generation, September 2024 to September 2025",
47+
width: 680,
48+
height: 300,
49+
y: {domain: [40, 70], grid: true, label: "Terawatt hours (TWh)"},
50+
x: {type: "utc", label: null},
51+
marks: [
52+
Plot.lineY(generationData, {x: "date", y: "value", stroke: "#AF3C43", strokeWidth: 2}),
53+
Plot.dot(generationData.slice(-1), {x: "date", y: "value", fill: "#AF3C43", r: 5}),
54+
Plot.text(generationData.slice(-1), {x: "date", y: "value", text: d => d.value.toFixed(1) + " TWh", dy: -12, fill: "#AF3C43", fontWeight: 600})
55+
]
56+
}));
57+
```
58+
59+
## Generation by source
60+
61+
Hydroelectric power remained the dominant source of electricity in Canada, generating 22.9 TWh in September — accounting for 52% of total output. Canada's abundant hydro resources, particularly in Quebec, British Columbia, and Manitoba, make it one of the largest hydroelectric producers in the world.
62+
63+
Combustible fuels (natural gas and coal) contributed 11.7 TWh, while nuclear power plants generated 6.4 TWh. Wind power added 2.9 TWh to the grid.
64+
65+
```js
66+
const sources = [
67+
{source: "Hydroelectric", value: 22.9},
68+
{source: "Combustible fuels", value: 11.7},
69+
{source: "Nuclear", value: 6.4},
70+
{source: "Wind", value: 2.9},
71+
{source: "Solar", value: 0.6}
72+
];
73+
74+
display(Plot.plot({
75+
title: "Electric power generation by source, September 2025 (TWh)",
76+
width: 640,
77+
height: 260,
78+
marginLeft: 140,
79+
marginRight: 60,
80+
x: {grid: true, label: "Terawatt hours"},
81+
y: {label: null},
82+
marks: [
83+
Plot.ruleX([0]),
84+
Plot.barX(sources, {
85+
y: "source",
86+
x: "value",
87+
fill: "#AF3C43",
88+
sort: {y: "-x"}
89+
}),
90+
Plot.text(sources, {
91+
y: "source",
92+
x: 25,
93+
text: d => d.value.toFixed(1) + " TWh",
94+
textAnchor: "end",
95+
fill: "currentColor",
96+
fontSize: 11
97+
})
98+
]
99+
}));
100+
```
101+
102+
<div class="note-to-readers">
103+
104+
## Note to readers
105+
106+
Electric power generation data includes electricity produced by electric utilities, industrial establishments that generate electricity for their own use, and other electricity producers. One terawatt hour equals 1,000 gigawatt hours or 1,000,000 megawatt hours.
107+
108+
</div>
109+
110+
<div class="source-info">
111+
112+
**Source:** Statistics Canada, [Table 25-10-0015](https://www150.statcan.gc.ca/t1/tbl1/en/tv.action?pid=2510001501)
113+
**Survey:** Monthly Survey of Electric Power Generation, Receipts, Deliveries and Firm Peak Load
114+
**Reference period:** September 2025
115+
**DOI:** [https://doi.org/10.25318/2510001501-eng](https://doi.org/10.25318/2510001501-eng)
116+
117+
</div>
Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
---
2+
title: Food services sales up 0.6% in October 2025
3+
toc: false
4+
---
5+
6+
# Food services sales up 0.6% in October 2025
7+
8+
<p class="release-date">Released: December 25, 2025 <span class="article-type-tag release">New Release</span></p>
9+
10+
<div class="highlights">
11+
12+
**Highlights**
13+
14+
- Food services and drinking places sales rose 0.6% to $8.5 billion in October 2025
15+
- Year-over-year sales increased 5.2% compared with October 2024
16+
- Limited-service eating places led with $3.9 billion in sales
17+
- Full-service restaurants recorded $3.7 billion
18+
19+
</div>
20+
21+
Sales at food services and drinking places increased 0.6% to $8.5 billion in October 2025, following a 0.4% decline in September. Compared with October 2024, sales were up 5.2%.
22+
23+
The food services industry has shown steady growth throughout 2025, with sales trending upward since the start of the year.
24+
25+
```js
26+
import * as Plot from "npm:@observablehq/plot";
27+
28+
// Real data from Statistics Canada Table 21-10-0019
29+
const salesData = [
30+
{date: new Date("2024-10"), value: 8.11},
31+
{date: new Date("2024-11"), value: 8.23},
32+
{date: new Date("2024-12"), value: 8.24},
33+
{date: new Date("2025-01"), value: 8.27},
34+
{date: new Date("2025-02"), value: 8.24},
35+
{date: new Date("2025-03"), value: 8.40},
36+
{date: new Date("2025-04"), value: 8.47},
37+
{date: new Date("2025-05"), value: 8.51},
38+
{date: new Date("2025-06"), value: 8.49},
39+
{date: new Date("2025-07"), value: 8.46},
40+
{date: new Date("2025-08"), value: 8.51},
41+
{date: new Date("2025-09"), value: 8.48},
42+
{date: new Date("2025-10"), value: 8.53}
43+
];
44+
45+
display(Plot.plot({
46+
title: "Food services and drinking places sales, October 2024 to October 2025",
47+
width: 680,
48+
height: 300,
49+
y: {domain: [7.8, 8.8], grid: true, label: "Billions $"},
50+
x: {type: "utc", label: null},
51+
marks: [
52+
Plot.lineY(salesData, {x: "date", y: "value", stroke: "#AF3C43", strokeWidth: 2}),
53+
Plot.dot(salesData.slice(-1), {x: "date", y: "value", fill: "#AF3C43", r: 5}),
54+
Plot.text(salesData.slice(-1), {x: "date", y: "value", text: d => "$" + d.value.toFixed(2) + "B", dy: -12, fill: "#AF3C43", fontWeight: 600})
55+
]
56+
}));
57+
```
58+
59+
## Sales by establishment type
60+
61+
Limited-service eating places — which include fast food restaurants, coffee shops, and takeout establishments — accounted for the largest share of food services sales at $3.9 billion in October.
62+
63+
Full-service restaurants followed with $3.7 billion in sales. Special food services, including catering and food service contractors, reported $690 million, while drinking places (bars and pubs) totalled $201 million.
64+
65+
```js
66+
const breakdown = [
67+
{type: "Limited-service eating places", value: 3.94},
68+
{type: "Full-service restaurants", value: 3.70},
69+
{type: "Special food services", value: 0.69},
70+
{type: "Drinking places", value: 0.20}
71+
];
72+
73+
display(Plot.plot({
74+
title: "Food services sales by establishment type, October 2025 ($ billions)",
75+
width: 640,
76+
height: 260,
77+
marginLeft: 200,
78+
marginRight: 60,
79+
x: {grid: true, label: "Billions $"},
80+
y: {label: null},
81+
marks: [
82+
Plot.ruleX([0]),
83+
Plot.barX(breakdown, {
84+
y: "type",
85+
x: "value",
86+
fill: "#AF3C43",
87+
sort: {y: "-x"}
88+
}),
89+
Plot.text(breakdown, {
90+
y: "type",
91+
x: 4.2,
92+
text: d => "$" + d.value.toFixed(2) + "B",
93+
textAnchor: "end",
94+
fill: "currentColor",
95+
fontSize: 11
96+
})
97+
]
98+
}));
99+
```
100+
101+
<div class="note-to-readers">
102+
103+
## Note to readers
104+
105+
Food services and drinking places sales represent the total operating revenue from sales of food and beverages prepared on premises for immediate consumption. The estimates are seasonally adjusted.
106+
107+
</div>
108+
109+
<div class="source-info">
110+
111+
**Source:** Statistics Canada, [Table 21-10-0019](https://www150.statcan.gc.ca/t1/tbl1/en/tv.action?pid=2110001901)
112+
**Survey:** Monthly Survey of Food Services and Drinking Places
113+
**Reference period:** October 2025
114+
**DOI:** [https://doi.org/10.25318/2110001901-eng](https://doi.org/10.25318/2110001901-eng)
115+
116+
</div>

docs/en/index.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,27 @@ toc: false
1313

1414
## December 2025
1515

16+
**[Manufacturing sales down 1.0% in October 2025](/en/manufacturing-sales-october-2025/)**
17+
<br><span style="font-size: 0.875rem; color: #666;">Released: 2025-12-25 · Table 16-10-0047</span>
18+
19+
Manufacturing sales fell 1.0% to $71.5 billion in October 2025. Food manufacturing led all industries at $13.2 billion.
20+
21+
---
22+
23+
**[Food services sales up 0.6% in October 2025](/en/food-services-october-2025/)**
24+
<br><span style="font-size: 0.875rem; color: #666;">Released: 2025-12-25 · Table 21-10-0019</span>
25+
26+
Food services and drinking places sales rose 0.6% to $8.5 billion in October 2025, up 5.2% year over year.
27+
28+
---
29+
30+
**[Electric power generation down 6.7% in September 2025](/en/electricity-generation-september-2025/)**
31+
<br><span style="font-size: 0.875rem; color: #666;">Released: 2025-12-25 · Table 25-10-0015</span>
32+
33+
Electric power generation fell to 44.4 TWh in September. Hydroelectric power accounted for 52% of total generation.
34+
35+
---
36+
1637
**[Airline passengers up 2.2% in October 2025](/en/airline-passengers-october-2025/)**
1738
<br><span style="font-size: 0.875rem; color: #666;">Released: 2025-12-23 · Table 23-10-0079</span>
1839

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
---
2+
title: Manufacturing sales down 1.0% in October 2025
3+
toc: false
4+
---
5+
6+
# Manufacturing sales down 1.0% in October 2025
7+
8+
<p class="release-date">Released: December 25, 2025 <span class="article-type-tag release">New Release</span></p>
9+
10+
<div class="highlights">
11+
12+
**Highlights**
13+
14+
- Manufacturing sales fell 1.0% to $71.5 billion in October 2025
15+
- Sales were up 0.7% compared with October 2024
16+
- Food manufacturing led all industries at $13.2 billion
17+
- Transportation equipment sales totalled $11.5 billion
18+
19+
</div>
20+
21+
Manufacturing sales decreased 1.0% to $71.5 billion in October 2025, following a 3.5% gain in September. Year over year, sales were up 0.7% compared with October 2024.
22+
23+
The decline was broad-based, with 11 of 21 industries reporting lower sales. Transportation equipment manufacturing and primary metals were among the largest contributors to the decrease.
24+
25+
```js
26+
import * as Plot from "npm:@observablehq/plot";
27+
28+
// Real data from Statistics Canada Table 16-10-0047
29+
const salesData = [
30+
{date: new Date("2024-10"), value: 71.0},
31+
{date: new Date("2024-11"), value: 71.5},
32+
{date: new Date("2024-12"), value: 71.8},
33+
{date: new Date("2025-01"), value: 72.8},
34+
{date: new Date("2025-02"), value: 72.4},
35+
{date: new Date("2025-03"), value: 71.3},
36+
{date: new Date("2025-04"), value: 69.3},
37+
{date: new Date("2025-05"), value: 68.3},
38+
{date: new Date("2025-06"), value: 68.9},
39+
{date: new Date("2025-07"), value: 70.5},
40+
{date: new Date("2025-08"), value: 69.8},
41+
{date: new Date("2025-09"), value: 72.2},
42+
{date: new Date("2025-10"), value: 71.5}
43+
];
44+
45+
display(Plot.plot({
46+
title: "Manufacturing sales, October 2024 to October 2025",
47+
width: 680,
48+
height: 300,
49+
y: {domain: [65, 75], grid: true, label: "Billions $"},
50+
x: {type: "utc", label: null},
51+
marks: [
52+
Plot.lineY(salesData, {x: "date", y: "value", stroke: "#AF3C43", strokeWidth: 2}),
53+
Plot.dot(salesData.slice(-1), {x: "date", y: "value", fill: "#AF3C43", r: 5}),
54+
Plot.text(salesData.slice(-1), {x: "date", y: "value", text: d => "$" + d.value.toFixed(1) + "B", dy: -12, fill: "#AF3C43", fontWeight: 600})
55+
]
56+
}));
57+
```
58+
59+
## Sales by industry
60+
61+
Food manufacturing remained the largest industry, with sales of $13.2 billion in October. Transportation equipment manufacturing followed at $11.5 billion, which includes both motor vehicle assembly and parts manufacturing.
62+
63+
Primary metal manufacturing reported $6.1 billion in sales, while chemical manufacturing totalled $5.2 billion.
64+
65+
```js
66+
const industries = [
67+
{name: "Food manufacturing", value: 13.2},
68+
{name: "Transportation equipment", value: 11.5},
69+
{name: "Primary metals", value: 6.1},
70+
{name: "Chemicals", value: 5.2},
71+
{name: "Machinery", value: 4.6},
72+
{name: "Fabricated metals", value: 4.4},
73+
{name: "Plastics and rubber", value: 3.5},
74+
{name: "Motor vehicle parts", value: 3.0},
75+
{name: "Wood products", value: 2.9}
76+
];
77+
78+
display(Plot.plot({
79+
title: "Manufacturing sales by industry, October 2025 ($ billions)",
80+
width: 680,
81+
height: 340,
82+
marginLeft: 160,
83+
marginRight: 60,
84+
x: {grid: true, label: "Billions $"},
85+
y: {label: null},
86+
marks: [
87+
Plot.ruleX([0]),
88+
Plot.barX(industries, {
89+
y: "name",
90+
x: "value",
91+
fill: "#AF3C43",
92+
sort: {y: "-x"}
93+
}),
94+
Plot.text(industries, {
95+
y: "name",
96+
x: 14,
97+
text: d => "$" + d.value.toFixed(1) + "B",
98+
textAnchor: "end",
99+
fill: "currentColor",
100+
fontSize: 11
101+
})
102+
]
103+
}));
104+
```
105+
106+
<div class="note-to-readers">
107+
108+
## Note to readers
109+
110+
Manufacturing sales represent the estimated value of goods manufactured and sold by establishments in Canada. The estimates are based on a survey of manufacturing establishments and are seasonally adjusted.
111+
112+
</div>
113+
114+
<div class="source-info">
115+
116+
**Source:** Statistics Canada, [Table 16-10-0047](https://www150.statcan.gc.ca/t1/tbl1/en/tv.action?pid=1610004701)
117+
**Survey:** Monthly Survey of Manufacturing
118+
**Reference period:** October 2025
119+
**DOI:** [https://doi.org/10.25318/1610004701-eng](https://doi.org/10.25318/1610004701-eng)
120+
121+
</div>

0 commit comments

Comments
 (0)