import { D1, D2, D3, D4, D5, D6, D7, D8, D9, D10, D11, } from "data/demographics"; import { pageRoutes } from "data/routes"; import React from "react"; import { barGraphProps, DefaultProp, pieChartProps, barGraphMargin, barGraphWidth, wordCloudWidth, } from "utils/defaultProps"; import { useWindowDimensions } from "utils/getWindowDimensions"; import { useIsMobile } from "utils/isMobile"; import { BarGraphVertical, BarGraphHorizontal } from "@/components/BarGraph"; import { BodyLink } from "@/components/BlankLink"; import { BottomNav } from "@/components/BottomNav"; import { ComponentWrapper } from "@/components/ComponentWrapper"; import { Header } from "@/components/Header"; import { PieChart } from "@/components/PieChart"; import { SectionHeader } from "@/components/SectionHeader"; import { Title } from "@/components/Title"; import { WordCloud } from "@/components/WordCloud"; import styles from "./samplePage.module.css"; export default function Demographics() { const pageWidth = useWindowDimensions().width; const isMobile = useIsMobile(); return (
Demographics
Unsurprisingly, most respondents were men at around 69%. About 31% of students identified as women or gender non-conforming. This statistic has been steadily increasing throughout the years, as seen{" "} here. {" "} According to the same source, in 2017/2018 (when many 2022 graduates were admitted), around 24% of CS admits, 34% of CFM admits, and 41% of CS/BBA admits were women or queer. Underrepresented gender identities is a popular topic in the tech community, and so it is promising that a more diverse range of people are becoming interested in CS! Take a look at clubs such as{" "} WiCS and Tech+ that address these issues and work to provide an inclusive environment in UW's tech scene.

} align="right" noBackground >
The largest racial group was East Asian at about 64%, followed by White at 17%, and South Asian at 12%. Note that certain respondents have chosen two or more of the listed categories. We have counted each of them as a separate entry rather than a category itself. Check out clubs such as Tech+, which supports ethnic minorities in tech!

} align="left" noBackground >
Over 27% of respondents identified as LGBTQ+. UW has plenty of groups that support the LGBTQ+ community that can be found {" "} here . Clubs such as{" "} Tech+ and oSTEM support queer and trans students in tech and STEM environments!

} align="right" noBackground >
Most families made more than the average family income in Canada in 2020 ( $104,350 ) The range of 51k to 200k was the most common among families. To sustain a first-year tuition fee that can hover between $8,000 to $55,000, it would make sense for many families to rely on other sources of financial support.

} align="right" >
); }