From e6f8ed16ba262e475b86f1d877880c262389b773 Mon Sep 17 00:00:00 2001 From: Maggie Larson Date: Sat, 1 Mar 2025 15:34:15 -0600 Subject: [PATCH] Create visuals for Chicago Principles UChicago/Columbia story --- ...hicago-columbia-disruptive-action.min.html | 1 + .../index.html | 66 ++++++++++++++++ .../main.js | 77 ++++++++++++++++++ .../meta_data.json | 4 + ...o-principles-uchicago-columbia-q1.min.html | 1 + .../index.html | 66 ++++++++++++++++ .../main.js | 77 ++++++++++++++++++ .../meta_data.json | 4 + ...o-principles-uchicago-columbia-q2.min.html | 1 + .../index.html | 67 ++++++++++++++++ .../main.js | 74 ++++++++++++++++++ .../meta_data.json | 4 + ...-uchicago-columbia-tolerance-left.min.html | 1 + .../index.html | 64 +++++++++++++++ .../main.js | 78 +++++++++++++++++++ .../meta_data.json | 4 + ...uchicago-columbia-tolerance-right.min.html | 1 + .../index.html | 64 +++++++++++++++ .../main.js | 78 +++++++++++++++++++ .../meta_data.json | 4 + 20 files changed, 736 insertions(+) create mode 100644 2025/chicago-principles-uchicago-columbia-disruptive-action/chicago-principles-uchicago-columbia-disruptive-action.min.html create mode 100644 2025/chicago-principles-uchicago-columbia-disruptive-action/index.html create mode 100644 2025/chicago-principles-uchicago-columbia-disruptive-action/main.js create mode 100644 2025/chicago-principles-uchicago-columbia-disruptive-action/meta_data.json create mode 100644 2025/chicago-principles-uchicago-columbia-q1/chicago-principles-uchicago-columbia-q1.min.html create mode 100644 2025/chicago-principles-uchicago-columbia-q1/index.html create mode 100644 2025/chicago-principles-uchicago-columbia-q1/main.js create mode 100644 2025/chicago-principles-uchicago-columbia-q1/meta_data.json create mode 100644 2025/chicago-principles-uchicago-columbia-q2/chicago-principles-uchicago-columbia-q2.min.html create mode 100644 2025/chicago-principles-uchicago-columbia-q2/index.html create mode 100644 2025/chicago-principles-uchicago-columbia-q2/main.js create mode 100644 2025/chicago-principles-uchicago-columbia-q2/meta_data.json create mode 100644 2025/chicago-principles-uchicago-columbia-tolerance-left/chicago-principles-uchicago-columbia-tolerance-left.min.html create mode 100644 2025/chicago-principles-uchicago-columbia-tolerance-left/index.html create mode 100644 2025/chicago-principles-uchicago-columbia-tolerance-left/main.js create mode 100644 2025/chicago-principles-uchicago-columbia-tolerance-left/meta_data.json create mode 100644 2025/chicago-principles-uchicago-columbia-tolerance-right/chicago-principles-uchicago-columbia-tolerance-right.min.html create mode 100644 2025/chicago-principles-uchicago-columbia-tolerance-right/index.html create mode 100644 2025/chicago-principles-uchicago-columbia-tolerance-right/main.js create mode 100644 2025/chicago-principles-uchicago-columbia-tolerance-right/meta_data.json diff --git a/2025/chicago-principles-uchicago-columbia-disruptive-action/chicago-principles-uchicago-columbia-disruptive-action.min.html b/2025/chicago-principles-uchicago-columbia-disruptive-action/chicago-principles-uchicago-columbia-disruptive-action.min.html new file mode 100644 index 00000000..f3645261 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-disruptive-action/chicago-principles-uchicago-columbia-disruptive-action.min.html @@ -0,0 +1 @@ +Columbia students are more supportive of disruptive protest
diff --git a/2025/chicago-principles-uchicago-columbia-disruptive-action/index.html b/2025/chicago-principles-uchicago-columbia-disruptive-action/index.html new file mode 100644 index 00000000..3a2f2cab --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-disruptive-action/index.html @@ -0,0 +1,66 @@ + + + + Columbia students are more supportive of disruptive protest + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/2025/chicago-principles-uchicago-columbia-disruptive-action/main.js b/2025/chicago-principles-uchicago-columbia-disruptive-action/main.js new file mode 100644 index 00000000..b3de72c4 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-disruptive-action/main.js @@ -0,0 +1,77 @@ +Highcharts.setOptions({ + chart: { + style: { + fontFamily: 'Georgia, serif' + } + } +}); + +Highcharts.chart('chart-div', { + colors: [ + '#FFA319', + '#800000', + '#C16622', + '#8F3931', + '#8A9045', + '#58593F', + '#155F83', + '#350E20', + '#47B5FF', + '#FF3399' + ], + + // All code for your chart goes here + chart: { + type: 'bar' + }, + + title: { + text: 'Columbia students are more supportive of disruptive protest', + align: 'center' + }, + + subtitle: { + text: 'How acceptable would you say it is for students to engage in the following action to protest a campus speaker? ', + align: 'center' + }, + + caption: { + text: 'Percentage of students who said the given action was "always" or "sometimes" acceptable is displayed.', + align: 'center' + }, + + xAxis: { + categories: [ + 'Shouting down a speaker to prevent them from speaking on campus.', + 'Blocking other students from attending a campus speech.', + 'Using violence to stop a campus speech.' + ] + }, + + yAxis: { + categories: ['Columbia University', 'University of Chicago'] + }, + + yAxis: { + min: 0, + max: 50 + }, + + yAxis: { + labels: { + format: '{value}%' + }, + title: { + text: "" + } + }, + + tooltip: { + valueSuffix: '%' + }, + + series: [ + { name: 'Columbia University', data: [42, 25, 13] }, + { name: 'University of Chicago', data: [36, 17, 12] } + ] +}); diff --git a/2025/chicago-principles-uchicago-columbia-disruptive-action/meta_data.json b/2025/chicago-principles-uchicago-columbia-disruptive-action/meta_data.json new file mode 100644 index 00000000..8057c9f2 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-disruptive-action/meta_data.json @@ -0,0 +1,4 @@ +{ + "description": "A bar chart showing the percentage of Columbia and UChicago students who said that the listed actions were acceptable.", + "title": "Columbia students are more supportive of disruptive protest" +} diff --git a/2025/chicago-principles-uchicago-columbia-q1/chicago-principles-uchicago-columbia-q1.min.html b/2025/chicago-principles-uchicago-columbia-q1/chicago-principles-uchicago-columbia-q1.min.html new file mode 100644 index 00000000..900e7cd3 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-q1/chicago-principles-uchicago-columbia-q1.min.html @@ -0,0 +1 @@ +UChicago students believe free speech is supported on campus
diff --git a/2025/chicago-principles-uchicago-columbia-q1/index.html b/2025/chicago-principles-uchicago-columbia-q1/index.html new file mode 100644 index 00000000..6d9a9161 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-q1/index.html @@ -0,0 +1,66 @@ + + + + UChicago students believe free speech is supported on campus + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/2025/chicago-principles-uchicago-columbia-q1/main.js b/2025/chicago-principles-uchicago-columbia-q1/main.js new file mode 100644 index 00000000..ddec76a6 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-q1/main.js @@ -0,0 +1,77 @@ +Highcharts.setOptions({ + chart: { + style: { + fontFamily: 'Georgia, serif' + } + } +}); + +Highcharts.chart('chart-div', { + colors: [ + '#FFA319', + '#800000', + '#C16622', + '#8F3931', + '#8A9045', + '#58593F', + '#155F83', + '#350E20', + '#47B5FF', + '#FF3399' + ], + + // All code for your chart goes here + chart: { + type: 'bar' + }, + + title: { + text: 'UChicago students believe free speech is supported on campus', + align: 'center' + }, + + subtitle: { + text: 'How clear is it to you that your college administration protects free speech on campus?', + align: 'center' + }, + + xAxis: { + categories: [ + 'Not at all clear', + 'Not very clear', + 'Somewhat clear', + 'Very clear', + 'Extremely clear' + ] + }, + + yAxis: { + categories: ['Columbia University', 'University of Chicago'], + title: { + text: null + } + }, + + yAxis: { + min: 0, + max: 50 + }, + + yAxis: { + labels: { + format: '{value}%' + }, + title: { + text: "" + } + }, + + tooltip: { + valueSuffix: '%' + }, + + series: [ + { name: 'Columbia University', data: [23, 34, 23, 13, 7] }, + { name: 'University of Chicago', data: [8, 10, 33, 31, 19] } + ] +}); diff --git a/2025/chicago-principles-uchicago-columbia-q1/meta_data.json b/2025/chicago-principles-uchicago-columbia-q1/meta_data.json new file mode 100644 index 00000000..6302bf1a --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-q1/meta_data.json @@ -0,0 +1,4 @@ +{ + "description": "Bar chart comparing UChicago and Columbia student responses about college administration support for free speech.", + "title": "UChicago students believe free speech is supported on campus" +} diff --git a/2025/chicago-principles-uchicago-columbia-q2/chicago-principles-uchicago-columbia-q2.min.html b/2025/chicago-principles-uchicago-columbia-q2/chicago-principles-uchicago-columbia-q2.min.html new file mode 100644 index 00000000..4df9eb62 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-q2/chicago-principles-uchicago-columbia-q2.min.html @@ -0,0 +1 @@ +UChicago students believe college administration will defend offensive speech
diff --git a/2025/chicago-principles-uchicago-columbia-q2/index.html b/2025/chicago-principles-uchicago-columbia-q2/index.html new file mode 100644 index 00000000..380694ed --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-q2/index.html @@ -0,0 +1,67 @@ + + + + UChicago students believe college administration will defend + offensive speech + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/2025/chicago-principles-uchicago-columbia-q2/main.js b/2025/chicago-principles-uchicago-columbia-q2/main.js new file mode 100644 index 00000000..e5cebe2e --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-q2/main.js @@ -0,0 +1,74 @@ +Highcharts.setOptions({ + chart: { + style: { + fontFamily: 'Georgia, serif' + } + } +}); + +Highcharts.chart('chart-div', { + colors: [ + '#FFA319', + '#800000', + '#C16622', + '#8F3931', + '#8A9045', + '#58593F', + '#155F83', + '#350E20', + '#47B5FF', + '#FF3399' + ], + + // All code for your chart goes here + chart: { + type: 'bar' + }, + + title: { + text: 'UChicago students believe college administration will defend offensive speech', + align: 'center' + }, + + subtitle: { + text: "If a controversy over offensive speech were to occur on your campus, how likely is it that your college's administration would defend the speaker's right to express their views?", + align: 'center' + }, + + xAxis: { + categories: [ + 'Not at all likely', + 'Not very likely', + 'Somewhat likely', + 'Very likely', + 'Extremely likely' + ] + }, + + yAxis: { + categories: ['Columbia University', 'University of Chicago'] + }, + + yAxis: { + min: 0, + max: 50 + }, + + yAxis: { + labels: { + format: '{value}%' + }, + title: { + text: "" + } + }, + + tooltip: { + valueSuffix: '%' + }, + + series: [ + { name: 'Columbia University', data: [13, 30, 43, 8, 7] }, + { name: 'University of Chicago', data: [4, 14, 36, 34, 13] } + ] +}); diff --git a/2025/chicago-principles-uchicago-columbia-q2/meta_data.json b/2025/chicago-principles-uchicago-columbia-q2/meta_data.json new file mode 100644 index 00000000..674a40d4 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-q2/meta_data.json @@ -0,0 +1,4 @@ +{ + "description": "Bar chart comparing UChicago and Columbia student responses about whether college administration would defend a speaker's right to express offensive views.", + "title": "UChicago students believe college administration will defend offensive speech" +} diff --git a/2025/chicago-principles-uchicago-columbia-tolerance-left/chicago-principles-uchicago-columbia-tolerance-left.min.html b/2025/chicago-principles-uchicago-columbia-tolerance-left/chicago-principles-uchicago-columbia-tolerance-left.min.html new file mode 100644 index 00000000..5a60fbe6 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-tolerance-left/chicago-principles-uchicago-columbia-tolerance-left.min.html @@ -0,0 +1 @@ +Tolerance for left-wing views
diff --git a/2025/chicago-principles-uchicago-columbia-tolerance-left/index.html b/2025/chicago-principles-uchicago-columbia-tolerance-left/index.html new file mode 100644 index 00000000..67f72d82 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-tolerance-left/index.html @@ -0,0 +1,64 @@ + + + Tolerance for left-wing views + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/2025/chicago-principles-uchicago-columbia-tolerance-left/main.js b/2025/chicago-principles-uchicago-columbia-tolerance-left/main.js new file mode 100644 index 00000000..15f71023 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-tolerance-left/main.js @@ -0,0 +1,78 @@ +Highcharts.setOptions({ + chart: { + style: { + fontFamily: 'Georgia, serif' + } + } +}); + +Highcharts.chart('chart-div', { + colors: [ + '#FFA319', + '#800000', + '#C16622', + '#8F3931', + '#8A9045', + '#58593F', + '#155F83', + '#350E20', + '#47B5FF', + '#FF3399' + ], + + // All code for your chart goes here + chart: { + type: 'bar' + }, + + title: { + text: 'Tolerance for left-wing views', + align: 'center' + }, + + subtitle: { + text: 'Regardless of your own views on the topic, should your school allow a speaker on campus who previously expressed the following idea? ', + align: 'center' + }, + + caption: { + text: 'The percentage of students who said this speaker should "definitely not" or "probably not" be allowed is displayed.', + align: 'center' + }, + + xAxis: { + categories: [ + 'The Catholic church is a pedophilic institution.', + 'The police are just as racist as the Klu Klux Klan.', + 'Children should be able to transition without parental consent.', + 'From the river to the sea, Palestine will be free.' + ] + }, + + yAxis: { + categories: ['Columbia University', 'University of Chicago'] + }, + + yAxis: { + min: 0, + max: 100 + }, + + yAxis: { + labels: { + format: '{value}%' + }, + title: { + text: "" + } + }, + + tooltip: { + valueSuffix: '%' + }, + + series: [ + { name: 'Columbia University', data: [36, 40, 29, 26] }, + { name: 'University of Chicago', data: [32, 31, 24, 19] } + ] +}); diff --git a/2025/chicago-principles-uchicago-columbia-tolerance-left/meta_data.json b/2025/chicago-principles-uchicago-columbia-tolerance-left/meta_data.json new file mode 100644 index 00000000..a795a01b --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-tolerance-left/meta_data.json @@ -0,0 +1,4 @@ +{ + "description": "Bar chart comparing UChicago and Columbia students who said certain left-wing views should not be allowed on campus.", + "title": "Tolerance for left-wing views" +} diff --git a/2025/chicago-principles-uchicago-columbia-tolerance-right/chicago-principles-uchicago-columbia-tolerance-right.min.html b/2025/chicago-principles-uchicago-columbia-tolerance-right/chicago-principles-uchicago-columbia-tolerance-right.min.html new file mode 100644 index 00000000..189ead9b --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-tolerance-right/chicago-principles-uchicago-columbia-tolerance-right.min.html @@ -0,0 +1 @@ +Tolerance for right-wing views
diff --git a/2025/chicago-principles-uchicago-columbia-tolerance-right/index.html b/2025/chicago-principles-uchicago-columbia-tolerance-right/index.html new file mode 100644 index 00000000..5646233c --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-tolerance-right/index.html @@ -0,0 +1,64 @@ + + + Tolerance for right-wing views + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/2025/chicago-principles-uchicago-columbia-tolerance-right/main.js b/2025/chicago-principles-uchicago-columbia-tolerance-right/main.js new file mode 100644 index 00000000..bc94e3e7 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-tolerance-right/main.js @@ -0,0 +1,78 @@ +Highcharts.setOptions({ + chart: { + style: { + fontFamily: 'Georgia, serif' + } + } +}); + +Highcharts.chart('chart-div', { + colors: [ + '#FFA319', + '#800000', + '#C16622', + '#8F3931', + '#8A9045', + '#58593F', + '#155F83', + '#350E20', + '#47B5FF', + '#FF3399' + ], + + // All code for your chart goes here + chart: { + type: 'bar' + }, + + title: { + text: 'Tolerance for right-wing views', + align: 'center' + }, + + subtitle: { + text: 'Regardless of your own views on the topic, should your school allow a speaker on campus who previously expressed the following idea? ', + align: 'center' + }, + + caption: { + text: 'The percentage of students who said this speaker should "definitely not" or "probably not" be allowed is displayed.', + align: 'center' + }, + + xAxis: { + categories: [ + 'Transgender people have a mental disorder.', + 'Abortion should be completely illegal.', + 'Black Lives Matter is a hate group.', + 'Collateral damage in Gaza is justified for the sake of Israeli security.' + ] + }, + + yAxis: { + categories: ['Columbia University', 'University of Chicago'] + }, + + yAxis: { + min: 0, + max: 100 + }, + + yAxis: { + labels: { + format: '{value}%' + }, + title: { + text: "" + } + }, + + tooltip: { + valueSuffix: '%' + }, + + series: [ + { name: 'Columbia University', data: [64, 46, 64, 46] }, + { name: 'University of Chicago', data: [62, 40, 59, 39] } + ] +}); diff --git a/2025/chicago-principles-uchicago-columbia-tolerance-right/meta_data.json b/2025/chicago-principles-uchicago-columbia-tolerance-right/meta_data.json new file mode 100644 index 00000000..bfd1f1e1 --- /dev/null +++ b/2025/chicago-principles-uchicago-columbia-tolerance-right/meta_data.json @@ -0,0 +1,4 @@ +{ + "description": "Bar chart comparing UChicago and Columbia students who said certain right-wing views should not be allowed on campus.", + "title": "Tolerance for right-wing views" +}