chartSplitsByGender100Percent = StackedBarChart(splitsByGender, {
x: (d) => d.genderPercentage,
y: (d) => d.locale,
z: (d) => d.genderKey,
xLabel: "% of utterances by gender",
yLabel: "language-locale",
yDomain: d3.groupSort(
splitsByGender,
(D) => d3.sum(D, (d) => d.utterances),
(d) => d.locale
),
zDomain: genders,
colors: d3.schemeTableau10
})