<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>ツリー on Visualizing.JP</title>
        <link>https://visualizing.jp/en/tags/%E3%83%84%E3%83%AA%E3%83%BC/</link>
        <description>Recent content in ツリー on Visualizing.JP</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en-US</language>
        <copyright>Yuichi Yazaki</copyright>
        <lastBuildDate>Thu, 02 Oct 2025 00:00:00 +0900</lastBuildDate><atom:link href="https://visualizing.jp/en/tags/%E3%83%84%E3%83%AA%E3%83%BC/index.xml" rel="self" type="application/rss+xml" /><item>
        <title>Sunburst Chart</title>
        <link>https://visualizing.jp/en/sunburst/</link>
        <pubDate>Thu, 02 Oct 2025 00:00:00 +0900</pubDate>
        
        <guid>https://visualizing.jp/en/sunburst/</guid>
        <description>&lt;img src="https://visualizing.jp/sunburst/images/cover-Sunburst.jpg" alt="Featured image of post Sunburst Chart" /&gt;&lt;p&gt;A &lt;strong&gt;sunburst chart&lt;/strong&gt; visualizes hierarchical data in a circular layout. The root sits at the center, and each outer ring represents a deeper level in the hierarchy. It can be understood as a radial treemap or a multi-level pie chart.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://visualizing.jp/sunburst/images/cover-Sunburst.jpg&#34;
	width=&#34;890&#34;
	height=&#34;445&#34;
	srcset=&#34;https://visualizing.jp/sunburst/images/cover-Sunburst_hu_aa0bea18f56016ec.jpg 480w, https://visualizing.jp/sunburst/images/cover-Sunburst_hu_b06a96814d77cf58.jpg 1024w&#34;
	loading=&#34;lazy&#34;
	
	
		class=&#34;gallery-image&#34; 
		data-flex-grow=&#34;200&#34;
		data-flex-basis=&#34;480px&#34;
	
&gt;&lt;/p&gt;
&lt;h2 id=&#34;background&#34;&gt;Background
&lt;/h2&gt;&lt;p&gt;Sunburst charts developed from the broader history of compact hierarchy visualization. Their lineage includes early concentric classification diagrams, financial diagrams, and information-visualization research.&lt;/p&gt;
&lt;p&gt;Important historical threads include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Late nineteenth century&lt;/strong&gt;: Lawrence W. Fike&amp;rsquo;s zoological concentric chart, which arranged biological taxonomy in rings.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;1921&lt;/strong&gt;: a &amp;ldquo;sunburst diagram&amp;rdquo; in &lt;em&gt;Mechanical Engineering&lt;/em&gt; showing U.S. federal spending.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Around 2000&lt;/strong&gt;: John Stasko and Georgia Tech research introduced radial space-filling views for exploring file systems and other hierarchies.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The form became widely used with web visualization, especially through D3.js and Mike Bostock&amp;rsquo;s &lt;code&gt;partition&lt;/code&gt; layout.&lt;/p&gt;
&lt;h2 id=&#34;data-structure&#34;&gt;Data Structure
&lt;/h2&gt;&lt;p&gt;Sunburst charts require tree-structured data.&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Element&lt;/th&gt;
          &lt;th&gt;Meaning&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;Root node&lt;/td&gt;
          &lt;td&gt;Top-level category&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Child node&lt;/td&gt;
          &lt;td&gt;Subcategory&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Arc&lt;/td&gt;
          &lt;td&gt;Visual representation of a node&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Angle or area&lt;/td&gt;
          &lt;td&gt;Quantitative value&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;purpose&#34;&gt;Purpose
&lt;/h2&gt;&lt;p&gt;The goal is to show how parts belong to a whole across multiple levels. Sunburst charts are useful for product categories, file systems, organizational structures, website navigation, and hierarchical budgets.&lt;/p&gt;
&lt;h2 id=&#34;strengths&#34;&gt;Strengths
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;Shows hierarchy depth through radius.&lt;/li&gt;
&lt;li&gt;Provides a compact overview.&lt;/li&gt;
&lt;li&gt;Makes parent-child relationships visually intuitive.&lt;/li&gt;
&lt;li&gt;Works well with interaction, such as click-to-zoom.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;limitations&#34;&gt;Limitations
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;Deep hierarchies make the outer rings crowded.&lt;/li&gt;
&lt;li&gt;Exact comparison is difficult because values are encoded by angles and arcs.&lt;/li&gt;
&lt;li&gt;Node ordering can affect interpretation.&lt;/li&gt;
&lt;li&gt;User studies do not always favor sunburst charts for precise tasks.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;how-to-read-it&#34;&gt;How to Read It
&lt;/h2&gt;&lt;p&gt;The center is the highest-level category. Moving outward means moving down the hierarchy. Arc length usually represents value, and color separates categories or branches.&lt;/p&gt;
&lt;h2 id=&#34;design-notes&#34;&gt;Design Notes
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;Use related colors for parent and child nodes.&lt;/li&gt;
&lt;li&gt;Use tooltips or hover labels for outer rings.&lt;/li&gt;
&lt;li&gt;Keep the hierarchy shallow when possible.&lt;/li&gt;
&lt;li&gt;Use interaction when detailed comparison matters.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;alternatives&#34;&gt;Alternatives
&lt;/h2&gt;&lt;table&gt;
  &lt;thead&gt;
      &lt;tr&gt;
          &lt;th&gt;Chart&lt;/th&gt;
          &lt;th&gt;Feature&lt;/th&gt;
      &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
      &lt;tr&gt;
          &lt;td&gt;Treemap&lt;/td&gt;
          &lt;td&gt;Rectangular space-filling hierarchy&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Circle packing&lt;/td&gt;
          &lt;td&gt;Nested circles for hierarchy&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
          &lt;td&gt;Flare chart&lt;/td&gt;
          &lt;td&gt;Radial node-link tree&lt;/td&gt;
      &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&#34;summary&#34;&gt;Summary
&lt;/h2&gt;&lt;p&gt;The sunburst chart is a visually strong method for exploring hierarchical data. It is best used when the shape of the hierarchy matters more than exact value comparison.&lt;/p&gt;
&lt;h2 id=&#34;references&#34;&gt;References
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://observablehq.com/@d3/sunburst&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Observable: Sunburst chart&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/d3/d3-hierarchy#partition&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;D3.js API Reference: Partition Layout&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://en.wikipedia.org/wiki/Sunburst_chart&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Wikipedia: Sunburst chart&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://sites.cc.gatech.edu/gvu/ii/sunburst/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Georgia Tech SunBurst Page&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description>
        </item>
        
    </channel>
</rss>
