Skip to content

Commit 88fcff0

Browse files
committed
descriptions
1 parent af74654 commit 88fcff0

5 files changed

Lines changed: 55 additions & 0 deletions

File tree

website/content/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ A powerful, lightweight visualization for COM-480 built with Hugo, Tailwind CSS.
2121
- [Languages](visualizations/languages/): see the distribution of books by language as a waffle chart.
2222
- [Publishers](visualizations/publishers/): compare gender representation across major publishers.
2323
- [Library](visualizations/library/): browse and filter books on an interactive shelf.
24+
25+
{{< team-profile >}}

website/content/visualizations/gender-explorator/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ tags: ["d3", "visualization"]
55
layout: "simple"
66
---
77

8+
This view explores gender disparity across book genres and author nationalities by showing whether each category leans more toward men-led or women-led authorship.
9+
10+
Change the sorting and number of rows to highlight the largest categories, the strongest disparities, or the categories closest to parity.
11+
12+
Move the row slider and change the sorting mode to make different stories surface: big categories first, sharpest gaps next, and quieter near-parity cases when you want a closer look.
13+
814
<!-- prettier-ignore-start -->
915
{{< d3 >}}
1016
const root = d3.select(container)

website/content/visualizations/gender-explorer/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ tags: ["d3", "visualization"]
55
layout: "simple"
66
---
77

8+
This filtered comparison lets you select either book genres or author nationalities, then compare the total number of books attributed to male, female, and other authorship groups.
9+
10+
Use the filters to focus on specific categories and see how the gender distribution changes across different slices of the Goodreads dataset.
11+
12+
Try switching between genres and nationalities, then raise the minimum-books slider to let the small categories step aside and reveal the bigger patterns.
13+
814
<!-- prettier-ignore-start -->
915
{{< d3 >}}
1016
const comparisonRoot = d3.select(container)

website/content/visualizations/gender-genre-scatter/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ tags: ["d3", "visualization"]
55
layout: "simple"
66
---
77

8+
This scatterplot compares average book price and average rating for male and non-male author groups across genres or author nationalities.
9+
10+
Each point summarizes one category, making it easier to see whether rating and price patterns differ between gender groups for the same part of the dataset.
11+
12+
Use the group selector and the minimum-books slider to clean up the cloud of points, then hover around to spot the categories that behave a little differently from the rest.
13+
814
<!-- prettier-ignore-start -->
915
{{< d3 >}}
1016
const scatterRoot = d3.select(container)
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{{ $author := site.Language.Params.Author }}
2+
{{ $lazy := site.Params.enableImageLazyLoading | default true }}
3+
4+
<section class="not-prose mt-12 flex flex-col items-center text-center">
5+
{{ with $author.image }}
6+
{{ with resources.Get . }}
7+
{{ $teamImage := .Fill "96x96 Center" }}
8+
<img
9+
src="{{ $teamImage.RelPermalink }}"
10+
width="96"
11+
height="96"
12+
alt="{{ $author.name | default site.Title }}"
13+
class="mb-3 rounded-full"
14+
style="width: 96px; height: 96px; object-fit: cover;"
15+
{{ with $lazy }}loading="lazy" decoding="async"{{ end }}
16+
/>
17+
{{ end }}
18+
{{ end }}
19+
<h2 class="mb-1 text-2xl font-bold text-neutral-800 dark:text-neutral-100">
20+
{{ $author.name | default site.Title }}
21+
</h2>
22+
{{ with $author.headline }}
23+
<p class="mb-1 text-base text-neutral-500 dark:text-neutral-400">
24+
{{ . | markdownify | emojify }}
25+
</p>
26+
{{ end }}
27+
{{ with $author.bio }}
28+
<p class="mb-2 max-w-xl text-sm text-neutral-600 dark:text-neutral-300">
29+
{{ . | markdownify | emojify }}
30+
</p>
31+
{{ end }}
32+
<div class="text-xl">
33+
{{ partialCached "author-links.html" . }}
34+
</div>
35+
</section>

0 commit comments

Comments
 (0)