From 09978edd0e3c37f3766a60cb99fc2a3cfffc5794 Mon Sep 17 00:00:00 2001 From: Shahan Nedadahandeh Date: Tue, 31 Jan 2023 00:36:27 -0500 Subject: [PATCH] Fixed incorrect data (#153) Co-authored-by: shahanneda Co-authored-by: e26chiu Reviewed-on: https://git.csclub.uwaterloo.ca/www/cs-2022-class-profile/pulls/153 Reviewed-by: Mark Chiu --- data/academics.ts | 10 ++++++++-- data/coop.ts | 34 +++++++++++++++++++++++++------- data/demographics.ts | 2 +- data/post-grad.ts | 46 ++++++++++++++++++++++++++++---------------- 4 files changed, 65 insertions(+), 27 deletions(-) diff --git a/data/academics.ts b/data/academics.ts index 514493a..d89fbaa 100644 --- a/data/academics.ts +++ b/data/academics.ts @@ -883,6 +883,12 @@ export const A12 = [ ]; export const A12i = [ + { + category: "CS145", + "1-4": 1, + "5-7": 10, + "8-10": 23, + }, { category: "CS146", "1-4": 1, @@ -1068,7 +1074,7 @@ export const A14 = [ }, { text: "Carmen Bruni", - value: 10, + value: 9, }, { text: "Michael Wallace", @@ -1478,7 +1484,7 @@ export const A19 = [ export const A19i = [ { category: "0", - value: 15, + value: 56, }, { category: "1", diff --git a/data/coop.ts b/data/coop.ts index d28f5d2..6e6ddad 100644 --- a/data/coop.ts +++ b/data/coop.ts @@ -10,17 +10,29 @@ export const C1 = [ ]; export const C2 = [ + { + text: "Pacific NW USA", + value: 3, + }, + { + text: "West Coast CAN", + value: 12, + }, + { + text: "Remote", + value: 2, + }, + { + text: "East Coast Canada", + value: 1, + }, { text: "Toronto", - value: 32, + value: 34, }, { text: "California", - value: 26, - }, - { - text: "West CA", - value: 12, + value: 25, }, { text: "East USA", @@ -28,7 +40,15 @@ export const C2 = [ }, { text: "Waterloo", - value: 9, + value: 10, + }, + { + text: "Chicago", + value: 1, + }, + { + text: "Tokyo", + value: 1, }, ]; diff --git a/data/demographics.ts b/data/demographics.ts index 6f63f4a..fe8d524 100644 --- a/data/demographics.ts +++ b/data/demographics.ts @@ -199,7 +199,7 @@ export const D7 = [ }, { text: "GTA / Toronto", - value: 1, + value: 58, }, { text: "United Arab Emirates", diff --git a/data/post-grad.ts b/data/post-grad.ts index e320a51..78ca0d3 100644 --- a/data/post-grad.ts +++ b/data/post-grad.ts @@ -190,35 +190,39 @@ export const P8 = [ }, { text: "Finance", - value: 1, + value: 8, }, { text: "Cloud Computing", - value: 5, - }, - { - text: "Artificial Intelligence", - value: 3, - }, - { - text: "Robotics", - value: 1, - }, - { - text: "Data Science", value: 6, }, { - text: "Research", + text: "Artificial Intelligence", + value: 5, + }, + { + text: "Operating System", + value: 2, + }, + { + text: "Robotics", value: 3, }, { - text: "Security", - value: 1, + text: "Data Science", + value: 10, + }, + { + text: "Research", + value: 6, + }, + { + text: "Cybersecurity", + value: 2, }, { text: "Hardware", - value: 2, + value: 4, }, { text: "Mobile Development", @@ -228,4 +232,12 @@ export const P8 = [ text: "Computer Networking", value: 2, }, + { + text: "Programming Languages", + value: 5, + }, + { + text: "Compilers", + value: 1, + }, ];