I'm trying to visualize some data as a pie chart. My data is structured as a list of (Season, Int)
tuples, where the integer represents the number of items that are available for a particular season.
The difficulty is that one item can be in multiple seasons: an item can be valid for both fall and winter.
Is it possible to display this information as a pie chart? It's not clear what the denominator should be when calculating percentages, because the sum of the counts can be greater than the total item count.
As an example to make it clearer, let's say I have 10 items. A valid dataset might be:
- (Fall, 4)
- (Winter, 5)
- (Summer, 3)
- (Spring, 10)
The total number of items represented here are 22, but there are truly only 10 items.
Calculating the fall percentage as 4 / 10
doesn't really make sense, but neither does 4 / 22
.
Is this data just not compatible with pie charts (or other percentage-oriented charts)?
4 / 22
percentage does not make sense? It is the percentage of "occurences" of items for the Fall season...Edit: whether it makes sense or not all depends on what "items availability" for a season mean, and what is being represented. Say, if the purpose is to compare number of representations of theater plays per season, 4 / 22 would make sense... – Mehdi[(Season, Item)]
– Bill