From 93d0a69d7845f0c323778973b52515528c74b049 Mon Sep 17 00:00:00 2001 From: shahanneda Date: Thu, 26 Jan 2023 22:21:37 -0500 Subject: [PATCH 1/2] Fixed incorrect data --- data/academics.ts | 12 +++++++++--- data/coop.ts | 32 ++++++++++++++++++++++++++------ data/demographics.ts | 2 +- data/post-grad.ts | 8 ++++++++ 4 files changed, 44 insertions(+), 10 deletions(-) diff --git a/data/academics.ts b/data/academics.ts index 514493a..4b9b808 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: 11, }, { text: "Michael Wallace", @@ -1076,7 +1082,7 @@ export const A14 = [ }, { text: "Lesley Istead", - value: 11, + value: 10, }, { text: "Eric Blais", @@ -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 11f1741..12ce17e 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", @@ -30,6 +42,14 @@ export const C2 = [ text: "Waterloo", value: 9, }, + { + text: "Chicago", + value: 1, + }, + { + text: "Tokyo", + value: 1, + }, ]; export const C3 = [ diff --git a/data/demographics.ts b/data/demographics.ts index f0f1160..ac09c37 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..d771e43 100644 --- a/data/post-grad.ts +++ b/data/post-grad.ts @@ -228,4 +228,12 @@ export const P8 = [ text: "Computer Networking", value: 2, }, + { + text: "Programming Languages", + value: 2, + }, + { + text: "Compilers", + value: 1, + }, ]; -- 2.39.2 From fbb1bb4bd90dda16e62c90592467ec82fc120df3 Mon Sep 17 00:00:00 2001 From: e26chiu Date: Sat, 28 Jan 2023 11:26:33 -0500 Subject: [PATCH 2/2] Correct data --- data/academics.ts | 4 ++-- data/coop.ts | 2 +- data/post-grad.ts | 40 ++++++++++++++++++++++------------------ 3 files changed, 25 insertions(+), 21 deletions(-) diff --git a/data/academics.ts b/data/academics.ts index 4b9b808..d89fbaa 100644 --- a/data/academics.ts +++ b/data/academics.ts @@ -1074,7 +1074,7 @@ export const A14 = [ }, { text: "Carmen Bruni", - value: 11, + value: 9, }, { text: "Michael Wallace", @@ -1082,7 +1082,7 @@ export const A14 = [ }, { text: "Lesley Istead", - value: 10, + value: 11, }, { text: "Eric Blais", diff --git a/data/coop.ts b/data/coop.ts index 12ce17e..e5171dd 100644 --- a/data/coop.ts +++ b/data/coop.ts @@ -40,7 +40,7 @@ export const C2 = [ }, { text: "Waterloo", - value: 9, + value: 10, }, { text: "Chicago", diff --git a/data/post-grad.ts b/data/post-grad.ts index d771e43..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", @@ -230,7 +234,7 @@ export const P8 = [ }, { text: "Programming Languages", - value: 2, + value: 5, }, { text: "Compilers", -- 2.39.2