{% extends "base.html" %} {% set active_page = "trends" %} {% block title %}Trends — IETF Draft Analyzer{% endblock %} {% block extra_head %}{% endblock %} {% block content %}

Temporal Evolution

How the AI standards landscape is changing over time. Submission volume, rating trends, category shifts, and the safety-vs-capability balance.

Months Tracked
{{ data.months | length }}
Total Submissions
{{ data.monthly_table | sum(attribute='total') }}
Fastest Growing
{{ data.stats.fastest_growing or 'N/A' }}
Newest Category
{{ data.stats.newest_active or 'N/A' }}

Monthly Draft Submissions by Source

Stacked area chart showing submission volume over time, broken down by source (IETF, W3C, etc.).

Monthly Average Ratings

Are drafts getting more mature? More novel? Track the five rating dimensions over time.

Safety vs Capability Ratio

Ratio of safety-related drafts (Security, Privacy, Trust, Safety, Governance) to capability drafts (Agents, Infrastructure, MCP, etc.). Higher = more safety focus.

Category Distribution Over Time

Stacked area showing which topics are growing or shrinking. Top 8 categories shown.

Cumulative Idea Count

Total number of unique technical ideas extracted from drafts over time.

Monthly New Authors

First-time contributors entering the AI standards space each month.

Monthly Breakdown

{% for row in data.monthly_table %} {% endfor %}
Month Total Avg Score Trend
{{ row.month }} {{ row.total }} {% if row.avg_score >= 3.0 %} {{ row.avg_score }} {% elif row.avg_score >= 2.0 %} {{ row.avg_score }} {% else %} {{ row.avg_score }} {% endif %} {% if loop.index > 1 %} {% set prev = data.monthly_table[loop.index0 - 1].total %} {% if row.total > prev %} ↑ +{{ row.total - prev }} {% elif row.total < prev %} ↓ {{ row.total - prev }} {% else %} → 0 {% endif %} {% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}