
Christine Schmidt
google.charts.load(’44’, { packages: [‘corechart’] });
google.charts.setOnLoadCallback(startup);
colors = [
‘#800000’,
‘#FFC9C9’,
‘#DE7676’,
‘#7A0000’,
‘#FF9999’,
‘#c62323’,
‘#6c2121’,
‘#5c0303’,
‘#F58C8C’
];
var demo_chart;
var experiences_chart;
var family_chart;
var high_school_chart;
var app_chart;
var uchicago_chart;
var formatter;
function startup() {
demo_chart = new google.visualization.ChartWrapper({
containerId: ‘demographics’
});
experiences_chart = new google.visualization.ChartWrapper({
containerId: ‘experiences’
});
family_chart = new google.visualization.ChartWrapper({
containerId: ‘family’
});
high_school_chart = new google.visualization.ChartWrapper({
containerId: ‘high_school’
});
app_chart = new google.visualization.ChartWrapper({
containerId: ‘application’
});
uchicago_chart = new google.visualization.ChartWrapper({
containerId: ‘plans_at_uc’
});
formatter = new google.visualization.NumberFormat({
pattern: ‘##.##%’
});
gender();
religion();
father_education();
school_type();
ap_classes();
varsity_recruit();
}
function sort_function(a, b) {
return b[1] – a[1];
}
function gender() {
var data = new google.visualization.arrayToDataTable(
[
[‘Gender’, ‘Count’],
[‘Female’, 374],
[‘Other’, 12],
[‘Male’, 295]
].sort(sort_function)
);
document.getElementById(‘demo_header’).innerHTML =
‘What is your gender?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
demo_chart.setChartType(‘PieChart’);
demo_chart.setDataTable(data);
demo_chart.setOptions(options);
demo_chart.draw();
}
function pvp_gender() {
var data = new google.visualization.arrayToDataTable([
[‘School Type’, ‘Female’, ‘Male’],
[‘Public’, 0.5977, 0.3851],
[‘Private’, 0.5032, 0.4904]
]);
formatter.format(data, 1);
formatter.format(data, 2);
document.getElementById(‘demo_header’).innerHTML = ‘Gender by School’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.7,
min: 0
}
},
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
demo_chart.setChartType(‘ColumnChart’);
demo_chart.setDataTable(data);
demo_chart.setOptions(options);
demo_chart.draw();
}
function ethnicity() {
var data = new google.visualization.arrayToDataTable(
[
[‘Ethnicity’, ‘Count’],
[‘Asian’, 150],
[‘Black or African American’, 45],
[‘Hispanic or Latino’, 82],
[‘Indian or South Asian’, 70],
[‘Middle Eastern’, 10],
[‘White’, 345],
[‘Other’, 7]
].sort(sort_function)
);
document.getElementById(‘demo_header’).innerHTML =
‘What is your ethnicity?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
demo_chart.setChartType(‘PieChart’);
demo_chart.setDataTable(data);
demo_chart.setOptions(options);
demo_chart.draw();
}
function orientation() {
var data = new google.visualization.arrayToDataTable(
[
[‘Orientation’, ‘Count’],
[‘Asexual’, 16],
[‘Bisexual’, 48],
[‘Gay or Lesbian’, 38],
[‘Queer’, 11],
[‘Questioning’, 28],
[‘Straight’, 527],
[‘Other’, 7],
[‘Unsure’, 4]
].sort(sort_function)
);
document.getElementById(‘demo_header’).innerHTML =
‘What is your sexual orientation?’;
var options = {
title: ‘What is your sexual orientation?’,
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
demo_chart.setChartType(‘PieChart’);
demo_chart.setDataTable(data);
demo_chart.setOptions(options);
demo_chart.draw();
}
function ht_location() {
var data = new google.visualization.arrayToDataTable(
[
[‘Location’, ‘Count’],
[‘Mid-Atlantic’, 117],
[‘Midwest’, 177],
[‘New England’, 84],
[‘Outside the United States’, 115],
[‘South’, 85],
[‘Southwest’, 17],
[‘West’, 70]
].sort(sort_function)
);
document.getElementById(‘demo_header’).innerHTML =
‘Where are you from?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
demo_chart.setChartType(‘PieChart’);
demo_chart.setDataTable(data);
demo_chart.setOptions(options);
demo_chart.draw();
}
function hometown() {
var data = new google.visualization.arrayToDataTable(
[
[‘Type’, ‘Count’],
[‘City’, 259],
[‘Rural’, 21],
[‘Suburbs’, 402]
].sort(sort_function)
);
document.getElementById(‘demo_header’).innerHTML =
‘What kind of area did you grow up in?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
demo_chart.setChartType(‘PieChart’);
demo_chart.setDataTable(data);
demo_chart.setOptions(options);
demo_chart.draw();
}
function pvp_hometown() {
var data = new google.visualization.arrayToDataTable([
[‘School Type’, ‘City’, ‘Rural’, ‘Surburbs’],
[‘Public’, 0.2378, 0.0401, 0.7221],
[‘Private’, 0.5256, 0.0192, 0.4551]
]);
formatter.format(data, 1);
formatter.format(data, 2);
formatter.format(data, 3);
document.getElementById(‘demo_header’).innerHTML =
‘Hometown Type by School’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.8,
min: 0
}
},
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
demo_chart.setChartType(‘ColumnChart’);
demo_chart.setDataTable(data);
demo_chart.setOptions(options);
demo_chart.draw();
}
function religion() {
var data = new google.visualization.arrayToDataTable(
[
[‘Religion’, ‘Count’],
[‘Agnostic’, 138],
[‘Atheist’, 169],
[‘Buddhist’, 11],
[‘Catholic’, 98],
[‘Hindu’, 32],
[‘Jewish’, 73],
[‘Muslim’, 16],
[‘Protestant’, 86],
[‘Other’, 47]
].sort(sort_function)
);
document.getElementById(‘experiences_header’).innerHTML =
‘What religious identification fits you best?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘PieChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function how_religious() {
var data = new google.visualization.arrayToDataTable([
[‘How Religious’, ‘Percent of Respondents’],
[‘Not Religious at All’, 0.4632],
[‘Not Very Religious’, 0.2176],
[‘Somewhat Religious’, 0.1676],
[‘Very Religious’, 0.1103],
[‘Extremely Religious’, 0.0412]
]);
formatter.format(data, 1);
document.getElementById(‘experiences_header’).innerHTML =
‘How religious would you say you are?’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.7,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘ColumnChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function political_spectrum() {
var data = new google.visualization.arrayToDataTable([
[‘How Political’, ‘Percent of Respondents’],
[‘Very Liberal’, 0.2463],
[‘Somewhat Liberal’, 0.4926],
[‘Moderate’, 0.1667],
[‘Somewhat Conservative’, 0.09],
[‘Very Conservative’, 0.0044]
]);
formatter.format(data, 1);
document.getElementById(‘experiences_header’).innerHTML =
‘Where on the political spectrum would you say you lie?’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.7,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘ColumnChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function alcohol() {
var data = new google.visualization.arrayToDataTable(
[
[‘Consumed Alcohol’, ‘Count’],
[‘No’, 256],
[‘Yes’, 416]
].sort(sort_function)
);
document.getElementById(‘experiences_header’).innerHTML =
‘Have you consumed alcohol recreationally?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘PieChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function pvp_alcohol() {
var data = new google.visualization.arrayToDataTable([
[‘School Type’, ‘Percent that has consumed alcohol’],
[‘Public’, 0.5536],
[‘Private’, 0.6971],
[‘Other’, 0.55]
]);
formatter.format(data, 1);
document.getElementById(‘experiences_header’).innerHTML =
‘Alcohol Consumption by School Type’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.8,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘ColumnChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function ht_alcohol() {
var data = new google.visualization.arrayToDataTable([
[‘Hometown’, ‘Percent that has consumed alcohol’],
[‘City’, 0.7059],
[‘Suburbs’, 0.5707],
[‘Rural’, 0.4762]
]);
formatter.format(data, 1);
document.getElementById(‘experiences_header’).innerHTML =
‘Alcohol Consumption by Hometown’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.8,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘ColumnChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function alcohol_uc() {
var data = new google.visualization.arrayToDataTable(
[
[‘Consumed Alcohol’, ‘Count’],
[‘No’, 226],
[‘Yes’, 441]
].sort(sort_function)
);
document.getElementById(‘experiences_header’).innerHTML =
‘Do you plan on consuming alcohol recreationally while in college?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘PieChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function marijuana() {
var data = new google.visualization.arrayToDataTable(
[
[‘Used Marijuana’, ‘Count’],
[‘No’, 495],
[‘Yes’, 180]
].sort(sort_function)
);
document.getElementById(‘experiences_header’).innerHTML =
‘Have you used marijuana recreationally? ‘;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘PieChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function marijuana_uc() {
var data = new google.visualization.arrayToDataTable(
[
[‘Used Marijuana’, ‘Count’],
[‘No’, 500],
[‘Yes’, 169]
].sort(sort_function)
);
document.getElementById(‘experiences_header’).innerHTML =
‘Do you plan on consuming marijuana recreationally while in college?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘PieChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function fake_id() {
var data = new google.visualization.arrayToDataTable(
[
[‘Has Fake’, ‘Count’],
[‘No’, 608],
[‘Yes’, 66]
].sort(sort_function)
);
document.getElementById(‘experiences_header’).innerHTML =
‘Do you currently have a fake ID?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘PieChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function fake_id_uc() {
var data = new google.visualization.arrayToDataTable(
[
[‘Has Fake’, ‘Count’],
[‘No’, 452],
[‘Yes’, 60],
[‘Maybe’, 158]
].sort(sort_function)
);
document.getElementById(‘experiences_header’).innerHTML =
‘Do you plan on getting a fake ID during your first year of college?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘PieChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function sex() {
var data = new google.visualization.arrayToDataTable(
[
[‘Has Sex’, ‘Count’],
[‘No’, 440],
[‘Yes’, 225]
].sort(sort_function)
);
document.getElementById(‘experiences_header’).innerHTML =
‘Have you had sex?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘PieChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function sex_uc() {
var data = new google.visualization.arrayToDataTable([
[‘Has Sex’, ‘Count’],
[‘No’, 143],
[‘Yes’, 513]
]);
document.getElementById(‘experiences_header’).innerHTML =
‘Do you anticipate having sex at any point while in college?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘PieChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function gap_year_uc() {
var data = new google.visualization.arrayToDataTable([
[‘Hometown’, ‘Percent Who Took Gap Year’],
[‘Public’, 0.023],
[‘Private’, 0.0932],
[‘Other’, 0.0952]
]);
formatter.format(data, 1);
document.getElementById(‘experiences_header’).innerHTML =
‘Taking a Gap Year by School Type’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.2,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
experiences_chart.setChartType(‘ColumnChart’);
experiences_chart.setDataTable(data);
experiences_chart.setOptions(options);
experiences_chart.draw();
}
function father_education() {
var data = new google.visualization.arrayToDataTable([
[‘Education Level’, ‘Count’],
[‘Some high school, no diploma’, 14],
[‘High school graduate, diploma or the equivalent’, 28],
[‘Some college credit, no degree’, 23],
[‘Trade/technical/vocational training’, 17],
[‘Associate degree’, 6],
[“Bachelor’ degree”, 155],
[‘Graduate degree’, 433]
]);
document.getElementById(‘family_header’).innerHTML =
“What is your father’s highest education level?”;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
family_chart.setChartType(‘PieChart’);
family_chart.setDataTable(data);
family_chart.setOptions(options);
family_chart.draw();
}
function mother_education() {
var data = new google.visualization.arrayToDataTable([
[‘Education Level’, ‘Count’],
[‘Some high school, no diploma’, 10],
[‘High school graduate, diploma or the equivalent’, 27],
[‘Some college credit, no degree’, 22],
[‘Trade/technical/vocational training’, 11],
[‘Associate degree’, 33],
[“Bachelor’ degree”, 193],
[‘Graduate degree’, 384]
]);
document.getElementById(‘family_header’).innerHTML =
“What is your mother’s highest education level?”;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
family_chart.setChartType(‘PieChart’);
family_chart.setDataTable(data);
family_chart.setOptions(options);
family_chart.draw();
}
function legacy() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Count’],
[‘Yes, both parents’, 20],
[‘Yes, one parent’, 49],
[‘No’, 611]
]);
document.getElementById(‘family_header’).innerHTML =
‘Did either of your parents attend the University of Chicago?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
family_chart.setChartType(‘PieChart’);
family_chart.setDataTable(data);
family_chart.setOptions(options);
family_chart.draw();
}
function income() {
var data = new google.visualization.arrayToDataTable([
[‘Income Bracket’, ‘Percent of Sample in this Bracket’],
[‘< $15,0000', 0.0198],
['$15,000 - $30,000', 0.0362],
['$30,000 - $60,000', 0.0741],
['$60,000 - $100,000', 0.1038],
['$100,000 - $150,000', 0.1483],
['$150,000 - $200,000', 0.1417],
['$200,000 - $300,000', 0.168],
['$300,000 - $500,000', 0.1516],
['> $500,000′, 0.1565]
]);
formatter.format(data, 1);
document.getElementById(‘family_header’).innerHTML =
‘Roughly how much did your family earn in the previous year in US dollars?’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.4,
min: 0
}
},
hAxis: {
textStyle: {
fontSize: 9 // or the number you want
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
family_chart.setChartType(‘ColumnChart’);
family_chart.setDataTable(data);
family_chart.setOptions(options);
family_chart.draw();
}
function income_legacy() {
var data = new google.visualization.arrayToDataTable([
[
‘Income Bracket’,
‘Percent of Non-Legacies in this Bracket’,
‘Percent of Legacies in this Bracket’
],
[‘< $15,0000', 0.0219, 0],
['$15,000 - $30,000', 0.0401, 0],
['$30,000 - $60,000', 0.0785, 0.0339],
['$60,000 - $100,000', 0.1131, 0.0169],
['$100,000 - $150,000', 0.1478, 0.1525],
['$150,000 - $200,000', 0.146, 0.1017],
['$200,000 - $300,000', 0.1752, 0.1017],
['$300,000 - $500,000', 0.1387, 0.2712],
['> $500,000′, 0.1387, 0.322]
]);
formatter.format(data, 1);
formatter.format(data, 2);
document.getElementById(‘family_header’).innerHTML =
‘Percent of Non-Legacies and Legacies in Each Income Bracket’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.4,
min: 0
}
},
hAxis: {
textStyle: {
fontSize: 9 // or the number you want
}
},
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
family_chart.setChartType(‘ColumnChart’);
family_chart.setDataTable(data);
family_chart.setOptions(options);
family_chart.draw();
}
function siblings() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Percent of Sample’],
[‘0 Siblings’, 0.1335],
[‘1 Sibling’, 0.5089],
[‘2 Siblings’, 0.27],
[‘3 Siblings’, 0.0564],
[‘4 Siblings’, 0.0163],
[‘4+ Siblings’, 0.0148]
]);
formatter.format(data, 1);
document.getElementById(‘family_header’).innerHTML =
‘How many siblings do you have?’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.6,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
family_chart.setChartType(‘ColumnChart’);
family_chart.setDataTable(data);
family_chart.setOptions(options);
family_chart.draw();
}
function school_type() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Count’],
[‘Public high school’, 338],
[‘Public charter high school’, 11],
[‘Private (parochial) high school’, 63],
[‘Private (non-parochial) high school’, 249],
[‘Other’, 21]
]);
document.getElementById(‘high_school_header’).innerHTML =
‘What kind of high school did you attend?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
high_school_chart.setChartType(‘PieChart’);
high_school_chart.setDataTable(data);
high_school_chart.setOptions(options);
high_school_chart.draw();
}
function hs_job() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Percent of Sample’],
[‘0 – 5 hours’, 0.7897],
[‘5.5 – 10 hours’, 0.1088],
[‘10.5 – 15 hours’, 0.0338],
[‘15.5 – 20 hours’, 0.0382],
[‘20.5 – 30 hours’, 0.0162],
[‘30.5 – 40 hours’, 0.0103],
[’40+ hours’, 0.0029]
]);
formatter.format(data, 1);
document.getElementById(‘high_school_header’).innerHTML =
‘During your senior year, on average, how many hours per week did you work at a job?’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 1,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
high_school_chart.setChartType(‘ColumnChart’);
high_school_chart.setDataTable(data);
high_school_chart.setOptions(options);
high_school_chart.draw();
}
function cheating() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Percent of Sample’],
[‘No, never’, 0.5773],
[‘Yes, on homework’, 0.4015],
[‘Yes, on an exam’, 0.1121]
]);
formatter.format(data, 1);
document.getElementById(‘high_school_header’).innerHTML =
‘Did you ever cheat in high school?’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.8,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
high_school_chart.setChartType(‘ColumnChart’);
high_school_chart.setDataTable(data);
high_school_chart.setOptions(options);
high_school_chart.draw();
}
function alcohol_cheating() {
var data = new google.visualization.arrayToDataTable([
[
‘Response’,
“Students Who Haven’t Drank Alcohol”,
‘Students Who Have Drank Alcohol’
],
[‘No, never’, 0.6932, 0.5037],
[‘Yes, on homework’, 0.2988, 0.4665],
[‘Yes, on an exam’, 0.0677, 0.134]
]);
formatter.format(data, 1);
formatter.format(data, 2);
document.getElementById(‘high_school_header’).innerHTML =
‘Cheating by Alcohol Consumption’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.8,
min: 0
}
},
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
high_school_chart.setChartType(‘ColumnChart’);
high_school_chart.setDataTable(data);
high_school_chart.setOptions(options);
high_school_chart.draw();
}
function ap_classes() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Percent of Sample’],
[‘0’, 0.0576],
[‘1’, 0.0121],
[‘2’, 0.0121],
[‘3’, 0.0212],
[‘4’, 0.0515],
[‘5’, 0.0788],
[‘6’, 0.1606],
[‘7’, 0.0758],
[‘8’, 0.103],
[‘9′, 0.0803],
[’10’, 0.0955],
[’11’, 0.0788],
[’12’, 0.0561],
[’13’, 0.0333],
[’13+’, 0.0833]
]);
formatter.format(data, 1);
document.getElementById(‘app_header’).innerHTML =
‘How many college-level (AP/IB) courses did you take while in high school?’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.2,
min: 0
}
},
hAxis: {
textStyle: {
fontSize: 11 // or the number you want
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
app_chart.setChartType(‘ColumnChart’);
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function sat() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Percent of Sample’],
[‘< 2000', 0.0654],
['2000 - 2045', 0.0436],
['2050 - 2095', 0.0501],
['2100 - 2145', 0.0654],
['2150 - 2195', 0.0959],
['2200 - 2245', 0.1264],
['2250 - 2295', 0.2113],
['2300 - 2345', 0.183],
['2350 - 2400', 0.159]
]);
formatter.format(data, 1);
document.getElementById('app_header').innerHTML =
'If you took the SAT, what was your overall score? ';
var options = {
vAxis: {
format: 'percent',
viewWindowMode: 'explicit',
viewWindow: {
max: 0.25,
min: 0
}
},
legend: { position: 'none' },
colors: colors,
height: 300
};
app_chart.setChartType('ColumnChart');
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function sat_recruit() {
var data = new google.visualization.arrayToDataTable([
['Response', 'Average SAT Score'],
['Recruited for a varsity sport', 2149],
['Not recruited', 2224]
]);
document.getElementById('app_header').innerHTML =
'Average SAT Score by Athletic Recruit';
var options = {
vAxis: {
viewWindowMode: 'explicit',
viewWindow: {
max: 2400,
min: 2000
}
},
legend: { position: 'none' },
colors: colors,
height: 300
};
app_chart.setChartType('ColumnChart');
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function sat_ethnicity() {
var data = new google.visualization.arrayToDataTable([
['Ethnicity', 'Average SAT Score'],
['Asian', 2277],
['Black or African American', 2129],
['Hispanic or Latino', 2098],
['Indian or South Asian', 2254],
['Middle-Eastern', 2150],
['White', 2226]
]);
document.getElementById('app_header').innerHTML =
'Average SAT Score by Ethnicity';
var options = {
hAxis: {
viewWindowMode: 'explicit',
viewWindow: {
max: 2400,
min: 2000
}
},
vAxis: {
textStyle: {
fontSize: 9 // or the number you want
}
},
legend: { position: 'none' },
colors: colors,
height: 300
};
app_chart.setChartType('BarChart');
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function act() {
var data = new google.visualization.arrayToDataTable([
['Response', 'Percent of Sample'],
['< 30', 0.0291],
['30', 0.0412],
['31', 0.0581],
['32', 0.1259],
['33 ', 0.138],
['34', 0.2978],
['35', 0.2203],
['36', 0.0896]
]);
formatter.format(data, 1);
document.getElementById('app_header').innerHTML =
'If you took the ACT, what was your overall score? ';
var options = {
vAxis: {
format: 'percent',
viewWindowMode: 'explicit',
viewWindow: {
max: 0.4,
min: 0
}
},
legend: { position: 'none' },
colors: colors,
height: 300
};
app_chart.setChartType('ColumnChart');
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function pvp_counselor() {
var data = new google.visualization.arrayToDataTable([
['School Type', 'Hired Admissions Counselor'],
['Public School', 0.1404],
['Private School', 0.21217],
['Other', 0.05]
]);
formatter.format(data, 1);
document.getElementById('app_header').innerHTML =
'Hired Private Admissions Counselor by School Type';
var options = {
vAxis: {
format: 'percent',
viewWindowMode: 'explicit',
viewWindow: {
max: 0.3,
min: 0
}
},
legend: { position: 'none' },
colors: colors,
height: 300
};
app_chart.setChartType('ColumnChart');
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function income_counselor() {
var data = new google.visualization.arrayToDataTable([
['Income Bracket', 'Hired Private Admissions Counselor'],
['< $15,0000', 0.0833],
['$15,000 - $30,000', 0.0909],
['$30,000 - $60,000', 0.0444],
['$60,000 - $100,000', 0.1429],
['$100,000 - $150,000', 0.0899],
['$150,000 - $200,000', 0.1279],
['$200,000 - $300,000', 0.1863],
['$300,000 - $500,000', 0.2527],
['> $500,000′, 0.3226]
]);
formatter.format(data, 1);
document.getElementById(‘app_header’).innerHTML =
‘Hired Private Admissions Counselor by Income’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.4,
min: 0
}
},
hAxis: {
textStyle: {
fontSize: 9 // or the number you want
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
app_chart.setChartType(‘ColumnChart’);
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function top_choice() {
var data = new google.visualization.arrayToDataTable(
[
[‘Hired Admissions Counselor’, ‘Count’],
[‘No’, 219],
[‘Yes’, 444]
].sort(sort_function)
);
document.getElementById(‘app_header’).innerHTML =
‘Was UChicago your top choice school?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
app_chart.setChartType(‘PieChart’);
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function acceptance_top_choice() {
var data = new google.visualization.arrayToDataTable([
[
‘Response’,
‘Average (Number of Schools Accepted to / Number Applied)’
],
[‘UChicago was not my top choice school’, 0.4948],
[‘UChicago was my top choice school’, 0.6687]
]);
formatter.format(data, 1);
document.getElementById(‘app_header’).innerHTML =
‘Average Acceptance Rates to Colleges by UC Being Top Choice’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 0.8,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
app_chart.setChartType(‘ColumnChart’);
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function uc_app() {
var data = new google.visualization.arrayToDataTable([
[‘Applied’, ‘Count’],
[‘Applied Early Action, accepted Early Action’, 352],
[‘Applied Early Action, accepted Regular Decision’, 135],
[‘Appleid Regular Decision, accepted Reguar Decision’, 191]
]);
document.getElementById(‘app_header’).innerHTML =
‘Did you apply to UChicago Regular Decision or Early Action?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
app_chart.setChartType(‘PieChart’);
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function number_apps() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Average Number of Colleges Applied To’],
[‘Applied Early Action, accepted Early Action’, 6.87],
[‘Applied Early Action, accepted Regular Decision’, 11.52],
[‘Applied Regular Decision, accepted Regular Decision’, 11.57]
]);
document.getElementById(‘app_header’).innerHTML =
‘Number of Applications Sent In’;
var options = {
vAxis: {
viewWindowMode: ‘explicit’,
viewWindow: {
max: 15,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
app_chart.setChartType(‘ColumnChart’);
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function top_choice_uc_app() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Percent Where UChicago was Top Choice’],
[‘Applied Early Action, accepted Early Action’, 0.737],
[‘Applied Early Action, accepted Regular Decision’, 0.7481],
[‘Applied Regular Decision, accepted Regular Decision’, 0.4835]
]);
formatter.format(data, 1);
document.getElementById(‘app_header’).innerHTML =
‘UChicago was Top Choice by Type of Application’;
var options = {
vAxis: {
format: ‘percent’,
viewWindowMode: ‘explicit’,
viewWindow: {
max: 1,
min: 0
}
},
legend: { position: ‘none’ },
colors: colors,
height: 300
};
app_chart.setChartType(‘ColumnChart’);
app_chart.setDataTable(data);
app_chart.setOptions(options);
app_chart.draw();
}
function varsity_recruit() {
var data = new google.visualization.arrayToDataTable([
[‘Varsity’, ‘Count’],
[‘No’, 642],
[‘Yes’, 38]
]);
document.getElementById(‘plans_at_uc_header’).innerHTML =
‘Were you recruited to play for a varsity sports team?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
uchicago_chart.setChartType(‘PieChart’);
uchicago_chart.setDataTable(data);
uchicago_chart.setOptions(options);
uchicago_chart.draw();
}
function club_sports() {
var data = new google.visualization.arrayToDataTable([
[‘Varsity’, ‘Count’],
[‘No’, 170],
[‘Yes’, 223],
[‘Maybe’, 286]
]);
document.getElementById(‘plans_at_uc_header’).innerHTML =
‘Are you planning on playing any club sports at UChicago?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
uchicago_chart.setChartType(‘PieChart’);
uchicago_chart.setDataTable(data);
uchicago_chart.setOptions(options);
uchicago_chart.draw();
}
function dorm() {
var data = new google.visualization.arrayToDataTable([
[‘Varsity’, ‘Count’],
[‘Burton Judson’, 58],
[‘Campus North’, 223],
[‘International House’, 17],
[‘Max Palevsky’, 123],
[‘Renee Granville-Grossman (South)’, 94],
[‘Snell-Hitchcock’, 40],
[‘Stony Island’, 9]
]);
document.getElementById(‘plans_at_uc_header’).innerHTML =
‘Which dorm is your top preference?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
uchicago_chart.setChartType(‘PieChart’);
uchicago_chart.setDataTable(data);
uchicago_chart.setOptions(options);
uchicago_chart.draw();
}
function major() {
var data = new google.visualization.arrayToDataTable([
[‘Major’, ‘Class of 2020’, ‘Undergrads at UChicago’],
[‘Economics’, 0.1937, 0.2404],
[‘Undecided’, 0.0981, 0],
[‘Biology’, 0.0846, 0.1037],
[‘Math’, 0.0838, 0.1034],
[‘Other’, 0.0804, 0],
[‘Political Science’, 0.0795, 0.0854],
[‘Computer Science’, 0.0618, 0.0583],
[‘Physics’, 0.0609, 0.0559],
[‘Public Policy’, 0.0541, 0.0731],
[‘English’, 0.0415, 0.0462],
[‘Statistics’, 0.033, 0.033],
[‘History’, 0.033, 0.0395],
[‘Psychology’, 0.0228, 0.036],
[‘Chemistry’, 0.0228, 0.0333],
[‘Philosophy’, 0.0178, 0.036]
]);
formatter.format(data, 1);
formatter.format(data, 2);
document.getElementById(‘plans_at_uc_header’).innerHTML =
‘What do you anticipate in majoring in?’;
var options = {
vAxis: {
format: ‘percent’,
viewWindow: {
max: 0.3,
min: 0
}
},
hAxis: {
textStyle: {
fontSize: 9 // or the number you want
}
},
legend: { position: ‘none’ },
format: ‘percent’,
colors: colors,
height: 300
};
uchicago_chart.setChartType(‘ColumnChart’);
uchicago_chart.setDataTable(data);
uchicago_chart.setOptions(options);
uchicago_chart.draw();
}
function protest_political() {
var data = new google.visualization.arrayToDataTable([
[‘Political Spectrum’, ‘Percent Participating in Protests’],
[‘Very Liberal’, 0.7349],
[‘Somewhat Liberal’, 0.4892],
[‘Moderate’, 0.2569],
[‘Somewhat Conservative’, 0.05],
[‘Very Conservative’, 0]
]);
formatter.format(data, 1);
document.getElementById(‘plans_at_uc_header’).innerHTML =
‘Do you expect to participate in student protests or other demonstrations while at UChicago?’;
var options = {
vAxis: {
format: ‘percent’,
viewWindow: {
max: 1,
min: 0
}
},
hAxis: {
textStyle: {
fontSize: 10 // or the number you want
}
},
legend: { position: ‘none’ },
format: ‘percent’,
colors: colors,
height: 300
};
uchicago_chart.setChartType(‘ColumnChart’);
uchicago_chart.setDataTable(data);
uchicago_chart.setOptions(options);
uchicago_chart.draw();
}
function greek_life() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Count’],
[‘No’, 379],
[‘Maybe’, 225],
[‘Yes’, 77]
]);
document.getElementById(‘plans_at_uc_header’).innerHTML =
‘Do you plan on joining Greek life at UChicago?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
uchicago_chart.setChartType(‘PieChart’);
uchicago_chart.setDataTable(data);
uchicago_chart.setOptions(options);
uchicago_chart.draw();
}
function fin_aid() {
var data = new google.visualization.arrayToDataTable([
[‘Response’, ‘Count’],
[‘No’, 352],
[‘Yes’, 326]
]);
document.getElementById(‘plans_at_uc_header’).innerHTML =
‘Will you receive financial aid from UChicago?’;
var options = {
tooltip: { text: ‘percentage’ },
pieSliceText: ‘none’,
legend: { position: ‘labeled’ },
colors: colors,
height: 300
};
uchicago_chart.setChartType(‘PieChart’);
uchicago_chart.setDataTable(data);
uchicago_chart.setOptions(options);
uchicago_chart.draw();
}
function fin_aid_greek() {
var data = new google.visualization.arrayToDataTable([
[‘Joining Greek Life’, ‘Percent Recieving Financial Aid’],
[‘No’, 0.5172],
[‘Maybe’, 0.4484],
[‘Yes’, 0.2569]
]);
formatter.format(data, 1);
document.getElementById(‘plans_at_uc_header’).innerHTML =
‘Recieving Financial Aid by Willingness to Join Greek Life’;
var options = {
vAxis: {
format: ‘percent’,
viewWindow: {
max: 0.7,
min: 0
}
},
hAxis: {
textStyle: {
fontSize: 10 // or the number you want
}
},
legend: { position: ‘none’ },
format: ‘percent’,
colors: colors,
height: 300
};
uchicago_chart.setChartType(‘ColumnChart’);
uchicago_chart.setDataTable(data);
uchicago_chart.setOptions(options);
uchicago_chart.draw();
}
function optimism() {
var data = new google.visualization.arrayToDataTable([
[‘Optimism’, ‘Percent in this group’],
[‘Very Pessimistic’, 0.0059],
[”, 0.0251],
[”, 0.146],
[”, 0.4248],
[‘Very Optimistic’, 0.3982]
]);
document.getElementById(‘plans_at_uc_header’).innerHTML =
‘How optimistic are you about your future, in college and beyond?’;
formatter.format(data, 1);
var options = {
vAxis: {
format: ‘percent’,
viewWindow: {
max: 0.5,
min: 0
}
},
hAxis: {
textStyle: {
fontSize: 13 // or the number you want
}
},
legend: { position: ‘none’ },
format: ‘percent’,
colors: colors,
height: 300
};
uchicago_chart.setChartType(‘ColumnChart’);
uchicago_chart.setDataTable(data);
uchicago_chart.setOptions(options);
uchicago_chart.draw();
}
window.addEventListener(‘resize’, function () {
gender();
pvp_gender();
ethnicity();
orientation();
ht_location();
hometown();
pvp_hometown();
religion();
how_religious();
political_spectrum();
alcohol();
pvp_alcohol();
ht_alcohol();
alcohol_uc();
marijuana();
marijuana_uc();
fake_id();
fake_id_uc();
sex();
sex_uc();
gap_year_uc();
father_education();
mother_education();
legacy();
income();
income_legacy();
siblings();
school_type();
hs_job();
cheating();
alcohol_cheating();
ap_classes();
sat();
sat_recruit();
sat_ethnicity();
act();
pvp_counselor();
income_counselor();
top_choice();
acceptance_top_choice();
uc_app();
number_apps();
top_choice_uc_app();
varsity_recruit();
club_sports();
dorm();
major();
protest_political();
greek_life();
fin_aid();
fin_aid_greek();
optimism();
});
.column {
padding-bottom: 10px;
padding-right: 7px;
}
.data {
width: 100%;
min-height: 450px;
padding-top: 10px;
padding-bottom: 10px;
}
Intro
This summer, The Chicago Maroon sent an email to the Class of 2020 welcoming them to campus. In the same email, The Maroon also sent incoming freshmen a survey where they were able to answer questions about their backgrounds, life experiences, and plans for college. At the time of publication, 682 students had completed the survey. Although data isn’t available for the Class of 2020, this would reflect 44% of the Class of 2019; it’s likely the number isn’t drastically different for the Class of 2020.
Below are graphs that highlight some of the data from the survey. Although not all students responded to the survey, we think that 44% of the class represents a large enough sample to find some interesting trends. However The Maroon wants to stress that due to sampling bias, no statistically significant conclusions can be drawn from the data; rather, this article just serves to paint a general picture of the incoming class. We’ll start by looking at the backgrounds of students, and then gradually move to their plans at UChicago.
Demographics
There were far more female respondents to this survey than male students. This is likely the result of one of two phenomena. It could be that UChicago had an unusually high number of females matriculate. However, it could also be that females were disproportionately more likely to respond to this survey. Given historical admissions trends, the latter reason is most likely at least partially responsible. Interestingly enough, the gender discrepancy is removed when we look at private schools and amplified if we look at public schools. This could indicate that students at UChicago who come from private school have a higher than normal chance of being male.
The ethnicities reported are also slightly different than the ethnicities for UChicago's Class of 2019. Of students who responded to this survey, the proportion of students who identify as African American or Hispanic/Latino is several percentage points lower than we would have expected. Additionally, the percentage of students who identify as Indian or Asian is slightly higher than it was in the previous year. However, the percentage of students of each ethnicity varies drastically from year to year at UChicago. For example, the number of students who identify as Asian or Indian rose from 22.25% in the class of 2018 to 26.17% in the class of 2019. Regardless, the ethnicities in this sample differ slightly from previous years’.
Regarding where the Class of 2020 is from, nearly a quarter of respondents to the survey are from the Midwest. Historically, a large percentage of this group is from Illinois. 17.3% of students come from outside the United States. For the Class of 2019, 13.34% of students said they were international, a jump from 10.64% in the previous year. 17.3% follows along this increase, but is still abnormally high. Another interesting statistic is that students from private schools are over twice as likely to be from the city than students from public school (52.56% vs. 23.78%).
Gender by School
Ethnicity
Sexual Orientation
Location
Hometown
Hometown by School
Experiences
Respondents to the survey tended to not be very religious, with 68.08% saying they were "Not very religious" or "Not religious at all". This was reflected in respondents' religious identifications, as 45.8% of students said they were either Atheist or Agnostic. Respondents were very liberal, with 73.89%, almost three-fourths, saying they are somewhat or very liberal. Regarding gap years, students were much more likely to take a gap year if they went to a non-public high school. However, students who are wealthier aren't dramatically more likely to take a gap year; 4.2% of students whose families make over $500,000 took a gap year, versus 9.3% of students who went to private school.
A surprising find in the data is that students who lived in the city were 48% more likely to drink in high school than their rural counterparts. Students who went to private school were 26% more likely to drink than students who went to public school. The percent of students who said they plan to drink at UChicago is only 4.2% higher than the percent of students who said they drank in high school. However, the number is still much lower than the national average. According to the National Institute on Alcohol Abuse and Alcoholism, around 80% of college students drank alcohol in 2012. Surprisingly, the percentage of students who plan on using marijuana at UChicago is 1.7% less than the percentage of students who reported using marijuana in high school. We would typically assume that students try more illicit substances in college, as there's less supervision and wider access to drugs than in high school. Lastly, 78.2% of students said they anticipated having sex in college, more than double the number of students who reported having sex in high school.
Religion
How Religious
Political Spectrum
Gap Year by School
Alcohol Consumption
Alcohol at UC
Alcohol by School
Alcohol by Hometown
Marijuana Consumption
Marijuana at UC
Fake ID
Fake ID at UC
Sex at UC
Family
Parents of UChicago students tend to be highly educated. 87% of fathers and 84.9% of mothers have at least a bachelor's degree. In fact, for 44.5% of students, both their father and mother have graduate degrees. Even more, 62% of students who are legacy have parents who both obtained graduate degrees. UChicago students are also wealthy, with almost half of respondents, 47.6%, reporting that their family makes over $200,000 a year. Legacy students tend to have higher incomes than non-legacies, with almost a third of legacies reporting that their family makes over $500,000 a year. Lastly, most respondents, 50.69%, have just one sibling. The greatest number of siblings reported was 8.
Father’s Education
Mother’s Education
Income by Legacy
Siblings
High School
Almost half of respondents went to a public high school. Of students who went to a private school, roughly 20% went to a parochial high school. Respondents also tended to not work many hours their senior year, with 89.85% saying they worked less than 10 hours a week. Cheating, however, was fairly prevalent in high school. 42.27% of respondents said they cheated in high school, with 26.5% of those students saying they had cheated on a test. Students who drank in high school were almost 62% more likely to cheat in high school than students who haven't drank.
School Type
Job in HS
Cheating
Cheating by Alcohol Consumption
College Application
Unsurprisingly, UChicago students took many college level courses in high school. A fourth of respondents said they took more than 10 college level courses while in high school. UChicago students also performed well on the SAT; 34.9% of students reported getting a 2300 or above. However, students who were recruited to play a sport at UChicago on average scored 75 points worse on the SAT than students who weren't athletic recruits. SAT scores remained relatively constant across gender, but varied slightly more across ethnicity. Underrepresented minorities on average had lower SAT scores than non-underrepresented minorities. The average SAT score for all respondents was 2221. 11% more students reported taking the SAT than the ACT. Trends with ACT scores were similar to those with SAT scores.
Many UChicago students also hired private admissions counselors to help them with their college applications. As students' family income grew, they became more likely to hire an admissions counselor. Almost a third of students whose families earned more than $500,000 a year hired a private counselor, compared to under 10% for students whose families who earned less than $60,000. UChicago was 67% of students top choice, which is coincidentally very similar to UChicago's yield of 66%. Students who said UChicago wasn't their top choice on average applied to 11.2 schools and were accepted to on average 5.5 of those schools. Students who said UChicago was their top choice on average applied to 8.0 schools and were accepted to on average 5.2 schools.
Students who were accepted to UChicago early on average sent 4.9 less applications than students who weren't accepted early. Similarly, students who applied to UChicago early, regardless of whether or not they got in, reported UChicago as their top choice roughly three-fourths of the time, whereas students who applied regular reported UChicago as their top choice only half the time. It seems that getting in to UChicago early doesn't change students perceptions of it, but it does change how many colleges the student applies to.
College Classes
SAT by Athlete
SAT by Ethnicity
Counselor by School Type
Counselor by Income
UC Top Choice
Acceptance Rate by Top Choice
UC Application
Number of Applications by UC App
Top Choice by UC App
Plans at UChicago
Most students at UChicago weren't recruited athletes, but a lot of them are interested in playing sports. Almost three-fourths of students reported interest in playing club sports at UChicago. Students also showed a heavy interest in newer dorms, as the three newest dorms, Max, South, and North, were the top choice for over three-fourths of students. Almost 10% of students reported being undecided in their major, but students interests roughly match the majors of current undergraduates at the College, especially after factoring for undecided students. 47% of respondents said they were interested in activism while at UChicago, these students tended to be liberal.
44.3% of students reported interest in Greek Life. 66% of varsity recruits reported interest in Greek Life, with 42% saying they definitely planned on joining Greek Life. Students who indicated interest in Greek Life are also less likely to receive financial aid. Students who said they are definitely interested in joining Greek Life were half as likely to receive financial aid as a student who was definitely not interested in joining Greek Life. Lastly, UChicago students were very optimistic about their futures. 82% said they were optimistic about their plans for college and beyond.
Varsity Recruit
Club Sports
Protests by Political Affiliation
Greek Life
Financial Aid
Financial Aid by Greek Life
Optimism