Taxonomy Distribution Pie Chart
Copy this iframe to your website:
1 | |
Run Taxonomy Distribution Pie Chart in Fullscreen
An interactive pie chart visualizing how 200 concepts are distributed across 8 taxonomy categories in a learning graph, helping assess balanced coverage and appropriate categorization.
Overview
This pie chart displays the percentage breakdown of concepts across taxonomy categories in a 200-concept learning graph. The rainbow color gradient (red through purple) visually distinguishes each category, while percentage labels show the exact distribution.
The visualization helps educators evaluate whether their learning graph provides balanced coverage across different concept types and complexity levels.
Features
Interactive Elements
- Hover tooltips - Display concept count, percentage, and category description
- Data labels - Percentage values displayed directly on chart segments
- Click legend - Toggle categories on/off by clicking legend items
- Hover effects - Segments expand slightly on hover for emphasis
- Smooth animations - Animated rotation and scaling on page load
Visual Design
- Rainbow gradient - Color progression from red (foundational) to purple (advanced)
- Side legend - Right-side legend with full category labels and percentages
- Quality indicators - Three green checkmarks showing health metrics
- Category cards - Detailed descriptions for each taxonomy category
- Badge annotations - Largest and smallest categories highlighted
Interpretation Guide
Taxonomy Categories
FOUND (Foundational) - 9% - Entry-level concepts requiring no prerequisites - Examples: "Introduction to Learning Graphs", "What is a Concept?" - Target range: 5-10%
BASIC (Basic Principles) - 21% - Core concepts that build directly on foundations - Examples: "DAG Structure", "Prerequisite Relationships" - Target range: 15-25%
ARCH (Architecture) - 19% - Structural and design concepts - Examples: "Graph Quality Metrics", "Taxonomy Design" - Target range: 15-25%
IMPL (Implementation) - 17.5% - Practical application and implementation concepts - Examples: "CSV File Format", "JSON Conversion" - Target range: 12-20%
DATA (Data Management) - 14% - Data structures, formats, and management - Examples: "Data Validation", "File Formats" - Target range: 10-18%
TOOL (Tools) - 11% - Software tools and development utilities - Examples: "MkDocs", "Python Scripts", "Git" - Target range: 8-15%
QUAL (Quality) - 6% - Quality assurance and validation - Examples: "Quality Metrics", "Validation Rules" - Target range: 5-10%
ADV (Advanced) - 2.5% - Advanced topics and cutting-edge concepts - Examples: "Research Applications", "Future Directions" - Target range: 2-8%
Quality Indicators
No category exceeds 30%: Ensures no single taxonomy dominates, preventing curriculum imbalance.
8 categories represented: Comprehensive coverage across all concept types from foundational to advanced.
Top 3 categories = 59%: BASIC, ARCH, and IMPL represent the core curriculum focus while maintaining breadth.
Analysis
Balanced Distribution: The largest category (BASIC at 21%) is within healthy range, ensuring no single taxonomy dominates the learning graph.
Comprehensive Coverage: All 8 taxonomy categories are represented, providing diverse learning pathways through foundational, intermediate, and advanced concepts.
Appropriate Specialization: Advanced concepts comprise 2.5% of the graph, suggesting appropriate depth without overwhelming learners.
Quality Assessment: The top 3 categories (BASIC, ARCH, IMPL) represent 59% of concepts, indicating strong focus on core curriculum while maintaining breadth.
Healthy Distribution Characteristics
- Gradual progression: Higher percentages for basic/intermediate, lower for advanced
- No gaps: All taxonomy categories have at least some concepts
- Balanced core: Top 3 categories represent 50-70% of total
- Limited dominance: No single category exceeds 30%
- Appropriate specialization: Advanced categories comprise 5-15% combined
Customization Guide
Adding Your Own Data
Replace the data arrays in main.html with your taxonomy distribution:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
Calculating Distribution from Learning Graph
Use this Python code to generate taxonomy distribution:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
Customizing Colors
Modify the background colors for different taxonomy categories:
1 2 3 4 5 6 7 8 9 10 | |
Adding/Removing Categories
To add a new category:
- Add to
labelsarray:'NEWCAT: X concepts (Y%)' - Add count to
dataarray - Add color to
backgroundColorandborderColorarrays - Update category descriptions in tooltip callbacks
- Add detail card in HTML
Updating Quality Metrics
Update the quality indicator calculations in the HTML based on your data:
1 2 3 4 | |
Change to warning if condition not met:
1 2 3 4 | |
Technical Details
- Library: Chart.js 4.4.0
- Plugins: chartjs-plugin-datalabels 2.x (for percentage labels on slices)
- Browser Compatibility: All modern browsers (Chrome, Firefox, Safari, Edge)
- Dependencies: Chart.js and Data Labels Plugin (both loaded from CDN)
- Responsive: Yes, with 1.2:1 aspect ratio
- Total concepts: 200 across 8 categories
Analysis Metrics
Balance Score
Calculate a balance score to assess distribution health:
1 2 3 4 5 6 7 8 9 10 11 12 | |
Coverage Assessment
Check for gaps and dominance:
1 2 3 4 5 6 7 8 9 10 11 12 | |
Progression Analysis
Verify appropriate progression from basic to advanced:
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
Use Cases
This visualization is useful for:
- Curriculum balance assessment - Ensure even coverage across concept types
- Taxonomy validation - Verify concepts are categorized appropriately
- Gap identification - Find underrepresented taxonomy categories
- Complexity distribution - Assess ratio of basic to advanced concepts
- Comparative analysis - Compare taxonomy distributions across multiple graphs
- Stakeholder communication - Visually communicate curriculum scope
- Planning - Guide development of new concepts to fill gaps
Common Distribution Patterns
Healthy Pattern: Gradual Taper
- FOUND: 5-10%
- BASIC: 20-25%
- Intermediate categories: 15-20% each
- Advanced: 2-8%
- Assessment: Balanced, appropriate complexity progression
Warning Pattern: Top-Heavy
- FOUND: 25%
- BASIC: 30%
- Intermediate: 10% each
- Advanced: <5%
- Issue: Concepts may be too granular or lack depth
Warning Pattern: Bottom-Heavy
- FOUND: <5%
- BASIC: <10%
- Intermediate: 15% each
- Advanced: 25%
- Issue: May be too complex, lacking foundational support
Warning Pattern: Single Dominant Category
- One category: >35%
- Others: <10% each
- Issue: Curriculum imbalance, consider reorganizing taxonomy
Lesson Plan
Learning Objectives
After completing this lesson, students will be able to:
- Interpret (Understand) taxonomy distribution patterns in learning graphs
- Analyze (Analyze) whether concept categorization is balanced across domains
- Evaluate (Evaluate) the appropriateness of taxonomy category percentages
- Apply (Apply) Chart.js pie chart techniques to visualize categorical data
- Create (Create) custom taxonomy schemes for new subject domains
Target Audience
- Primary: Instructional designers, curriculum developers
- Secondary: Data visualization specialists, educational researchers
- Level: Graduate education or professional development
- Prerequisites: Basic statistics, familiarity with learning graphs
Activities
Activity 1: Distribution Analysis (20 minutes)
- Identify the three largest taxonomy categories in the pie chart
- Calculate what percentage of concepts fall outside the top 3 categories
- Determine if any single category exceeds 30% (potential over-concentration)
- Compare the largest and smallest categories - what's the ratio?
Activity 2: Balance Evaluation (25 minutes)
Using taxonomic distribution best practices:
- Assess whether the distribution indicates good coverage across domains
- Identify any categories that seem under-represented (<3%)
- Evaluate if any categories could be merged due to semantic overlap
- Propose an "ideal" distribution for a well-balanced course (percentages for each category)
Activity 3: Interactive Chart Modification (30 minutes)
- Modify the Chart.js data array to represent your own course's concept distribution
- Add a new taxonomy category and update colors appropriately
- Implement hover tooltips showing concept count + percentage
- Add a legend positioned to the right of the chart
Activity 4: Create Custom Taxonomy (45 minutes)
For a new course domain (e.g., "Introduction to Cybersecurity"):
- Design 8-12 taxonomy categories that span the subject comprehensively
- Assign 3-letter abbreviation codes to each category
- Create a balanced target distribution (sum to 100%)
- Generate a pie chart visualization with your taxonomy and target percentages
- Write 2-3 sentences explaining your category choices
Assessment
Formative Assessment: - During Activity 1: Can students correctly calculate percentages from visual data? - During Activity 4: Do custom taxonomy categories cover the domain comprehensively?
Summative Assessment:
Design and visualize a complete taxonomy system:
- Taxonomy Design (30 points): Create 10-12 categories for a specified subject
- Categories are mutually exclusive
- Complete domain coverage
-
Clear, descriptive labels
-
Distribution Planning (25 points): Assign target percentages summing to 100%
- No category exceeds 30%
-
Justification for distribution choices
-
Visualization (25 points): Create functional Chart.js pie chart
- Accurate data representation
- Appropriate color scheme
-
Readable labels and legend
-
Documentation (20 points): Write taxonomy usage guidelines
- When to use each category
- Example concepts for each
- Decision criteria for edge cases
Success Criteria: - Taxonomy categories are comprehensive and non-overlapping - Distribution is balanced without over-concentration - Visualization clearly communicates proportions - Documentation enables consistent categorization