{% extends "base.html" %} {% set active_page = "sources" %} {% block title %}Cross-Source Comparison — IETF Draft Analyzer{% endblock %} {% block extra_head %}{% endblock %} {% block content %}

Cross-Source Comparison

Comparing drafts across {{ data.summary | length }} standards bodies on rating dimensions, category focus, and output volume.

Standards Body Summary

Overview of each source's contribution to the AI/agent standards landscape.

{% for row in data.summary | sort(attribute='drafts', reverse=True) %} {% endfor %}
Source Drafts Rated Authors Ideas Avg Score Top Category
{{ row.source }} {{ row.drafts }} {{ row.rated }} {{ row.authors }} {{ row.ideas }} {% if row.avg_score >= 3.5 %} {{ row.avg_score }} {% elif row.avg_score >= 2.5 %} {{ row.avg_score }} {% else %} {{ row.avg_score }} {% endif %} {{ row.top_category }}

Rating Dimensions by Source

Average rating across five dimensions for each standards body. Larger shapes indicate higher average ratings.

Category Distribution by Source

What topics each standards body focuses on. Stacked bars show the relative emphasis per source.

Sources x Categories Heatmap

Draft counts per source-category pair. Darker cells = more drafts. Shows where each body concentrates its work.

Shared Categories

Categories covered by multiple standards bodies.

{% for cat in data.shared_categories %} {{ cat }} {% endfor %}

Unique Categories by Source

Categories only covered by a single standards body.

{% for src, cats in data.unique_categories.items() %} {% if cats %}
{{ src }}
{% for cat in cats %} {{ cat }} {% endfor %}
{% endif %} {% endfor %}
{% endblock %} {% block extra_scripts %} {% endblock %}