The title is incorrect. This is a ranking of the US news top-25 universities, with an additional tag noting the number of congressmembers associated with the school.
If actually ordered by congressional representation the top-3 would be:
That sounds about exactly what one would expect. The best and the brightest of Stanford run into tech (mostly based in the Bay Area), and the best and the brightest from Princeton stream into finance and consulting firms (mostly based in New York.)
Indeed. Also observable in the fact that while Harvard is the wealthiest school on an absolute basis, Princeton has the largest endowment per enrolled student. Harvard is more than twice the size of Princeton.
That's true, the priority of U.S. News and World Report reflects not just the popularity of that particular list, but that most of those schools have fairly canonical names that are easy to text-mine against ("text-mine" in the most crudest form, string matching and some regexing)...this project started out as an attempt to find out how many Congressmembers had reached various levels of higher education (e.g. B.A.,B.S.,MBA, etc) but the descriptions of educational events is too inconsistent in the Congress bioguide (that's even before considering how school names changed over the centuries).
So I decided to make the text-mining easier by just searching for well-known schools. It's possible that a few of the big public prestigious schools, such as University of Michigan, would be near the top. The raw text from each Congressmember's biography can be found in the repo:
It's probably possible to (easily) automate the classification of how many Congressmembers served in the military or passed the bar...but I can save that for another day.
I would however at least provide the option to sort by congressmembers, and likely would make that the default. That would be more informative: anyone can look up the USNEWS Top-25.
Instead of mining the bio guide, I would mine Wikipedia. There is a page listing all members of the current U.S. Congress [0], and that page links to each member's own Wikipedia page. Almost without exception, each current member's personal page names the universities the member graduated from in the info box.
So mine the membership list for the members' names and the URLs of their personal Wikipedia pages, then mine the info box on each personal page for university affiliations. The links will allow you to disambiguate universities with similar names.
Pages also exist listing the membership of almost all former U.S. Congresses, so you could repeat the process going back in time; it would be interesting to see how affiliations have changed and diversified (or not) over the years. A similar process would work for finding the academic affiliations of members of the U.S. Supreme Court and the president's cabinet, as well as of state governors; it might even work to find comparable information for some sets of foreign poliicians (e.g., British MPs or members of European Parliament).
(And I agree with arcanus; you should change your page to sort by the count of affiliated members of Congress, not U.S. News rank, as it's the former that is the information being presented, not the latter.)
I haven't looked at extreme edge cases, but you're right, Wikipedia tends to have the right alma mater, included situations in which someone has only attended classes but isn't reported as actually matriculating.
It wouldn't require a big traversal of Wikipedia (though I imagine that would be easy enough)...the unitedstates Github repo, which is a semi-automated crowdsourced repo of Congress data, has all the historical Congressmembers as structured YAML, including their Wikipedia page (though I haven't counted to see how many have that attribute filled):
I was going to suggest looking at http://everypolitician.org but it seems like the US is ahead of the game in releasing this info. People from other countries that want to do similar might find it useful though.
You'd have to account for type and breadth of schools within each, in that case. Many schools don't have medical or architecture schools, so why include per capita counts?
What gives you the idea that Harvard is high population? It only has ~21000 at a time, including undergrad, grad, and professional students. Cal has 38000.
I think it's interesting (and somewhat saddening) how the engineering schools on the list tend to be outliers in their rank to legislator ratio.
I would assume it's due to the general breakdown of majors at those schools, but it's still unfortunate that STEM majors don't seem to have a good pathway into political activism.
I can think of reasons for a lot of the colleges that produce many more congress members than their rank might lead one to guess (Georgetown is in DC, the military academies seem to make sense).
But why is Wesleyan such an outlier? It is a fine school, of course, but so are many of the others. Do they have some powerhouse poli sci program I am unaware of?
As a Wesleyan alumn I was very surprised to see it so high, but I think it's likely a scraping error—searching for "Wesleyan University" shows many hits for Ohio Wesleyan, Kentucky Wesleyan, Texas Wesleyan, and so forth.
I think this has some issues. For example I live in Ohio, so I noticed "Oberlin College" in the liberal arts section. But one of them is from Oberlin College in N.Y., where as the other two are from Ohio (Two different cities named Oberlin). I feel like they shouldn't be listed together - as far as I know, there is no association, and with such low numbers of people this seems like a bit of an issue.
Yeah, just one of many examples of where the BioGuide text is inconsistent. It's only luck that Oberlin is a unique enough name that we can be relatively sure that the naive string matching refers to the one and only Oberlin College...
Congressmen. Congressmen! Members of Congress, if you must. "Congressmembers" is an abomination. I suspect that most female members of Congress would agree.
Edit: I agree with Michael. If we're going to use a neologism, let's use "congresscritter", because it correctly implies that they are slimy and disgusting creatures.
It would be interesting to see the next hundred schools. Places like Michigan State or Minnesota have so many students that it'd be interesting to see how many congress members they've produced.
It would also be interesting to see trends over time as well. Congress is more heavily tilted toward lawyers than it used to be 100 years ago. I wonder if that's part of the reason why the ivy league schools seem over-represented.
I think it is far more than just legacies. The proximity to capital hill and other government internships opens up many opportunities. Being regarded as the best school in D.C. means it is a natural talent feeder for government agencies.
It also has an extremely well regarded foreign service program.
Georgetown alum here and I can definitely vouch for this. While most students across the country would have to take an entire summer for an unpaid internship on The Hill while living in a very expensive city, our students can do this as an extra curricular during the academic year while living out of their dorm.
Plus if you're already doing political stuff in the city as a professional, the law school is not only the best in the area but one of the best in the country, which makes it a common choice for those in that line of work.
And let's not forget that this is just people affiliated with the university, which could include members of congress who teach classes at the school, not sure what the congressional roster is like right now but for example Madeline Albright teaches a very popular foreign service course.
Sigh. USN&WR rankings are commonly gamed by the institutions.
It would be interesting to see fraternity / secret society affiliations. For example, in 2004 both major party candidates for POTUS were members of the same secret society (Skull and Bones of Yale). Now there's a choice for ya.
It's also odd to see the armed forces service academies listed as "liberal arts" colleges.
57 comments
[ 3.4 ms ] story [ 128 ms ] threadIf actually ordered by congressional representation the top-3 would be:
1) Harvard
2) Yale
3) Georgetown
Also, it's Johnssssssss =P
So I decided to make the text-mining easier by just searching for well-known schools. It's possible that a few of the big public prestigious schools, such as University of Michigan, would be near the top. The raw text from each Congressmember's biography can be found in the repo:
https://github.com/dannguyen/congress-colleges/tree/master/d...
It's probably possible to (easily) automate the classification of how many Congressmembers served in the military or passed the bar...but I can save that for another day.
I would however at least provide the option to sort by congressmembers, and likely would make that the default. That would be more informative: anyone can look up the USNEWS Top-25.
So mine the membership list for the members' names and the URLs of their personal Wikipedia pages, then mine the info box on each personal page for university affiliations. The links will allow you to disambiguate universities with similar names.
Pages also exist listing the membership of almost all former U.S. Congresses, so you could repeat the process going back in time; it would be interesting to see how affiliations have changed and diversified (or not) over the years. A similar process would work for finding the academic affiliations of members of the U.S. Supreme Court and the president's cabinet, as well as of state governors; it might even work to find comparable information for some sets of foreign poliicians (e.g., British MPs or members of European Parliament).
(And I agree with arcanus; you should change your page to sort by the count of affiliated members of Congress, not U.S. News rank, as it's the former that is the information being presented, not the latter.)
0. https://en.m.wikipedia.org/wiki/114th_United_States_Congress
It wouldn't require a big traversal of Wikipedia (though I imagine that would be easy enough)...the unitedstates Github repo, which is a semi-automated crowdsourced repo of Congress data, has all the historical Congressmembers as structured YAML, including their Wikipedia page (though I haven't counted to see how many have that attribute filled):
https://github.com/unitedstates/congress-legislators
Not having it be per-capita overvalues high population schools like Harvard.
I would assume it's due to the general breakdown of majors at those schools, but it's still unfortunate that STEM majors don't seem to have a good pathway into political activism.
How many STEM majors want to be involved in politics? That's a complete field/industry change (not the case for law majors).
I imagine many of the Ivy degrees are MBAs and JDs and the like. That's a path for STEM to follow into politics...
There are indeed many advanced degree holders in congress:
https://en.wikipedia.org/wiki/Members_of_the_111th_United_St...
I worked the Obama campaign in '12. It was a blast, and I met a bunch of awesome people.
But why is Wesleyan such an outlier? It is a fine school, of course, but so are many of the others. Do they have some powerhouse poli sci program I am unaware of?
https://en.wikipedia.org/wiki/Indiana_Wesleyan_University
https://en.wikipedia.org/wiki/Texas_Wesleyan_University
https://en.wikipedia.org/wiki/Ohio_Wesleyan_University
http://www.wesleyan.edu/
http://bioguide.congress.gov/scripts/biodisplay.pl?index=C00...
I think that's a typo. There's no such city as "Oberlin, New York"
Wikipedia says Yvette Clarke went to Oberlin College in Oberlin, Ohio.
https://en.wikipedia.org/wiki/Yvette_Clarke
Edit: I agree with Michael. If we're going to use a neologism, let's use "congresscritter", because it correctly implies that they are slimy and disgusting creatures.
That's a false dichotomy. "Members of congress" is also gender neutral and doesn't require making a ridiculous new word.
It would be interesting to see the next hundred schools. Places like Michigan State or Minnesota have so many students that it'd be interesting to see how many congress members they've produced.
It would also be interesting to see trends over time as well. Congress is more heavily tilted toward lawyers than it used to be 100 years ago. I wonder if that's part of the reason why the ivy league schools seem over-represented.
It also has an extremely well regarded foreign service program.
Plus if you're already doing political stuff in the city as a professional, the law school is not only the best in the area but one of the best in the country, which makes it a common choice for those in that line of work.
And let's not forget that this is just people affiliated with the university, which could include members of congress who teach classes at the school, not sure what the congressional roster is like right now but for example Madeline Albright teaches a very popular foreign service course.
This is what's wrong with the US
It would be interesting to see fraternity / secret society affiliations. For example, in 2004 both major party candidates for POTUS were members of the same secret society (Skull and Bones of Yale). Now there's a choice for ya.
It's also odd to see the armed forces service academies listed as "liberal arts" colleges.