Why Analyze with wiiiv
Writing a carbon emissions analysis report starts with collecting data. Download CSVs from Our World in Data, preprocess with pandas, chart with matplotlib, build a report with python-docx — you end up writing code like a developer, not an analyst.
With wiiiv, just say "Collect basic statistics on global carbon emission trends." The AI searches the web, gathers data, generates and runs Python code to show charts and tables, and even creates a final report as a docx and sends it by email.
In the earlier Portfolio Analysis Guide, we opened a pre-prepared CSV file to analyze. This guide starts from data collection — no files needed, just name a topic and the analysis begins.
Data: Collected via Web Search
Unlike portfolio analysis, there are no files to prepare in advance. wiiiv searches the web, collects the data, and organizes it in raw.md.
The structure of the collected data is shown below.
| country | year | iso_code | co2 (Mt) |
|---|---|---|---|
| World | 1990 | — | 22,732.1 |
| World | 1991 | — | 23,205.6 |
| World | 1992 | — | 22,520.4 |
| ... 34 rows ... | |||
| World | 2021 | — | 36,866.9 |
| World | 2022 | — | 37,527.8 |
| World | 2023 | — | 38,094.0 |
Source: Our World in Data — Annual CO₂ emissions
Full Analysis Flow: 10 Turns
Below is the actual conversation in order. At each turn, the user makes a request and the AI searches the web or generates and runs Python code, presenting results as tables and charts.
Collection
& Enrichment
Line Chart
Bar Chart
Emissions
& Impact
Comparison
(docx)
Review
Delivery

| Item | Value |
|---|---|
| Row count | 34 |
| Min | 22,520.4 |
| Max | 38,094.0 |
| Mean | 30,181.4 |
| Median | 31,046.7 |
| Std Dev | 5,477.07 |
| Start Year | 1990 |
| End Year | 2023 |

However, for enrichment it would be better to also look at year-over-year changes and the last 5 years together.
| Last 5 Years | CO₂ (Mt) | YoY Change | Change Rate |
|---|---|---|---|
| 2019 | 37,086.6 | +352.6 | +0.96% |
| 2020 | 35,158.2 | -1,928.3 | -5.20% |
| 2021 | 36,866.9 | +1,708.6 | +4.86% |
| 2022 | 37,527.8 | +660.9 | +1.79% |
| 2023 | 38,094.0 | +566.3 | +1.51% |


During this analysis session, wiiiv was unable to handle two requests.
• Sector-level data collection — raw.csv did not contain sector-level columns (coal, oil, gas, etc.), making sector classification impossible.
• Sector pie chart — Chart generation failed for the same reason.
wiiiv does not fabricate what it cannot do — it tells you honestly. If you need sector-level analysis, mount a separate data source that includes that data.

Based on 2023 data, unit is tCO₂/person.
| Country | CO₂ (tons) | Population | Per Capita (tCO₂) |
|---|---|---|---|
| USA | 4,918,406,700 | 343,477,330 | 14.32 |
| Russia | 1,733,134,600 | 145,440,502 | 11.92 |
| China | 12,172,008,000 | 1,422,584,930 | 8.56 |
| Japan | 986,910,140 | 124,370,947 | 7.94 |
| EU (27) | 2,484,996,600 | 450,657,572 | 5.51 |
| World Average | 38,094,040,000 | 8,091,734,933 | 4.71 |
| India | 3,062,756,400 | 1,438,069,597 | 2.13 |

5 Key Causes
5 Environmental Impacts

| Country / Region | Target | 2024–2025 Key Policies | Outlook |
|---|---|---|---|
| EU | 2050 Climate Neutrality | Recommended 90% net reduction by 2040, 2030–2050 pathway refinement | Most advanced institutionalization |
| USA | 2050 Net Zero goal | EPA reduction programs, federal-state hybrid implementation | Highly influenced by politics |
| China | 2030 Peak / 2060 Carbon Neutrality | Energy conservation & carbon reduction plan, ETS refinement | State-led transition continues |
| Japan | 2050 Carbon Neutrality | GX, growth-oriented carbon pricing, 2035/2040 NDC enhancement | Industrial transition & tech investment focus |
| South Korea | 2050 Carbon Neutrality | K-ETS 4th allocation plan, 2035 NDC, K-GX initiative | Refining implementation instruments |
Key Takeaways
• Policy focus is on emission reductions in the power, industry, transportation, and buildings sectors.
• The EU, China, and Japan are advancing institutional refinement quickly, while the USA is heavily influenced by political factors.
• South Korea's priority is refining implementation instruments and supporting industrial transition.

1990–2023 global carbon emission trends, key causes and impacts,
future outlook and major country policy comparison
2. Global Carbon Emission Trends and Basic Statistics
3. Key Causes of Carbon Emission Growth
4. Environmental Impact Analysis
5. Future Outlook and Carbon Neutrality Policy Comparison
6. Conclusions and Implications

| Verification Item | Result |
|---|---|
| HAS_DDRAW | True |
| IMG_REL_COUNT | 1 |
| TABLE_COUNT | 2 |
| HEADING1_COUNT | 6 |
| SOURCE_PRESENT | True |
| CHART1_PRESENT (Trend) | True |
| CHART2_PRESENT (Country) | False |

Guard: MailGuard · Risk: HAZARDOUS
Send email: user@example.com (Carbon emissions analysis report delivery)
via=gmail_api
Usage Tips
How is this different from portfolio analysis?
Portfolio analysis starts by opening a pre-prepared CSV file. Carbon emissions analysis adds a data collection step via web search. wiiiv handles both with the same conversational flow.
When data is insufficient
In this analysis, sector-level data (coal, oil, gas breakdown) was not included in raw.csv, so it failed. In such cases, you can place a CSV containing the required data directly in the mount folder to enable sector-level analysis.
Why MailGuard appears
Actions that affect external systems, like sending email, trigger wiiiv's HazardGuard to request confirmation. The action only executes after the user approves with "Yes." It is a safety mechanism to prevent accidental sends.
Other topics you can analyze the same way
GDP trends, population changes, trade balance, energy consumption, unemployment rates — any topic with publicly available time-series data can be analyzed with the same pattern. Just start with "Collect basic statistics on XX trends."
Refining your report
"Change the chart colors," "Shorten the summary to one paragraph," "Create an English version too" — you can continue making revision requests through conversation even after the report is generated.