Fixed incorrect data #153

Merged
snedadah merged 2 commits from fix-data into main 2023-01-31 00:36:29 -05:00
4 changed files with 65 additions and 27 deletions

View File

@ -883,6 +883,12 @@ export const A12 = [
]; ];
export const A12i = [ export const A12i = [
{
category: "CS145",
"1-4": 1,
"5-7": 10,
"8-10": 23,
},
{ {
category: "CS146", category: "CS146",
"1-4": 1, "1-4": 1,
@ -1068,7 +1074,7 @@ export const A14 = [
}, },
{ {
text: "Carmen Bruni", text: "Carmen Bruni",
value: 10, value: 9,
}, },
{ {
text: "Michael Wallace", text: "Michael Wallace",
@ -1478,7 +1484,7 @@ export const A19 = [
export const A19i = [ export const A19i = [
{ {
category: "0", category: "0",
value: 15, value: 56,
}, },
{ {
category: "1", category: "1",

View File

@ -10,17 +10,29 @@ export const C1 = [
]; ];
export const C2 = [ 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", text: "Toronto",
value: 32, value: 34,
}, },
{ {
text: "California", text: "California",
value: 26, value: 25,
},
{
text: "West CA",
value: 12,
}, },
{ {
text: "East USA", text: "East USA",
@ -28,7 +40,15 @@ export const C2 = [
}, },
{ {
text: "Waterloo", text: "Waterloo",
value: 9, value: 10,
},
{
text: "Chicago",
value: 1,
},
{
text: "Tokyo",
value: 1,
}, },
]; ];

View File

@ -199,7 +199,7 @@ export const D7 = [
}, },
{ {
text: "GTA / Toronto", text: "GTA / Toronto",
value: 1, value: 58,
}, },
{ {
text: "United Arab Emirates", text: "United Arab Emirates",

View File

@ -190,35 +190,39 @@ export const P8 = [
}, },
{ {
text: "Finance", text: "Finance",
value: 1, value: 8,
}, },
{ {
text: "Cloud Computing", text: "Cloud Computing",
value: 5,
},
{
text: "Artificial Intelligence",
value: 3,
},
{
text: "Robotics",
value: 1,
},
{
text: "Data Science",
value: 6, value: 6,
}, },
{ {
text: "Research", text: "Artificial Intelligence",
value: 5,
},
{
text: "Operating System",
value: 2,
},
{
text: "Robotics",
value: 3, value: 3,
}, },
{ {
text: "Security", text: "Data Science",
value: 1, value: 10,
},
{
text: "Research",
value: 6,
},
{
text: "Cybersecurity",
value: 2,
}, },
{ {
text: "Hardware", text: "Hardware",
value: 2, value: 4,
}, },
{ {
text: "Mobile Development", text: "Mobile Development",
@ -228,4 +232,12 @@ export const P8 = [
text: "Computer Networking", text: "Computer Networking",
value: 2, value: 2,
}, },
{
text: "Programming Languages",
value: 5,
},
{
text: "Compilers",
value: 1,
},
]; ];