Skip to content

Instantly share code, notes, and snippets.

@walkerke
Created December 4, 2014 20:53
Show Gist options
  • Save walkerke/594d69fedf27bf3c5765 to your computer and use it in GitHub Desktop.
Save walkerke/594d69fedf27bf3c5765 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"metadata": {
"name": "",
"signature": "sha256:e16ee28a4ae2f8802d8c1131271a12b8c5d0fce848798fb24ba27c52d61eda51"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "code",
"collapsed": false,
"input": [
"import pandas as pd, numpy as np, random as rdm\n",
"from qgrid import show_grid"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 1
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This code is designed to create a dataframe with some of the core components that we need. "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"np.random.seed(1983)\n",
"\n",
"majors = ['polisci', 'geography', 'biology', 'engineering']\n",
"\n",
"allmajor = []\n",
"\n",
"i = 1\n",
"while i < 1001: \n",
" j = rdm.choice(majors)\n",
" allmajor.append(j)\n",
" i = i + 1\n",
"\n",
"semesters = ['F10', 'S10', 'F11', 'S11', 'F12', 'S12', 'F13', 'S13']\n",
"\n",
"students = range(1, 126) * 8\n",
"\n",
"students.sort()\n",
"\n",
"credits = np.random.randint(12, 19, size = 1000)\n",
"\n",
"gpa = np.random.uniform(2.0, 4.0, size = 1000)\n",
"\n",
"df1 = pd.DataFrame(data = {'studentid' : students, \n",
" 'gpa' : gpa, \n",
" 'credits' : credits, \n",
" 'semester' : semesters * 125, \n",
" 'major' : allmajor\n",
" })\n",
"\n",
"df1['cumcredits'] = df1.groupby('studentid')['credits'].cumsum()\n",
"\n",
"df1['weightedgpa'] = df1['gpa'] * df1['credits']\n",
"\n",
"# df1['cumgpa'] = df1.groupby('studentid')['gpa'].apply(pd.expanding_mean) -- This gives a rolling mean; below incorporates weights\n",
"\n",
"df1['cumgpa'] = df1.groupby('studentid')['weightedgpa'].cumsum() / df1['cumcredits']\n",
"\n",
"del df1['weightedgpa'] \n",
"\n",
"show_grid(df1, remote_js = True)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<script type=\"text/javascript\">\n",
"if ($(\"#dg-css\").length == 0){\n",
" $(\"head\").append([\n",
" \"<link href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.grid.css' rel='stylesheet'>\",\n",
" \"<link href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick-default-theme.css' rel='stylesheet'>\",\n",
" \"<link href='http://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.4/css/jquery-ui.min.css' rel='stylesheet'>\",\n",
" \"<link id='dg-css' href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.css' rel='stylesheet'>\"\n",
" ]);\n",
"}\n",
"</script>\n",
"<div class='q-grid-container'>\n",
"<div id='b05c0394-0d12-460a-b83e-889624a920b6' class='q-grid'></div>\n",
"</div>"
],
"metadata": {},
"output_type": "display_data"
},
{
"javascript": [
"var path_dictionary = {\n",
" jquery_drag: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/jquery.event.drag-2.2\",\n",
" slick_core: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.core.2.2\",\n",
" slick_data_view: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.dataview.2.2\",\n",
" slick_grid: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.grid.2.2\",\n",
" data_grid: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid\",\n",
" date_filter: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.datefilter\",\n",
" slider_filter: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.sliderfilter\",\n",
" filter_base: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.filterbase\",\n",
" handlebars: \"https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0/handlebars.min\"\n",
"};\n",
"\n",
"var existing_config = require.s.contexts._.config;\n",
"if (!existing_config.paths['underscore']){\n",
" path_dictionary['underscore'] = \"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min\";\n",
"}\n",
"\n",
"if (!existing_config.paths['moment']){\n",
" path_dictionary['moment'] = \"https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.3/moment.min\";\n",
"}\n",
"\n",
"if (!existing_config.paths['jqueryui']){\n",
" path_dictionary['jqueryui'] = \"https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min\";\n",
"}\n",
"\n",
"require.config({\n",
" paths: path_dictionary\n",
"});\n",
"\n",
"if (typeof jQuery === 'function') {\n",
" define('jquery', function() { return jQuery; });\n",
"}\n",
"\n",
"require([\n",
" 'jquery',\n",
" 'jquery_drag',\n",
" 'slick_core',\n",
" 'slick_data_view'\n",
"],\n",
"function($){\n",
" $('#b05c0394-0d12-460a-b83e-889624a920b6').closest('.rendered_html').removeClass('rendered_html');\n",
" require(['slick_grid'], function(){\n",
" require([\"data_grid\"], function(dgrid){\n",
" var grid = new dgrid.QGrid('#b05c0394-0d12-460a-b83e-889624a920b6', [{\"null\":0,\"credits\":14,\"gpa\":3.000325,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":1,\"cumcredits\":14,\"cumgpa\":3.000325},{\"null\":1,\"credits\":14,\"gpa\":2.098823,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":1,\"cumcredits\":28,\"cumgpa\":2.549574},{\"null\":2,\"credits\":18,\"gpa\":3.960285,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":1,\"cumcredits\":46,\"cumgpa\":3.101591},{\"null\":3,\"credits\":18,\"gpa\":2.109119,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":1,\"cumcredits\":64,\"cumgpa\":2.822458},{\"null\":4,\"credits\":12,\"gpa\":3.729988,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":1,\"cumcredits\":76,\"cumgpa\":2.965753},{\"null\":5,\"credits\":13,\"gpa\":2.673195,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":1,\"cumcredits\":89,\"cumgpa\":2.923019},{\"null\":6,\"credits\":14,\"gpa\":3.802531,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":1,\"cumcredits\":103,\"cumgpa\":3.042565},{\"null\":7,\"credits\":12,\"gpa\":2.738838,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":1,\"cumcredits\":115,\"cumgpa\":3.010871},{\"null\":8,\"credits\":13,\"gpa\":3.252868,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":2,\"cumcredits\":13,\"cumgpa\":3.252868},{\"null\":9,\"credits\":18,\"gpa\":2.797768,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":2,\"cumcredits\":31,\"cumgpa\":2.988617},{\"null\":10,\"credits\":12,\"gpa\":2.795278,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":2,\"cumcredits\":43,\"cumgpa\":2.934662},{\"null\":11,\"credits\":12,\"gpa\":3.252415,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":2,\"cumcredits\":55,\"cumgpa\":3.00399},{\"null\":12,\"credits\":18,\"gpa\":2.621278,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":2,\"cumcredits\":73,\"cumgpa\":2.909622},{\"null\":13,\"credits\":13,\"gpa\":2.412247,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":2,\"cumcredits\":86,\"cumgpa\":2.834438},{\"null\":14,\"credits\":17,\"gpa\":3.838631,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":2,\"cumcredits\":103,\"cumgpa\":3.000178},{\"null\":15,\"credits\":17,\"gpa\":2.01182,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":2,\"cumcredits\":120,\"cumgpa\":2.860161},{\"null\":16,\"credits\":14,\"gpa\":3.934065,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":3,\"cumcredits\":14,\"cumgpa\":3.934065},{\"null\":17,\"credits\":12,\"gpa\":3.006804,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":3,\"cumcredits\":26,\"cumgpa\":3.506098},{\"null\":18,\"credits\":15,\"gpa\":3.427276,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":3,\"cumcredits\":41,\"cumgpa\":3.477261},{\"null\":19,\"credits\":13,\"gpa\":2.781778,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":3,\"cumcredits\":54,\"cumgpa\":3.309829},{\"null\":20,\"credits\":17,\"gpa\":2.022716,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":3,\"cumcredits\":71,\"cumgpa\":3.001647},{\"null\":21,\"credits\":15,\"gpa\":2.017104,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":3,\"cumcredits\":86,\"cumgpa\":2.829925},{\"null\":22,\"credits\":18,\"gpa\":3.54374,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":3,\"cumcredits\":104,\"cumgpa\":2.95347},{\"null\":23,\"credits\":13,\"gpa\":3.140741,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":3,\"cumcredits\":117,\"cumgpa\":2.974278},{\"null\":24,\"credits\":18,\"gpa\":3.720242,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":4,\"cumcredits\":18,\"cumgpa\":3.720242},{\"null\":25,\"credits\":18,\"gpa\":3.624173,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":4,\"cumcredits\":36,\"cumgpa\":3.672208},{\"null\":26,\"credits\":15,\"gpa\":2.567702,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":4,\"cumcredits\":51,\"cumgpa\":3.347353},{\"null\":27,\"credits\":15,\"gpa\":3.90262,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":4,\"cumcredits\":66,\"cumgpa\":3.47355},{\"null\":28,\"credits\":13,\"gpa\":3.528087,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":4,\"cumcredits\":79,\"cumgpa\":3.482525},{\"null\":29,\"credits\":13,\"gpa\":3.969928,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":4,\"cumcredits\":92,\"cumgpa\":3.551397},{\"null\":30,\"credits\":18,\"gpa\":2.16064,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":4,\"cumcredits\":110,\"cumgpa\":3.323818},{\"null\":31,\"credits\":12,\"gpa\":2.18144,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":4,\"cumcredits\":122,\"cumgpa\":3.211453},{\"null\":32,\"credits\":17,\"gpa\":2.205424,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":5,\"cumcredits\":17,\"cumgpa\":2.205424},{\"null\":33,\"credits\":12,\"gpa\":3.630906,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":5,\"cumcredits\":29,\"cumgpa\":2.795279},{\"null\":34,\"credits\":16,\"gpa\":2.179225,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":5,\"cumcredits\":45,\"cumgpa\":2.576237},{\"null\":35,\"credits\":17,\"gpa\":3.716934,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":5,\"cumcredits\":62,\"cumgpa\":2.889009},{\"null\":36,\"credits\":15,\"gpa\":3.411172,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":5,\"cumcredits\":77,\"cumgpa\":2.990729},{\"null\":37,\"credits\":13,\"gpa\":3.449017,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":5,\"cumcredits\":90,\"cumgpa\":3.056926},{\"null\":38,\"credits\":13,\"gpa\":3.108719,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":5,\"cumcredits\":103,\"cumgpa\":3.063463},{\"null\":39,\"credits\":13,\"gpa\":3.002588,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":5,\"cumcredits\":116,\"cumgpa\":3.056641},{\"null\":40,\"credits\":17,\"gpa\":2.502475,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":6,\"cumcredits\":17,\"cumgpa\":2.502475},{\"null\":41,\"credits\":13,\"gpa\":2.372734,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":6,\"cumcredits\":30,\"cumgpa\":2.446254},{\"null\":42,\"credits\":18,\"gpa\":2.14011,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":6,\"cumcredits\":48,\"cumgpa\":2.33145},{\"null\":43,\"credits\":14,\"gpa\":2.05975,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":6,\"cumcredits\":62,\"cumgpa\":2.270098},{\"null\":44,\"credits\":18,\"gpa\":3.027494,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":6,\"cumcredits\":80,\"cumgpa\":2.440512},{\"null\":45,\"credits\":14,\"gpa\":2.324686,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":6,\"cumcredits\":94,\"cumgpa\":2.423262},{\"null\":46,\"credits\":16,\"gpa\":3.290379,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":6,\"cumcredits\":110,\"cumgpa\":2.549388},{\"null\":47,\"credits\":18,\"gpa\":3.808112,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":6,\"cumcredits\":128,\"cumgpa\":2.726396},{\"null\":48,\"credits\":18,\"gpa\":3.623871,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":7,\"cumcredits\":18,\"cumgpa\":3.623871},{\"null\":49,\"credits\":14,\"gpa\":3.205462,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":7,\"cumcredits\":32,\"cumgpa\":3.440817},{\"null\":50,\"credits\":14,\"gpa\":2.813445,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":7,\"cumcredits\":46,\"cumgpa\":3.249878},{\"null\":51,\"credits\":12,\"gpa\":2.008465,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":7,\"cumcredits\":58,\"cumgpa\":2.993034},{\"null\":52,\"credits\":13,\"gpa\":2.211705,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":7,\"cumcredits\":71,\"cumgpa\":2.849974},{\"null\":53,\"credits\":15,\"gpa\":3.91637,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":7,\"cumcredits\":86,\"cumgpa\":3.035973},{\"null\":54,\"credits\":16,\"gpa\":3.300348,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":7,\"cumcredits\":102,\"cumgpa\":3.077443},{\"null\":55,\"credits\":12,\"gpa\":2.108963,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":7,\"cumcredits\":114,\"cumgpa\":2.975498},{\"null\":56,\"credits\":16,\"gpa\":3.229197,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":8,\"cumcredits\":16,\"cumgpa\":3.229197},{\"null\":57,\"credits\":13,\"gpa\":3.361871,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":8,\"cumcredits\":29,\"cumgpa\":3.288672},{\"null\":58,\"credits\":18,\"gpa\":3.299633,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":8,\"cumcredits\":47,\"cumgpa\":3.29287},{\"null\":59,\"credits\":16,\"gpa\":3.538303,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":8,\"cumcredits\":63,\"cumgpa\":3.355202},{\"null\":60,\"credits\":15,\"gpa\":2.07998,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":8,\"cumcredits\":78,\"cumgpa\":3.109967},{\"null\":61,\"credits\":18,\"gpa\":3.500842,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":8,\"cumcredits\":96,\"cumgpa\":3.183256},{\"null\":62,\"credits\":18,\"gpa\":3.945564,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":8,\"cumcredits\":114,\"cumgpa\":3.303621},{\"null\":63,\"credits\":17,\"gpa\":3.709812,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":8,\"cumcredits\":131,\"cumgpa\":3.356332},{\"null\":64,\"credits\":14,\"gpa\":2.222926,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":9,\"cumcredits\":14,\"cumgpa\":2.222926},{\"null\":65,\"credits\":17,\"gpa\":3.829217,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":9,\"cumcredits\":31,\"cumgpa\":3.103795},{\"null\":66,\"credits\":13,\"gpa\":2.937381,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":9,\"cumcredits\":44,\"cumgpa\":3.054627},{\"null\":67,\"credits\":15,\"gpa\":3.101921,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":9,\"cumcredits\":59,\"cumgpa\":3.066651},{\"null\":68,\"credits\":12,\"gpa\":3.004347,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":9,\"cumcredits\":71,\"cumgpa\":3.056121},{\"null\":69,\"credits\":14,\"gpa\":3.39102,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":9,\"cumcredits\":85,\"cumgpa\":3.11128},{\"null\":70,\"credits\":14,\"gpa\":3.018215,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":9,\"cumcredits\":99,\"cumgpa\":3.09812},{\"null\":71,\"credits\":15,\"gpa\":2.032442,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":9,\"cumcredits\":114,\"cumgpa\":2.957899},{\"null\":72,\"credits\":13,\"gpa\":2.620515,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":10,\"cumcredits\":13,\"cumgpa\":2.620515},{\"null\":73,\"credits\":16,\"gpa\":3.246491,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":10,\"cumcredits\":29,\"cumgpa\":2.965881},{\"null\":74,\"credits\":14,\"gpa\":2.627421,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":10,\"cumcredits\":43,\"cumgpa\":2.855685},{\"null\":75,\"credits\":18,\"gpa\":2.136314,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":10,\"cumcredits\":61,\"cumgpa\":2.643411},{\"null\":76,\"credits\":17,\"gpa\":2.861393,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":10,\"cumcredits\":78,\"cumgpa\":2.69092},{\"null\":77,\"credits\":17,\"gpa\":3.043401,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":10,\"cumcredits\":95,\"cumgpa\":2.753996},{\"null\":78,\"credits\":17,\"gpa\":3.336202,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":10,\"cumcredits\":112,\"cumgpa\":2.842366},{\"null\":79,\"credits\":18,\"gpa\":2.400975,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":10,\"cumcredits\":130,\"cumgpa\":2.781251},{\"null\":80,\"credits\":17,\"gpa\":2.664177,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":11,\"cumcredits\":17,\"cumgpa\":2.664177},{\"null\":81,\"credits\":12,\"gpa\":2.915876,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":11,\"cumcredits\":29,\"cumgpa\":2.768328},{\"null\":82,\"credits\":18,\"gpa\":2.52801,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":11,\"cumcredits\":47,\"cumgpa\":2.676291},{\"null\":83,\"credits\":18,\"gpa\":3.150819,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":11,\"cumcredits\":65,\"cumgpa\":2.807699},{\"null\":84,\"credits\":13,\"gpa\":2.077329,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":11,\"cumcredits\":78,\"cumgpa\":2.685971},{\"null\":85,\"credits\":14,\"gpa\":3.716005,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":11,\"cumcredits\":92,\"cumgpa\":2.842715},{\"null\":86,\"credits\":12,\"gpa\":3.498751,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":11,\"cumcredits\":104,\"cumgpa\":2.918412},{\"null\":87,\"credits\":17,\"gpa\":2.305475,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":11,\"cumcredits\":121,\"cumgpa\":2.832297},{\"null\":88,\"credits\":14,\"gpa\":2.219078,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":12,\"cumcredits\":14,\"cumgpa\":2.219078},{\"null\":89,\"credits\":16,\"gpa\":2.619026,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":12,\"cumcredits\":30,\"cumgpa\":2.432383},{\"null\":90,\"credits\":18,\"gpa\":3.500225,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":12,\"cumcredits\":48,\"cumgpa\":2.832824},{\"null\":91,\"credits\":14,\"gpa\":2.75685,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":12,\"cumcredits\":62,\"cumgpa\":2.815668},{\"null\":92,\"credits\":17,\"gpa\":2.634187,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":12,\"cumcredits\":79,\"cumgpa\":2.776615},{\"null\":93,\"credits\":12,\"gpa\":2.340961,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":12,\"cumcredits\":91,\"cumgpa\":2.719167},{\"null\":94,\"credits\":14,\"gpa\":2.169421,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":12,\"cumcredits\":105,\"cumgpa\":2.645867},{\"null\":95,\"credits\":17,\"gpa\":3.116521,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":12,\"cumcredits\":122,\"cumgpa\":2.71145},{\"null\":96,\"credits\":18,\"gpa\":2.464738,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":13,\"cumcredits\":18,\"cumgpa\":2.464738},{\"null\":97,\"credits\":16,\"gpa\":3.853071,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":13,\"cumcredits\":34,\"cumgpa\":3.118071},{\"null\":98,\"credits\":17,\"gpa\":3.988096,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":13,\"cumcredits\":51,\"cumgpa\":3.408079},{\"null\":99,\"credits\":16,\"gpa\":3.551157,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":13,\"cumcredits\":67,\"cumgpa\":3.442247},{\"null\":100,\"credits\":18,\"gpa\":3.153869,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":13,\"cumcredits\":85,\"cumgpa\":3.381179},{\"null\":101,\"credits\":17,\"gpa\":2.956457,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":13,\"cumcredits\":102,\"cumgpa\":3.310392},{\"null\":102,\"credits\":14,\"gpa\":2.274976,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":13,\"cumcredits\":116,\"cumgpa\":3.185428},{\"null\":103,\"credits\":13,\"gpa\":3.975786,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":13,\"cumcredits\":129,\"cumgpa\":3.265076},{\"null\":104,\"credits\":16,\"gpa\":2.662644,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":14,\"cumcredits\":16,\"cumgpa\":2.662644},{\"null\":105,\"credits\":14,\"gpa\":2.519406,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":14,\"cumcredits\":30,\"cumgpa\":2.5958},{\"null\":106,\"credits\":12,\"gpa\":2.420504,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":14,\"cumcredits\":42,\"cumgpa\":2.545715},{\"null\":107,\"credits\":12,\"gpa\":2.638932,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":14,\"cumcredits\":54,\"cumgpa\":2.56643},{\"null\":108,\"credits\":17,\"gpa\":2.123532,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":14,\"cumcredits\":71,\"cumgpa\":2.460384},{\"null\":109,\"credits\":15,\"gpa\":3.363737,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":14,\"cumcredits\":86,\"cumgpa\":2.617946},{\"null\":110,\"credits\":15,\"gpa\":2.315493,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":14,\"cumcredits\":101,\"cumgpa\":2.573027},{\"null\":111,\"credits\":18,\"gpa\":2.192757,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":14,\"cumcredits\":119,\"cumgpa\":2.515507},{\"null\":112,\"credits\":15,\"gpa\":2.344284,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":15,\"cumcredits\":15,\"cumgpa\":2.344284},{\"null\":113,\"credits\":16,\"gpa\":2.213452,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":15,\"cumcredits\":31,\"cumgpa\":2.276757},{\"null\":114,\"credits\":16,\"gpa\":3.131995,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":15,\"cumcredits\":47,\"cumgpa\":2.567902},{\"null\":115,\"credits\":18,\"gpa\":3.183565,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":15,\"cumcredits\":65,\"cumgpa\":2.738393},{\"null\":116,\"credits\":12,\"gpa\":3.507281,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":15,\"cumcredits\":77,\"cumgpa\":2.85822},{\"null\":117,\"credits\":15,\"gpa\":2.010083,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":15,\"cumcredits\":92,\"cumgpa\":2.719937},{\"null\":118,\"credits\":13,\"gpa\":3.201134,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":15,\"cumcredits\":105,\"cumgpa\":2.779514},{\"null\":119,\"credits\":12,\"gpa\":2.828075,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":15,\"cumcredits\":117,\"cumgpa\":2.784494},{\"null\":120,\"credits\":17,\"gpa\":2.233428,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":16,\"cumcredits\":17,\"cumgpa\":2.233428},{\"null\":121,\"credits\":12,\"gpa\":2.167532,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":16,\"cumcredits\":29,\"cumgpa\":2.20616},{\"null\":122,\"credits\":17,\"gpa\":2.298006,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":16,\"cumcredits\":46,\"cumgpa\":2.240103},{\"null\":123,\"credits\":17,\"gpa\":2.579019,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":16,\"cumcredits\":63,\"cumgpa\":2.331557},{\"null\":124,\"credits\":12,\"gpa\":3.898172,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":16,\"cumcredits\":75,\"cumgpa\":2.582215},{\"null\":125,\"credits\":18,\"gpa\":2.703916,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":16,\"cumcredits\":93,\"cumgpa\":2.60577},{\"null\":126,\"credits\":12,\"gpa\":2.9535,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":16,\"cumcredits\":105,\"cumgpa\":2.645511},{\"null\":127,\"credits\":17,\"gpa\":2.33115,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":16,\"cumcredits\":122,\"cumgpa\":2.601707},{\"null\":128,\"credits\":15,\"gpa\":3.308571,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":17,\"cumcredits\":15,\"cumgpa\":3.308571},{\"null\":129,\"credits\":15,\"gpa\":2.641142,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":17,\"cumcredits\":30,\"cumgpa\":2.974857},{\"null\":130,\"credits\":12,\"gpa\":2.567398,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":17,\"cumcredits\":42,\"cumgpa\":2.85844},{\"null\":131,\"credits\":17,\"gpa\":2.896388,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":17,\"cumcredits\":59,\"cumgpa\":2.869374},{\"null\":132,\"credits\":15,\"gpa\":2.011266,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":17,\"cumcredits\":74,\"cumgpa\":2.695433},{\"null\":133,\"credits\":13,\"gpa\":2.483199,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":17,\"cumcredits\":87,\"cumgpa\":2.66372},{\"null\":134,\"credits\":13,\"gpa\":3.778985,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":17,\"cumcredits\":100,\"cumgpa\":2.808705},{\"null\":135,\"credits\":13,\"gpa\":3.176639,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":17,\"cumcredits\":113,\"cumgpa\":2.851033},{\"null\":136,\"credits\":17,\"gpa\":3.215513,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":18,\"cumcredits\":17,\"cumgpa\":3.215513},{\"null\":137,\"credits\":14,\"gpa\":3.793567,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":18,\"cumcredits\":31,\"cumgpa\":3.476569},{\"null\":138,\"credits\":17,\"gpa\":3.922082,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":18,\"cumcredits\":48,\"cumgpa\":3.634355},{\"null\":139,\"credits\":18,\"gpa\":3.563885,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":18,\"cumcredits\":66,\"cumgpa\":3.615136},{\"null\":140,\"credits\":16,\"gpa\":3.666226,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":18,\"cumcredits\":82,\"cumgpa\":3.625105},{\"null\":141,\"credits\":16,\"gpa\":3.206859,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":18,\"cumcredits\":98,\"cumgpa\":3.55682},{\"null\":142,\"credits\":15,\"gpa\":3.392896,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":18,\"cumcredits\":113,\"cumgpa\":3.53506},{\"null\":143,\"credits\":15,\"gpa\":3.581762,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":18,\"cumcredits\":128,\"cumgpa\":3.540533},{\"null\":144,\"credits\":15,\"gpa\":2.041031,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":19,\"cumcredits\":15,\"cumgpa\":2.041031},{\"null\":145,\"credits\":14,\"gpa\":3.156315,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":19,\"cumcredits\":29,\"cumgpa\":2.579444},{\"null\":146,\"credits\":12,\"gpa\":3.192812,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":19,\"cumcredits\":41,\"cumgpa\":2.758966},{\"null\":147,\"credits\":14,\"gpa\":2.382413,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":19,\"cumcredits\":55,\"cumgpa\":2.663116},{\"null\":148,\"credits\":16,\"gpa\":2.104483,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":19,\"cumcredits\":71,\"cumgpa\":2.537227},{\"null\":149,\"credits\":13,\"gpa\":3.039252,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":19,\"cumcredits\":84,\"cumgpa\":2.614921},{\"null\":150,\"credits\":12,\"gpa\":2.475738,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":19,\"cumcredits\":96,\"cumgpa\":2.597523},{\"null\":151,\"credits\":15,\"gpa\":2.998279,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":19,\"cumcredits\":111,\"cumgpa\":2.65168},{\"null\":152,\"credits\":18,\"gpa\":3.501074,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":20,\"cumcredits\":18,\"cumgpa\":3.501074},{\"null\":153,\"credits\":16,\"gpa\":3.418947,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":20,\"cumcredits\":34,\"cumgpa\":3.462426},{\"null\":154,\"credits\":18,\"gpa\":2.414334,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":20,\"cumcredits\":52,\"cumgpa\":3.099625},{\"null\":155,\"credits\":15,\"gpa\":2.482762,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":20,\"cumcredits\":67,\"cumgpa\":2.961521},{\"null\":156,\"credits\":14,\"gpa\":3.657767,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":20,\"cumcredits\":81,\"cumgpa\":3.08186},{\"null\":157,\"credits\":16,\"gpa\":2.605151,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":20,\"cumcredits\":97,\"cumgpa\":3.003228},{\"null\":158,\"credits\":18,\"gpa\":2.907991,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":20,\"cumcredits\":115,\"cumgpa\":2.988321},{\"null\":159,\"credits\":17,\"gpa\":2.393747,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":20,\"cumcredits\":132,\"cumgpa\":2.911747},{\"null\":160,\"credits\":17,\"gpa\":3.25443,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":21,\"cumcredits\":17,\"cumgpa\":3.25443},{\"null\":161,\"credits\":16,\"gpa\":2.304713,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":21,\"cumcredits\":33,\"cumgpa\":2.793961},{\"null\":162,\"credits\":14,\"gpa\":3.690392,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":21,\"cumcredits\":47,\"cumgpa\":3.060983},{\"null\":163,\"credits\":13,\"gpa\":2.030248,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":21,\"cumcredits\":60,\"cumgpa\":2.837657},{\"null\":164,\"credits\":14,\"gpa\":3.540999,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":21,\"cumcredits\":74,\"cumgpa\":2.970722},{\"null\":165,\"credits\":16,\"gpa\":3.043614,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":21,\"cumcredits\":90,\"cumgpa\":2.983681},{\"null\":166,\"credits\":12,\"gpa\":3.743834,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":21,\"cumcredits\":102,\"cumgpa\":3.07311},{\"null\":167,\"credits\":12,\"gpa\":3.086025,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":21,\"cumcredits\":114,\"cumgpa\":3.07447},{\"null\":168,\"credits\":18,\"gpa\":2.117297,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":22,\"cumcredits\":18,\"cumgpa\":2.117297},{\"null\":169,\"credits\":16,\"gpa\":2.816157,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":22,\"cumcredits\":34,\"cumgpa\":2.446172},{\"null\":170,\"credits\":12,\"gpa\":3.740611,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":22,\"cumcredits\":46,\"cumgpa\":2.783852},{\"null\":171,\"credits\":14,\"gpa\":2.564632,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":22,\"cumcredits\":60,\"cumgpa\":2.732701},{\"null\":172,\"credits\":12,\"gpa\":3.522869,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":22,\"cumcredits\":72,\"cumgpa\":2.864395},{\"null\":173,\"credits\":18,\"gpa\":2.804299,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":22,\"cumcredits\":90,\"cumgpa\":2.852376},{\"null\":174,\"credits\":15,\"gpa\":3.653729,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":22,\"cumcredits\":105,\"cumgpa\":2.966855},{\"null\":175,\"credits\":15,\"gpa\":2.762778,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":22,\"cumcredits\":120,\"cumgpa\":2.941345},{\"null\":176,\"credits\":15,\"gpa\":3.78891,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":23,\"cumcredits\":15,\"cumgpa\":3.78891},{\"null\":177,\"credits\":17,\"gpa\":2.942795,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":23,\"cumcredits\":32,\"cumgpa\":3.339411},{\"null\":178,\"credits\":18,\"gpa\":2.735441,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":23,\"cumcredits\":50,\"cumgpa\":3.121982},{\"null\":179,\"credits\":13,\"gpa\":2.345866,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":23,\"cumcredits\":63,\"cumgpa\":2.961831},{\"null\":180,\"credits\":15,\"gpa\":3.39025,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":23,\"cumcredits\":78,\"cumgpa\":3.044219},{\"null\":181,\"credits\":17,\"gpa\":3.823959,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":23,\"cumcredits\":95,\"cumgpa\":3.183752},{\"null\":182,\"credits\":17,\"gpa\":3.505668,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":23,\"cumcredits\":112,\"cumgpa\":3.232614},{\"null\":183,\"credits\":18,\"gpa\":2.855415,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":23,\"cumcredits\":130,\"cumgpa\":3.180386},{\"null\":184,\"credits\":12,\"gpa\":3.752572,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":24,\"cumcredits\":12,\"cumgpa\":3.752572},{\"null\":185,\"credits\":18,\"gpa\":3.522546,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":24,\"cumcredits\":30,\"cumgpa\":3.614556},{\"null\":186,\"credits\":15,\"gpa\":3.152196,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":24,\"cumcredits\":45,\"cumgpa\":3.460436},{\"null\":187,\"credits\":17,\"gpa\":2.980248,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":24,\"cumcredits\":62,\"cumgpa\":3.328772},{\"null\":188,\"credits\":12,\"gpa\":3.139992,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":24,\"cumcredits\":74,\"cumgpa\":3.298159},{\"null\":189,\"credits\":17,\"gpa\":3.300582,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":24,\"cumcredits\":91,\"cumgpa\":3.298612},{\"null\":190,\"credits\":12,\"gpa\":2.186134,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":24,\"cumcredits\":103,\"cumgpa\":3.169003},{\"null\":191,\"credits\":13,\"gpa\":2.844689,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":24,\"cumcredits\":116,\"cumgpa\":3.132657},{\"null\":192,\"credits\":16,\"gpa\":2.963991,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":25,\"cumcredits\":16,\"cumgpa\":2.963991},{\"null\":193,\"credits\":12,\"gpa\":2.357577,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":25,\"cumcredits\":28,\"cumgpa\":2.704099},{\"null\":194,\"credits\":14,\"gpa\":3.58008,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":25,\"cumcredits\":42,\"cumgpa\":2.996093},{\"null\":195,\"credits\":17,\"gpa\":2.221723,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":25,\"cumcredits\":59,\"cumgpa\":2.772969},{\"null\":196,\"credits\":12,\"gpa\":3.339119,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":25,\"cumcredits\":71,\"cumgpa\":2.868656},{\"null\":197,\"credits\":16,\"gpa\":3.52166,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":25,\"cumcredits\":87,\"cumgpa\":2.988749},{\"null\":198,\"credits\":18,\"gpa\":2.706279,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":25,\"cumcredits\":105,\"cumgpa\":2.940326},{\"null\":199,\"credits\":18,\"gpa\":3.707619,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":25,\"cumcredits\":123,\"cumgpa\":3.052612},{\"null\":200,\"credits\":16,\"gpa\":3.0538,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":26,\"cumcredits\":16,\"cumgpa\":3.0538},{\"null\":201,\"credits\":16,\"gpa\":2.885082,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":26,\"cumcredits\":32,\"cumgpa\":2.969441},{\"null\":202,\"credits\":13,\"gpa\":3.465149,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":26,\"cumcredits\":45,\"cumgpa\":3.112645},{\"null\":203,\"credits\":17,\"gpa\":2.429325,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":26,\"cumcredits\":62,\"cumgpa\":2.925284},{\"null\":204,\"credits\":18,\"gpa\":3.020304,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":26,\"cumcredits\":80,\"cumgpa\":2.946663},{\"null\":205,\"credits\":13,\"gpa\":2.356466,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":26,\"cumcredits\":93,\"cumgpa\":2.864162},{\"null\":206,\"credits\":14,\"gpa\":2.685002,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":26,\"cumcredits\":107,\"cumgpa\":2.840721},{\"null\":207,\"credits\":16,\"gpa\":2.228137,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":26,\"cumcredits\":123,\"cumgpa\":2.761035},{\"null\":208,\"credits\":16,\"gpa\":3.99972,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":27,\"cumcredits\":16,\"cumgpa\":3.99972},{\"null\":209,\"credits\":14,\"gpa\":2.564704,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":27,\"cumcredits\":30,\"cumgpa\":3.330046},{\"null\":210,\"credits\":17,\"gpa\":2.892188,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":27,\"cumcredits\":47,\"cumgpa\":3.171672},{\"null\":211,\"credits\":16,\"gpa\":2.78184,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":27,\"cumcredits\":63,\"cumgpa\":3.072667},{\"null\":212,\"credits\":16,\"gpa\":3.61684,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":27,\"cumcredits\":79,\"cumgpa\":3.182879},{\"null\":213,\"credits\":17,\"gpa\":2.394315,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":27,\"cumcredits\":96,\"cumgpa\":3.043237},{\"null\":214,\"credits\":15,\"gpa\":3.724927,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":27,\"cumcredits\":111,\"cumgpa\":3.135358},{\"null\":215,\"credits\":14,\"gpa\":2.588353,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":27,\"cumcredits\":125,\"cumgpa\":3.074093},{\"null\":216,\"credits\":15,\"gpa\":3.351762,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":28,\"cumcredits\":15,\"cumgpa\":3.351762},{\"null\":217,\"credits\":15,\"gpa\":3.246795,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":28,\"cumcredits\":30,\"cumgpa\":3.299279},{\"null\":218,\"credits\":13,\"gpa\":3.18507,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":28,\"cumcredits\":43,\"cumgpa\":3.264751},{\"null\":219,\"credits\":15,\"gpa\":3.106387,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":28,\"cumcredits\":58,\"cumgpa\":3.223794},{\"null\":220,\"credits\":16,\"gpa\":2.705353,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":28,\"cumcredits\":74,\"cumgpa\":3.111699},{\"null\":221,\"credits\":15,\"gpa\":2.644712,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":28,\"cumcredits\":89,\"cumgpa\":3.032993},{\"null\":222,\"credits\":18,\"gpa\":3.067591,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":28,\"cumcredits\":107,\"cumgpa\":3.038813},{\"null\":223,\"credits\":16,\"gpa\":2.177495,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":28,\"cumcredits\":123,\"cumgpa\":2.926772},{\"null\":224,\"credits\":16,\"gpa\":3.283523,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":29,\"cumcredits\":16,\"cumgpa\":3.283523},{\"null\":225,\"credits\":14,\"gpa\":3.713645,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":29,\"cumcredits\":30,\"cumgpa\":3.484246},{\"null\":226,\"credits\":14,\"gpa\":3.868214,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":29,\"cumcredits\":44,\"cumgpa\":3.606418},{\"null\":227,\"credits\":13,\"gpa\":3.197901,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":29,\"cumcredits\":57,\"cumgpa\":3.513247},{\"null\":228,\"credits\":17,\"gpa\":3.457326,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":29,\"cumcredits\":74,\"cumgpa\":3.500401},{\"null\":229,\"credits\":18,\"gpa\":2.819933,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":29,\"cumcredits\":92,\"cumgpa\":3.367266},{\"null\":230,\"credits\":13,\"gpa\":3.57411,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":29,\"cumcredits\":105,\"cumgpa\":3.392875},{\"null\":231,\"credits\":13,\"gpa\":2.108164,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":29,\"cumcredits\":118,\"cumgpa\":3.251339},{\"null\":232,\"credits\":17,\"gpa\":2.370236,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":30,\"cumcredits\":17,\"cumgpa\":2.370236},{\"null\":233,\"credits\":15,\"gpa\":3.113721,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":30,\"cumcredits\":32,\"cumgpa\":2.718745},{\"null\":234,\"credits\":17,\"gpa\":2.953668,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":30,\"cumcredits\":49,\"cumgpa\":2.800249},{\"null\":235,\"credits\":16,\"gpa\":3.597622,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":30,\"cumcredits\":65,\"cumgpa\":2.996525},{\"null\":236,\"credits\":14,\"gpa\":2.028046,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":30,\"cumcredits\":79,\"cumgpa\":2.824896},{\"null\":237,\"credits\":13,\"gpa\":3.765596,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":30,\"cumcredits\":92,\"cumgpa\":2.957821},{\"null\":238,\"credits\":17,\"gpa\":2.883755,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":30,\"cumcredits\":109,\"cumgpa\":2.946269},{\"null\":239,\"credits\":15,\"gpa\":3.532662,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":30,\"cumcredits\":124,\"cumgpa\":3.017204},{\"null\":240,\"credits\":14,\"gpa\":3.599371,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":31,\"cumcredits\":14,\"cumgpa\":3.599371},{\"null\":241,\"credits\":12,\"gpa\":2.280029,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":31,\"cumcredits\":26,\"cumgpa\":2.990444},{\"null\":242,\"credits\":15,\"gpa\":2.601362,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":31,\"cumcredits\":41,\"cumgpa\":2.848097},{\"null\":243,\"credits\":18,\"gpa\":3.152725,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":31,\"cumcredits\":59,\"cumgpa\":2.941034},{\"null\":244,\"credits\":12,\"gpa\":3.358292,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":31,\"cumcredits\":71,\"cumgpa\":3.011557},{\"null\":245,\"credits\":15,\"gpa\":2.868379,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":31,\"cumcredits\":86,\"cumgpa\":2.986584},{\"null\":246,\"credits\":13,\"gpa\":2.763704,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":31,\"cumcredits\":99,\"cumgpa\":2.957317},{\"null\":247,\"credits\":15,\"gpa\":2.795024,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":31,\"cumcredits\":114,\"cumgpa\":2.935963},{\"null\":248,\"credits\":18,\"gpa\":3.540857,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":32,\"cumcredits\":18,\"cumgpa\":3.540857},{\"null\":249,\"credits\":14,\"gpa\":2.619641,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":32,\"cumcredits\":32,\"cumgpa\":3.137825},{\"null\":250,\"credits\":13,\"gpa\":3.681297,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":32,\"cumcredits\":45,\"cumgpa\":3.294828},{\"null\":251,\"credits\":16,\"gpa\":2.472277,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":32,\"cumcredits\":61,\"cumgpa\":3.079077},{\"null\":252,\"credits\":15,\"gpa\":3.274451,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":32,\"cumcredits\":76,\"cumgpa\":3.117638},{\"null\":253,\"credits\":17,\"gpa\":3.76593,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":32,\"cumcredits\":93,\"cumgpa\":3.236143},{\"null\":254,\"credits\":12,\"gpa\":2.229049,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":32,\"cumcredits\":105,\"cumgpa\":3.121046},{\"null\":255,\"credits\":16,\"gpa\":3.480051,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":32,\"cumcredits\":121,\"cumgpa\":3.168518},{\"null\":256,\"credits\":17,\"gpa\":2.832566,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":33,\"cumcredits\":17,\"cumgpa\":2.832566},{\"null\":257,\"credits\":15,\"gpa\":2.726147,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":33,\"cumcredits\":32,\"cumgpa\":2.782682},{\"null\":258,\"credits\":16,\"gpa\":3.896235,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":33,\"cumcredits\":48,\"cumgpa\":3.153866},{\"null\":259,\"credits\":18,\"gpa\":2.940513,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":33,\"cumcredits\":66,\"cumgpa\":3.095679},{\"null\":260,\"credits\":13,\"gpa\":3.671607,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":33,\"cumcredits\":79,\"cumgpa\":3.190452},{\"null\":261,\"credits\":17,\"gpa\":2.242225,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":33,\"cumcredits\":96,\"cumgpa\":3.022537},{\"null\":262,\"credits\":17,\"gpa\":3.275462,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":33,\"cumcredits\":113,\"cumgpa\":3.060588},{\"null\":263,\"credits\":16,\"gpa\":3.019487,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":33,\"cumcredits\":129,\"cumgpa\":3.05549},{\"null\":264,\"credits\":18,\"gpa\":2.029483,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":34,\"cumcredits\":18,\"cumgpa\":2.029483},{\"null\":265,\"credits\":13,\"gpa\":3.293874,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":34,\"cumcredits\":31,\"cumgpa\":2.559711},{\"null\":266,\"credits\":17,\"gpa\":3.514956,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":34,\"cumcredits\":48,\"cumgpa\":2.898027},{\"null\":267,\"credits\":17,\"gpa\":3.946259,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":34,\"cumcredits\":65,\"cumgpa\":3.17218},{\"null\":268,\"credits\":18,\"gpa\":3.458008,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":34,\"cumcredits\":83,\"cumgpa\":3.234167},{\"null\":269,\"credits\":15,\"gpa\":3.853584,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":34,\"cumcredits\":98,\"cumgpa\":3.328975},{\"null\":270,\"credits\":14,\"gpa\":3.926756,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":34,\"cumcredits\":112,\"cumgpa\":3.403698},{\"null\":271,\"credits\":14,\"gpa\":2.14852,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":34,\"cumcredits\":126,\"cumgpa\":3.264234},{\"null\":272,\"credits\":12,\"gpa\":2.596714,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":35,\"cumcredits\":12,\"cumgpa\":2.596714},{\"null\":273,\"credits\":17,\"gpa\":3.684326,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":35,\"cumcredits\":29,\"cumgpa\":3.23428},{\"null\":274,\"credits\":14,\"gpa\":2.9871,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":35,\"cumcredits\":43,\"cumgpa\":3.153803},{\"null\":275,\"credits\":18,\"gpa\":3.46494,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":35,\"cumcredits\":61,\"cumgpa\":3.245614},{\"null\":276,\"credits\":17,\"gpa\":2.705667,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":35,\"cumcredits\":78,\"cumgpa\":3.127933},{\"null\":277,\"credits\":13,\"gpa\":2.205771,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":35,\"cumcredits\":91,\"cumgpa\":2.996196},{\"null\":278,\"credits\":15,\"gpa\":3.324397,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":35,\"cumcredits\":106,\"cumgpa\":3.042639},{\"null\":279,\"credits\":15,\"gpa\":2.843382,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":35,\"cumcredits\":121,\"cumgpa\":3.017938},{\"null\":280,\"credits\":13,\"gpa\":2.423531,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":36,\"cumcredits\":13,\"cumgpa\":2.423531},{\"null\":281,\"credits\":13,\"gpa\":3.876437,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":36,\"cumcredits\":26,\"cumgpa\":3.149984},{\"null\":282,\"credits\":14,\"gpa\":3.486189,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":36,\"cumcredits\":40,\"cumgpa\":3.267656},{\"null\":283,\"credits\":15,\"gpa\":3.093648,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":36,\"cumcredits\":55,\"cumgpa\":3.220199},{\"null\":284,\"credits\":18,\"gpa\":3.125881,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":36,\"cumcredits\":73,\"cumgpa\":3.196943},{\"null\":285,\"credits\":12,\"gpa\":3.476699,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":36,\"cumcredits\":85,\"cumgpa\":3.236438},{\"null\":286,\"credits\":16,\"gpa\":3.284478,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":36,\"cumcredits\":101,\"cumgpa\":3.244048},{\"null\":287,\"credits\":15,\"gpa\":2.619855,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":36,\"cumcredits\":116,\"cumgpa\":3.163333},{\"null\":288,\"credits\":18,\"gpa\":3.105252,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":37,\"cumcredits\":18,\"cumgpa\":3.105252},{\"null\":289,\"credits\":14,\"gpa\":2.046052,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":37,\"cumcredits\":32,\"cumgpa\":2.641852},{\"null\":290,\"credits\":13,\"gpa\":2.271155,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":37,\"cumcredits\":45,\"cumgpa\":2.534761},{\"null\":291,\"credits\":16,\"gpa\":3.598407,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":37,\"cumcredits\":61,\"cumgpa\":2.81375},{\"null\":292,\"credits\":13,\"gpa\":2.574577,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":37,\"cumcredits\":74,\"cumgpa\":2.771734},{\"null\":293,\"credits\":18,\"gpa\":2.035797,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":37,\"cumcredits\":92,\"cumgpa\":2.627746},{\"null\":294,\"credits\":12,\"gpa\":2.324123,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":37,\"cumcredits\":104,\"cumgpa\":2.592713},{\"null\":295,\"credits\":13,\"gpa\":3.329802,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":37,\"cumcredits\":117,\"cumgpa\":2.674611},{\"null\":296,\"credits\":15,\"gpa\":3.090761,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":38,\"cumcredits\":15,\"cumgpa\":3.090761},{\"null\":297,\"credits\":13,\"gpa\":3.358174,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":38,\"cumcredits\":28,\"cumgpa\":3.214917},{\"null\":298,\"credits\":12,\"gpa\":2.197086,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":38,\"cumcredits\":40,\"cumgpa\":2.909568},{\"null\":299,\"credits\":13,\"gpa\":2.608635,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":38,\"cumcredits\":53,\"cumgpa\":2.835754},{\"null\":300,\"credits\":14,\"gpa\":2.403579,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":38,\"cumcredits\":67,\"cumgpa\":2.745449},{\"null\":301,\"credits\":12,\"gpa\":3.250375,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":38,\"cumcredits\":79,\"cumgpa\":2.822146},{\"null\":302,\"credits\":14,\"gpa\":3.678959,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":38,\"cumcredits\":93,\"cumgpa\":2.951129},{\"null\":303,\"credits\":12,\"gpa\":3.518419,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":38,\"cumcredits\":105,\"cumgpa\":3.015962},{\"null\":304,\"credits\":13,\"gpa\":2.596218,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":39,\"cumcredits\":13,\"cumgpa\":2.596218},{\"null\":305,\"credits\":16,\"gpa\":2.740172,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":39,\"cumcredits\":29,\"cumgpa\":2.675641},{\"null\":306,\"credits\":17,\"gpa\":3.610893,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":39,\"cumcredits\":46,\"cumgpa\":3.021278},{\"null\":307,\"credits\":18,\"gpa\":3.061732,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":39,\"cumcredits\":64,\"cumgpa\":3.032655},{\"null\":308,\"credits\":12,\"gpa\":2.273754,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":39,\"cumcredits\":76,\"cumgpa\":2.912829},{\"null\":309,\"credits\":16,\"gpa\":2.022756,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":39,\"cumcredits\":92,\"cumgpa\":2.758033},{\"null\":310,\"credits\":17,\"gpa\":3.242946,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":39,\"cumcredits\":109,\"cumgpa\":2.833662},{\"null\":311,\"credits\":15,\"gpa\":3.633335,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":39,\"cumcredits\":124,\"cumgpa\":2.930397},{\"null\":312,\"credits\":14,\"gpa\":3.119989,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":40,\"cumcredits\":14,\"cumgpa\":3.119989},{\"null\":313,\"credits\":16,\"gpa\":2.847213,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":40,\"cumcredits\":30,\"cumgpa\":2.974508},{\"null\":314,\"credits\":13,\"gpa\":3.794909,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":40,\"cumcredits\":43,\"cumgpa\":3.222536},{\"null\":315,\"credits\":18,\"gpa\":3.97813,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":40,\"cumcredits\":61,\"cumgpa\":3.445498},{\"null\":316,\"credits\":12,\"gpa\":3.899482,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":40,\"cumcredits\":73,\"cumgpa\":3.520126},{\"null\":317,\"credits\":17,\"gpa\":3.177081,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":40,\"cumcredits\":90,\"cumgpa\":3.455328},{\"null\":318,\"credits\":12,\"gpa\":2.595388,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":40,\"cumcredits\":102,\"cumgpa\":3.354159},{\"null\":319,\"credits\":17,\"gpa\":3.525627,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":40,\"cumcredits\":119,\"cumgpa\":3.378654},{\"null\":320,\"credits\":13,\"gpa\":3.83562,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":41,\"cumcredits\":13,\"cumgpa\":3.83562},{\"null\":321,\"credits\":16,\"gpa\":2.184689,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":41,\"cumcredits\":29,\"cumgpa\":2.924762},{\"null\":322,\"credits\":18,\"gpa\":2.735285,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":41,\"cumcredits\":47,\"cumgpa\":2.852196},{\"null\":323,\"credits\":12,\"gpa\":3.952532,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":41,\"cumcredits\":59,\"cumgpa\":3.075993},{\"null\":324,\"credits\":18,\"gpa\":2.28734,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":41,\"cumcredits\":77,\"cumgpa\":2.891633},{\"null\":325,\"credits\":18,\"gpa\":3.413432,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":41,\"cumcredits\":95,\"cumgpa\":2.9905},{\"null\":326,\"credits\":16,\"gpa\":3.659634,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":41,\"cumcredits\":111,\"cumgpa\":3.086952},{\"null\":327,\"credits\":18,\"gpa\":3.688601,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":41,\"cumcredits\":129,\"cumgpa\":3.170903},{\"null\":328,\"credits\":15,\"gpa\":2.906605,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":42,\"cumcredits\":15,\"cumgpa\":2.906605},{\"null\":329,\"credits\":17,\"gpa\":3.023581,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":42,\"cumcredits\":32,\"cumgpa\":2.968749},{\"null\":330,\"credits\":16,\"gpa\":3.65076,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":42,\"cumcredits\":48,\"cumgpa\":3.196086},{\"null\":331,\"credits\":18,\"gpa\":3.490775,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":42,\"cumcredits\":66,\"cumgpa\":3.276455},{\"null\":332,\"credits\":18,\"gpa\":3.872618,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":42,\"cumcredits\":84,\"cumgpa\":3.404205},{\"null\":333,\"credits\":17,\"gpa\":3.175489,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":42,\"cumcredits\":101,\"cumgpa\":3.365708},{\"null\":334,\"credits\":14,\"gpa\":2.763631,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":42,\"cumcredits\":115,\"cumgpa\":3.292412},{\"null\":335,\"credits\":15,\"gpa\":3.866482,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":42,\"cumcredits\":130,\"cumgpa\":3.35865},{\"null\":336,\"credits\":13,\"gpa\":2.801853,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":43,\"cumcredits\":13,\"cumgpa\":2.801853},{\"null\":337,\"credits\":12,\"gpa\":2.413781,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":43,\"cumcredits\":25,\"cumgpa\":2.615578},{\"null\":338,\"credits\":16,\"gpa\":2.036895,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":43,\"cumcredits\":41,\"cumgpa\":2.389751},{\"null\":339,\"credits\":13,\"gpa\":2.205738,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":43,\"cumcredits\":54,\"cumgpa\":2.345451},{\"null\":340,\"credits\":13,\"gpa\":2.9248,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":43,\"cumcredits\":67,\"cumgpa\":2.457862},{\"null\":341,\"credits\":15,\"gpa\":3.432397,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":43,\"cumcredits\":82,\"cumgpa\":2.636131},{\"null\":342,\"credits\":16,\"gpa\":3.328666,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":43,\"cumcredits\":98,\"cumgpa\":2.749198},{\"null\":343,\"credits\":12,\"gpa\":2.321027,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":43,\"cumcredits\":110,\"cumgpa\":2.702488},{\"null\":344,\"credits\":15,\"gpa\":2.615456,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":44,\"cumcredits\":15,\"cumgpa\":2.615456},{\"null\":345,\"credits\":12,\"gpa\":2.488431,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":44,\"cumcredits\":27,\"cumgpa\":2.559001},{\"null\":346,\"credits\":12,\"gpa\":3.104786,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":44,\"cumcredits\":39,\"cumgpa\":2.726935},{\"null\":347,\"credits\":14,\"gpa\":2.864616,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":44,\"cumcredits\":53,\"cumgpa\":2.763303},{\"null\":348,\"credits\":16,\"gpa\":2.139884,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":44,\"cumcredits\":69,\"cumgpa\":2.618742},{\"null\":349,\"credits\":16,\"gpa\":3.597241,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":44,\"cumcredits\":85,\"cumgpa\":2.80293},{\"null\":350,\"credits\":17,\"gpa\":2.257687,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":44,\"cumcredits\":102,\"cumgpa\":2.712057},{\"null\":351,\"credits\":17,\"gpa\":3.166259,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":44,\"cumcredits\":119,\"cumgpa\":2.776943},{\"null\":352,\"credits\":18,\"gpa\":3.11546,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":45,\"cumcredits\":18,\"cumgpa\":3.11546},{\"null\":353,\"credits\":12,\"gpa\":2.849547,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":45,\"cumcredits\":30,\"cumgpa\":3.009095},{\"null\":354,\"credits\":18,\"gpa\":2.964768,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":45,\"cumcredits\":48,\"cumgpa\":2.992472},{\"null\":355,\"credits\":17,\"gpa\":2.4165,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":45,\"cumcredits\":65,\"cumgpa\":2.841833},{\"null\":356,\"credits\":16,\"gpa\":2.460356,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":45,\"cumcredits\":81,\"cumgpa\":2.76648},{\"null\":357,\"credits\":13,\"gpa\":3.253964,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":45,\"cumcredits\":94,\"cumgpa\":2.833898},{\"null\":358,\"credits\":14,\"gpa\":3.024364,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":45,\"cumcredits\":108,\"cumgpa\":2.858588},{\"null\":359,\"credits\":17,\"gpa\":2.281046,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":45,\"cumcredits\":125,\"cumgpa\":2.780042},{\"null\":360,\"credits\":16,\"gpa\":3.030635,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":46,\"cumcredits\":16,\"cumgpa\":3.030635},{\"null\":361,\"credits\":16,\"gpa\":2.271469,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":46,\"cumcredits\":32,\"cumgpa\":2.651052},{\"null\":362,\"credits\":12,\"gpa\":3.210478,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":46,\"cumcredits\":44,\"cumgpa\":2.803623},{\"null\":363,\"credits\":16,\"gpa\":3.715532,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":46,\"cumcredits\":60,\"cumgpa\":3.046799},{\"null\":364,\"credits\":16,\"gpa\":2.153591,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":46,\"cumcredits\":76,\"cumgpa\":2.858755},{\"null\":365,\"credits\":18,\"gpa\":3.506936,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":46,\"cumcredits\":94,\"cumgpa\":2.982875},{\"null\":366,\"credits\":16,\"gpa\":2.215596,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":46,\"cumcredits\":110,\"cumgpa\":2.871271},{\"null\":367,\"credits\":13,\"gpa\":2.485247,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":46,\"cumcredits\":123,\"cumgpa\":2.830471},{\"null\":368,\"credits\":17,\"gpa\":2.593732,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":47,\"cumcredits\":17,\"cumgpa\":2.593732},{\"null\":369,\"credits\":17,\"gpa\":3.462307,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":47,\"cumcredits\":34,\"cumgpa\":3.028019},{\"null\":370,\"credits\":18,\"gpa\":3.053344,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":47,\"cumcredits\":52,\"cumgpa\":3.036785},{\"null\":371,\"credits\":12,\"gpa\":3.903576,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":47,\"cumcredits\":64,\"cumgpa\":3.199309},{\"null\":372,\"credits\":16,\"gpa\":3.435514,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":47,\"cumcredits\":80,\"cumgpa\":3.24655},{\"null\":373,\"credits\":15,\"gpa\":2.857784,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":47,\"cumcredits\":95,\"cumgpa\":3.185166},{\"null\":374,\"credits\":16,\"gpa\":3.771485,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":47,\"cumcredits\":111,\"cumgpa\":3.26968},{\"null\":375,\"credits\":15,\"gpa\":3.485355,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":47,\"cumcredits\":126,\"cumgpa\":3.295356},{\"null\":376,\"credits\":17,\"gpa\":3.624672,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":48,\"cumcredits\":17,\"cumgpa\":3.624672},{\"null\":377,\"credits\":13,\"gpa\":3.339806,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":48,\"cumcredits\":30,\"cumgpa\":3.50123},{\"null\":378,\"credits\":17,\"gpa\":2.263285,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":48,\"cumcredits\":47,\"cumgpa\":3.053463},{\"null\":379,\"credits\":15,\"gpa\":3.818467,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":48,\"cumcredits\":62,\"cumgpa\":3.238544},{\"null\":380,\"credits\":16,\"gpa\":3.616507,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":48,\"cumcredits\":78,\"cumgpa\":3.316075},{\"null\":381,\"credits\":12,\"gpa\":2.290329,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":48,\"cumcredits\":90,\"cumgpa\":3.179309},{\"null\":382,\"credits\":18,\"gpa\":2.511705,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":48,\"cumcredits\":108,\"cumgpa\":3.068042},{\"null\":383,\"credits\":13,\"gpa\":3.977165,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":48,\"cumcredits\":121,\"cumgpa\":3.165716},{\"null\":384,\"credits\":13,\"gpa\":3.612395,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":49,\"cumcredits\":13,\"cumgpa\":3.612395},{\"null\":385,\"credits\":12,\"gpa\":2.122812,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":49,\"cumcredits\":25,\"cumgpa\":2.897395},{\"null\":386,\"credits\":12,\"gpa\":2.181694,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":49,\"cumcredits\":37,\"cumgpa\":2.665276},{\"null\":387,\"credits\":13,\"gpa\":2.149403,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":49,\"cumcredits\":50,\"cumgpa\":2.531149},{\"null\":388,\"credits\":15,\"gpa\":3.504718,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":49,\"cumcredits\":65,\"cumgpa\":2.755819},{\"null\":389,\"credits\":17,\"gpa\":3.306599,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":49,\"cumcredits\":82,\"cumgpa\":2.870005},{\"null\":390,\"credits\":13,\"gpa\":2.424706,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":49,\"cumcredits\":95,\"cumgpa\":2.809069},{\"null\":391,\"credits\":17,\"gpa\":2.09365,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":49,\"cumcredits\":112,\"cumgpa\":2.700479},{\"null\":392,\"credits\":12,\"gpa\":2.227567,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":50,\"cumcredits\":12,\"cumgpa\":2.227567},{\"null\":393,\"credits\":14,\"gpa\":3.082951,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":50,\"cumcredits\":26,\"cumgpa\":2.688158},{\"null\":394,\"credits\":12,\"gpa\":2.958396,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":50,\"cumcredits\":38,\"cumgpa\":2.773497},{\"null\":395,\"credits\":14,\"gpa\":3.041113,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":50,\"cumcredits\":52,\"cumgpa\":2.845547},{\"null\":396,\"credits\":15,\"gpa\":3.396702,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":50,\"cumcredits\":67,\"cumgpa\":2.96894},{\"null\":397,\"credits\":16,\"gpa\":3.667104,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":50,\"cumcredits\":83,\"cumgpa\":3.103526},{\"null\":398,\"credits\":17,\"gpa\":2.367259,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":50,\"cumcredits\":100,\"cumgpa\":2.978361},{\"null\":399,\"credits\":17,\"gpa\":3.855905,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":50,\"cumcredits\":117,\"cumgpa\":3.105867},{\"null\":400,\"credits\":18,\"gpa\":3.903467,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":51,\"cumcredits\":18,\"cumgpa\":3.903467},{\"null\":401,\"credits\":16,\"gpa\":2.979954,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":51,\"cumcredits\":34,\"cumgpa\":3.468873},{\"null\":402,\"credits\":17,\"gpa\":3.977924,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":51,\"cumcredits\":51,\"cumgpa\":3.638557},{\"null\":403,\"credits\":16,\"gpa\":2.895758,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":51,\"cumcredits\":67,\"cumgpa\":3.461172},{\"null\":404,\"credits\":18,\"gpa\":2.813675,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":51,\"cumcredits\":85,\"cumgpa\":3.324055},{\"null\":405,\"credits\":12,\"gpa\":2.386686,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":51,\"cumcredits\":97,\"cumgpa\":3.208092},{\"null\":406,\"credits\":15,\"gpa\":3.286885,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":51,\"cumcredits\":112,\"cumgpa\":3.218644},{\"null\":407,\"credits\":14,\"gpa\":3.684605,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":51,\"cumcredits\":126,\"cumgpa\":3.270418},{\"null\":408,\"credits\":18,\"gpa\":2.407671,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":52,\"cumcredits\":18,\"cumgpa\":2.407671},{\"null\":409,\"credits\":15,\"gpa\":2.666568,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":52,\"cumcredits\":33,\"cumgpa\":2.525351},{\"null\":410,\"credits\":15,\"gpa\":3.610343,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":52,\"cumcredits\":48,\"cumgpa\":2.864411},{\"null\":411,\"credits\":13,\"gpa\":3.972472,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":52,\"cumcredits\":61,\"cumgpa\":3.100555},{\"null\":412,\"credits\":18,\"gpa\":2.808549,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":52,\"cumcredits\":79,\"cumgpa\":3.034022},{\"null\":413,\"credits\":15,\"gpa\":2.941335,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":52,\"cumcredits\":94,\"cumgpa\":3.019232},{\"null\":414,\"credits\":16,\"gpa\":2.170451,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":52,\"cumcredits\":110,\"cumgpa\":2.895773},{\"null\":415,\"credits\":16,\"gpa\":3.535655,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":52,\"cumcredits\":126,\"cumgpa\":2.977028},{\"null\":416,\"credits\":14,\"gpa\":2.767224,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":53,\"cumcredits\":14,\"cumgpa\":2.767224},{\"null\":417,\"credits\":17,\"gpa\":3.79516,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":53,\"cumcredits\":31,\"cumgpa\":3.330931},{\"null\":418,\"credits\":13,\"gpa\":2.928886,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":53,\"cumcredits\":44,\"cumgpa\":3.212145},{\"null\":419,\"credits\":14,\"gpa\":2.537838,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":53,\"cumcredits\":58,\"cumgpa\":3.049381},{\"null\":420,\"credits\":12,\"gpa\":2.37091,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":53,\"cumcredits\":70,\"cumgpa\":2.933072},{\"null\":421,\"credits\":12,\"gpa\":3.858403,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":53,\"cumcredits\":82,\"cumgpa\":3.068486},{\"null\":422,\"credits\":16,\"gpa\":3.408854,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":53,\"cumcredits\":98,\"cumgpa\":3.124056},{\"null\":423,\"credits\":18,\"gpa\":3.459529,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":53,\"cumcredits\":116,\"cumgpa\":3.176112},{\"null\":424,\"credits\":18,\"gpa\":3.057349,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":54,\"cumcredits\":18,\"cumgpa\":3.057349},{\"null\":425,\"credits\":16,\"gpa\":2.3847,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":54,\"cumcredits\":34,\"cumgpa\":2.740808},{\"null\":426,\"credits\":12,\"gpa\":3.400207,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":54,\"cumcredits\":46,\"cumgpa\":2.912825},{\"null\":427,\"credits\":17,\"gpa\":3.824139,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":54,\"cumcredits\":63,\"cumgpa\":3.158735},{\"null\":428,\"credits\":12,\"gpa\":2.226836,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":54,\"cumcredits\":75,\"cumgpa\":3.009631},{\"null\":429,\"credits\":13,\"gpa\":3.447785,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":54,\"cumcredits\":88,\"cumgpa\":3.074359},{\"null\":430,\"credits\":13,\"gpa\":2.743507,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":54,\"cumcredits\":101,\"cumgpa\":3.031774},{\"null\":431,\"credits\":14,\"gpa\":3.643885,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":54,\"cumcredits\":115,\"cumgpa\":3.106292},{\"null\":432,\"credits\":17,\"gpa\":2.951717,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":55,\"cumcredits\":17,\"cumgpa\":2.951717},{\"null\":433,\"credits\":13,\"gpa\":3.424798,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":55,\"cumcredits\":30,\"cumgpa\":3.156719},{\"null\":434,\"credits\":12,\"gpa\":2.067194,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":55,\"cumcredits\":42,\"cumgpa\":2.845426},{\"null\":435,\"credits\":18,\"gpa\":3.731983,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":55,\"cumcredits\":60,\"cumgpa\":3.111393},{\"null\":436,\"credits\":12,\"gpa\":3.096032,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":55,\"cumcredits\":72,\"cumgpa\":3.108833},{\"null\":437,\"credits\":14,\"gpa\":3.846199,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":55,\"cumcredits\":86,\"cumgpa\":3.228869},{\"null\":438,\"credits\":16,\"gpa\":2.795376,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":55,\"cumcredits\":102,\"cumgpa\":3.16087},{\"null\":439,\"credits\":16,\"gpa\":2.928447,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":55,\"cumcredits\":118,\"cumgpa\":3.129355},{\"null\":440,\"credits\":16,\"gpa\":3.764687,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":56,\"cumcredits\":16,\"cumgpa\":3.764687},{\"null\":441,\"credits\":16,\"gpa\":3.549999,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":56,\"cumcredits\":32,\"cumgpa\":3.657343},{\"null\":442,\"credits\":14,\"gpa\":2.164973,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":56,\"cumcredits\":46,\"cumgpa\":3.203143},{\"null\":443,\"credits\":15,\"gpa\":3.594047,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":56,\"cumcredits\":61,\"cumgpa\":3.299267},{\"null\":444,\"credits\":15,\"gpa\":3.235753,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":56,\"cumcredits\":76,\"cumgpa\":3.286732},{\"null\":445,\"credits\":15,\"gpa\":2.635408,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":56,\"cumcredits\":91,\"cumgpa\":3.17937},{\"null\":446,\"credits\":16,\"gpa\":2.944934,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":56,\"cumcredits\":107,\"cumgpa\":3.144315},{\"null\":447,\"credits\":12,\"gpa\":3.85635,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":56,\"cumcredits\":119,\"cumgpa\":3.216116},{\"null\":448,\"credits\":13,\"gpa\":3.313974,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":57,\"cumcredits\":13,\"cumgpa\":3.313974},{\"null\":449,\"credits\":16,\"gpa\":2.744709,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":57,\"cumcredits\":29,\"cumgpa\":2.999896},{\"null\":450,\"credits\":13,\"gpa\":2.974047,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":57,\"cumcredits\":42,\"cumgpa\":2.991895},{\"null\":451,\"credits\":15,\"gpa\":3.012626,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":57,\"cumcredits\":57,\"cumgpa\":2.997351},{\"null\":452,\"credits\":16,\"gpa\":2.634357,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":57,\"cumcredits\":73,\"cumgpa\":2.91779},{\"null\":453,\"credits\":13,\"gpa\":3.110905,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":57,\"cumcredits\":86,\"cumgpa\":2.946982},{\"null\":454,\"credits\":16,\"gpa\":3.3481,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":57,\"cumcredits\":102,\"cumgpa\":3.009903},{\"null\":455,\"credits\":15,\"gpa\":2.945505,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":57,\"cumcredits\":117,\"cumgpa\":3.001647},{\"null\":456,\"credits\":12,\"gpa\":3.663561,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":58,\"cumcredits\":12,\"cumgpa\":3.663561},{\"null\":457,\"credits\":16,\"gpa\":2.372446,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":58,\"cumcredits\":28,\"cumgpa\":2.925781},{\"null\":458,\"credits\":12,\"gpa\":3.785008,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":58,\"cumcredits\":40,\"cumgpa\":3.183549},{\"null\":459,\"credits\":12,\"gpa\":3.349873,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":58,\"cumcredits\":52,\"cumgpa\":3.221932},{\"null\":460,\"credits\":14,\"gpa\":3.842996,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":58,\"cumcredits\":66,\"cumgpa\":3.353672},{\"null\":461,\"credits\":17,\"gpa\":3.872625,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":58,\"cumcredits\":83,\"cumgpa\":3.459964},{\"null\":462,\"credits\":18,\"gpa\":2.674345,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":58,\"cumcredits\":101,\"cumgpa\":3.319953},{\"null\":463,\"credits\":16,\"gpa\":3.261173,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":58,\"cumcredits\":117,\"cumgpa\":3.311914},{\"null\":464,\"credits\":13,\"gpa\":3.789791,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":59,\"cumcredits\":13,\"cumgpa\":3.789791},{\"null\":465,\"credits\":12,\"gpa\":3.324766,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":59,\"cumcredits\":25,\"cumgpa\":3.566579},{\"null\":466,\"credits\":15,\"gpa\":3.88019,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":59,\"cumcredits\":40,\"cumgpa\":3.684183},{\"null\":467,\"credits\":12,\"gpa\":2.711553,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":59,\"cumcredits\":52,\"cumgpa\":3.45973},{\"null\":468,\"credits\":18,\"gpa\":3.314657,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":59,\"cumcredits\":70,\"cumgpa\":3.422425},{\"null\":469,\"credits\":12,\"gpa\":3.562812,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":59,\"cumcredits\":82,\"cumgpa\":3.44297},{\"null\":470,\"credits\":13,\"gpa\":3.409733,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":59,\"cumcredits\":95,\"cumgpa\":3.438422},{\"null\":471,\"credits\":13,\"gpa\":2.900306,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":59,\"cumcredits\":108,\"cumgpa\":3.373648},{\"null\":472,\"credits\":17,\"gpa\":3.888319,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":60,\"cumcredits\":17,\"cumgpa\":3.888319},{\"null\":473,\"credits\":15,\"gpa\":3.950753,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":60,\"cumcredits\":32,\"cumgpa\":3.917585},{\"null\":474,\"credits\":17,\"gpa\":3.93952,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":60,\"cumcredits\":49,\"cumgpa\":3.925195},{\"null\":475,\"credits\":12,\"gpa\":3.703994,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":60,\"cumcredits\":61,\"cumgpa\":3.88168},{\"null\":476,\"credits\":15,\"gpa\":2.626993,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":60,\"cumcredits\":76,\"cumgpa\":3.634045},{\"null\":477,\"credits\":17,\"gpa\":2.95153,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":60,\"cumcredits\":93,\"cumgpa\":3.509284},{\"null\":478,\"credits\":14,\"gpa\":3.47654,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":60,\"cumcredits\":107,\"cumgpa\":3.505},{\"null\":479,\"credits\":12,\"gpa\":3.20177,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":60,\"cumcredits\":119,\"cumgpa\":3.474422},{\"null\":480,\"credits\":14,\"gpa\":3.679341,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":61,\"cumcredits\":14,\"cumgpa\":3.679341},{\"null\":481,\"credits\":17,\"gpa\":2.754174,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":61,\"cumcredits\":31,\"cumgpa\":3.171991},{\"null\":482,\"credits\":12,\"gpa\":3.032752,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":61,\"cumcredits\":43,\"cumgpa\":3.133134},{\"null\":483,\"credits\":16,\"gpa\":3.766679,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":61,\"cumcredits\":59,\"cumgpa\":3.304943},{\"null\":484,\"credits\":13,\"gpa\":2.732967,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":61,\"cumcredits\":72,\"cumgpa\":3.201669},{\"null\":485,\"credits\":18,\"gpa\":2.138525,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":61,\"cumcredits\":90,\"cumgpa\":2.98904},{\"null\":486,\"credits\":12,\"gpa\":3.061973,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":61,\"cumcredits\":102,\"cumgpa\":2.997621},{\"null\":487,\"credits\":18,\"gpa\":3.917658,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":61,\"cumcredits\":120,\"cumgpa\":3.135626},{\"null\":488,\"credits\":18,\"gpa\":2.236651,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":62,\"cumcredits\":18,\"cumgpa\":2.236651},{\"null\":489,\"credits\":17,\"gpa\":3.745742,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":62,\"cumcredits\":35,\"cumgpa\":2.969638},{\"null\":490,\"credits\":14,\"gpa\":2.207066,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":62,\"cumcredits\":49,\"cumgpa\":2.75176},{\"null\":491,\"credits\":17,\"gpa\":3.575633,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":62,\"cumcredits\":66,\"cumgpa\":2.96397},{\"null\":492,\"credits\":13,\"gpa\":3.990113,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":62,\"cumcredits\":79,\"cumgpa\":3.132829},{\"null\":493,\"credits\":14,\"gpa\":3.302338,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":62,\"cumcredits\":93,\"cumgpa\":3.158346},{\"null\":494,\"credits\":15,\"gpa\":2.956591,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":62,\"cumcredits\":108,\"cumgpa\":3.130325},{\"null\":495,\"credits\":17,\"gpa\":2.68139,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":62,\"cumcredits\":125,\"cumgpa\":3.06927},{\"null\":496,\"credits\":17,\"gpa\":2.605551,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":63,\"cumcredits\":17,\"cumgpa\":2.605551},{\"null\":497,\"credits\":13,\"gpa\":2.367803,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":63,\"cumcredits\":30,\"cumgpa\":2.502527},{\"null\":498,\"credits\":14,\"gpa\":2.705579,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":63,\"cumcredits\":44,\"cumgpa\":2.567134},{\"null\":499,\"credits\":15,\"gpa\":3.40608,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":63,\"cumcredits\":59,\"cumgpa\":2.780426},{\"null\":500,\"credits\":17,\"gpa\":3.229217,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":63,\"cumcredits\":76,\"cumgpa\":2.880813},{\"null\":501,\"credits\":15,\"gpa\":2.27566,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":63,\"cumcredits\":91,\"cumgpa\":2.781063},{\"null\":502,\"credits\":14,\"gpa\":3.835015,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":63,\"cumcredits\":105,\"cumgpa\":2.92159},{\"null\":503,\"credits\":17,\"gpa\":2.120638,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":63,\"cumcredits\":122,\"cumgpa\":2.809982},{\"null\":504,\"credits\":12,\"gpa\":2.717416,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":64,\"cumcredits\":12,\"cumgpa\":2.717416},{\"null\":505,\"credits\":13,\"gpa\":3.955728,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":64,\"cumcredits\":25,\"cumgpa\":3.361338},{\"null\":506,\"credits\":12,\"gpa\":3.964815,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":64,\"cumcredits\":37,\"cumgpa\":3.55706},{\"null\":507,\"credits\":17,\"gpa\":3.246435,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":64,\"cumcredits\":54,\"cumgpa\":3.459271},{\"null\":508,\"credits\":16,\"gpa\":3.716288,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":64,\"cumcredits\":70,\"cumgpa\":3.518018},{\"null\":509,\"credits\":17,\"gpa\":2.788194,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":64,\"cumcredits\":87,\"cumgpa\":3.375408},{\"null\":510,\"credits\":13,\"gpa\":3.274242,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":64,\"cumcredits\":100,\"cumgpa\":3.362257},{\"null\":511,\"credits\":12,\"gpa\":3.715756,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":64,\"cumcredits\":112,\"cumgpa\":3.400132},{\"null\":512,\"credits\":18,\"gpa\":2.459016,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":65,\"cumcredits\":18,\"cumgpa\":2.459016},{\"null\":513,\"credits\":18,\"gpa\":3.337223,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":65,\"cumcredits\":36,\"cumgpa\":2.89812},{\"null\":514,\"credits\":12,\"gpa\":2.280387,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":65,\"cumcredits\":48,\"cumgpa\":2.743687},{\"null\":515,\"credits\":13,\"gpa\":2.997183,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":65,\"cumcredits\":61,\"cumgpa\":2.79771},{\"null\":516,\"credits\":15,\"gpa\":3.706302,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":65,\"cumcredits\":76,\"cumgpa\":2.977038},{\"null\":517,\"credits\":15,\"gpa\":2.476015,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":65,\"cumcredits\":91,\"cumgpa\":2.894452},{\"null\":518,\"credits\":13,\"gpa\":3.076411,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":65,\"cumcredits\":104,\"cumgpa\":2.917196},{\"null\":519,\"credits\":17,\"gpa\":3.78388,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":65,\"cumcredits\":121,\"cumgpa\":3.038962},{\"null\":520,\"credits\":14,\"gpa\":2.763926,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":66,\"cumcredits\":14,\"cumgpa\":2.763926},{\"null\":521,\"credits\":15,\"gpa\":3.219777,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":66,\"cumcredits\":29,\"cumgpa\":2.999711},{\"null\":522,\"credits\":13,\"gpa\":3.391092,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":66,\"cumcredits\":42,\"cumgpa\":3.120853},{\"null\":523,\"credits\":14,\"gpa\":2.41138,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":66,\"cumcredits\":56,\"cumgpa\":2.943485},{\"null\":524,\"credits\":18,\"gpa\":3.615592,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":66,\"cumcredits\":74,\"cumgpa\":3.10697},{\"null\":525,\"credits\":17,\"gpa\":2.931227,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":66,\"cumcredits\":91,\"cumgpa\":3.074139},{\"null\":526,\"credits\":17,\"gpa\":2.837739,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":66,\"cumcredits\":108,\"cumgpa\":3.036928},{\"null\":527,\"credits\":13,\"gpa\":3.219912,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":66,\"cumcredits\":121,\"cumgpa\":3.056588},{\"null\":528,\"credits\":16,\"gpa\":2.638494,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":67,\"cumcredits\":16,\"cumgpa\":2.638494},{\"null\":529,\"credits\":17,\"gpa\":2.50424,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":67,\"cumcredits\":33,\"cumgpa\":2.569333},{\"null\":530,\"credits\":12,\"gpa\":2.218654,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":67,\"cumcredits\":45,\"cumgpa\":2.475819},{\"null\":531,\"credits\":13,\"gpa\":3.095526,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":67,\"cumcredits\":58,\"cumgpa\":2.614719},{\"null\":532,\"credits\":17,\"gpa\":3.737011,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":67,\"cumcredits\":75,\"cumgpa\":2.869105},{\"null\":533,\"credits\":17,\"gpa\":3.462236,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":67,\"cumcredits\":92,\"cumgpa\":2.978705},{\"null\":534,\"credits\":13,\"gpa\":2.080391,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":67,\"cumcredits\":105,\"cumgpa\":2.867485},{\"null\":535,\"credits\":16,\"gpa\":2.989748,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":67,\"cumcredits\":121,\"cumgpa\":2.883652},{\"null\":536,\"credits\":17,\"gpa\":2.132593,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":68,\"cumcredits\":17,\"cumgpa\":2.132593},{\"null\":537,\"credits\":13,\"gpa\":3.14087,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":68,\"cumcredits\":30,\"cumgpa\":2.569513},{\"null\":538,\"credits\":13,\"gpa\":2.213372,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":68,\"cumcredits\":43,\"cumgpa\":2.461842},{\"null\":539,\"credits\":17,\"gpa\":3.450075,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":68,\"cumcredits\":60,\"cumgpa\":2.741842},{\"null\":540,\"credits\":14,\"gpa\":3.66763,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":68,\"cumcredits\":74,\"cumgpa\":2.916991},{\"null\":541,\"credits\":16,\"gpa\":3.476673,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":68,\"cumcredits\":90,\"cumgpa\":3.01649},{\"null\":542,\"credits\":13,\"gpa\":2.259959,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":68,\"cumcredits\":103,\"cumgpa\":2.921005},{\"null\":543,\"credits\":16,\"gpa\":3.447623,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":68,\"cumcredits\":119,\"cumgpa\":2.991811},{\"null\":544,\"credits\":15,\"gpa\":2.908331,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":69,\"cumcredits\":15,\"cumgpa\":2.908331},{\"null\":545,\"credits\":16,\"gpa\":2.518686,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":69,\"cumcredits\":31,\"cumgpa\":2.707224},{\"null\":546,\"credits\":17,\"gpa\":3.08475,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":69,\"cumcredits\":48,\"cumgpa\":2.840931},{\"null\":547,\"credits\":18,\"gpa\":2.311033,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":69,\"cumcredits\":66,\"cumgpa\":2.696413},{\"null\":548,\"credits\":12,\"gpa\":2.778893,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":69,\"cumcredits\":78,\"cumgpa\":2.709102},{\"null\":549,\"credits\":15,\"gpa\":3.550687,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":69,\"cumcredits\":93,\"cumgpa\":2.844842},{\"null\":550,\"credits\":13,\"gpa\":3.246907,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":69,\"cumcredits\":106,\"cumgpa\":2.894152},{\"null\":551,\"credits\":14,\"gpa\":3.317239,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":69,\"cumcredits\":120,\"cumgpa\":2.943512},{\"null\":552,\"credits\":13,\"gpa\":3.944674,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":70,\"cumcredits\":13,\"cumgpa\":3.944674},{\"null\":553,\"credits\":18,\"gpa\":3.737386,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":70,\"cumcredits\":31,\"cumgpa\":3.824313},{\"null\":554,\"credits\":18,\"gpa\":3.793073,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":70,\"cumcredits\":49,\"cumgpa\":3.812837},{\"null\":555,\"credits\":12,\"gpa\":3.192447,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":70,\"cumcredits\":61,\"cumgpa\":3.690793},{\"null\":556,\"credits\":18,\"gpa\":3.832068,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":70,\"cumcredits\":79,\"cumgpa\":3.722983},{\"null\":557,\"credits\":18,\"gpa\":2.06523,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":70,\"cumcredits\":97,\"cumgpa\":3.415358},{\"null\":558,\"credits\":12,\"gpa\":3.063207,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":70,\"cumcredits\":109,\"cumgpa\":3.37659},{\"null\":559,\"credits\":13,\"gpa\":2.209778,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":70,\"cumcredits\":122,\"cumgpa\":3.252257},{\"null\":560,\"credits\":12,\"gpa\":3.361504,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":71,\"cumcredits\":12,\"cumgpa\":3.361504},{\"null\":561,\"credits\":14,\"gpa\":2.452925,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":71,\"cumcredits\":26,\"cumgpa\":2.87227},{\"null\":562,\"credits\":12,\"gpa\":2.964978,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":71,\"cumcredits\":38,\"cumgpa\":2.901546},{\"null\":563,\"credits\":15,\"gpa\":2.652521,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":71,\"cumcredits\":53,\"cumgpa\":2.831067},{\"null\":564,\"credits\":14,\"gpa\":3.697896,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":71,\"cumcredits\":67,\"cumgpa\":3.012196},{\"null\":565,\"credits\":16,\"gpa\":2.817865,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":71,\"cumcredits\":83,\"cumgpa\":2.974734},{\"null\":566,\"credits\":13,\"gpa\":3.057192,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":71,\"cumcredits\":96,\"cumgpa\":2.9859},{\"null\":567,\"credits\":17,\"gpa\":2.993753,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":71,\"cumcredits\":113,\"cumgpa\":2.987082},{\"null\":568,\"credits\":15,\"gpa\":3.40174,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":72,\"cumcredits\":15,\"cumgpa\":3.40174},{\"null\":569,\"credits\":14,\"gpa\":3.315495,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":72,\"cumcredits\":29,\"cumgpa\":3.360104},{\"null\":570,\"credits\":14,\"gpa\":2.288365,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":72,\"cumcredits\":43,\"cumgpa\":3.011166},{\"null\":571,\"credits\":18,\"gpa\":2.010397,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":72,\"cumcredits\":61,\"cumgpa\":2.715857},{\"null\":572,\"credits\":16,\"gpa\":2.106061,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":72,\"cumcredits\":77,\"cumgpa\":2.589146},{\"null\":573,\"credits\":14,\"gpa\":3.063324,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":72,\"cumcredits\":91,\"cumgpa\":2.662097},{\"null\":574,\"credits\":16,\"gpa\":3.383278,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":72,\"cumcredits\":107,\"cumgpa\":2.769937},{\"null\":575,\"credits\":16,\"gpa\":3.138018,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":72,\"cumcredits\":123,\"cumgpa\":2.817817},{\"null\":576,\"credits\":18,\"gpa\":2.88091,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":73,\"cumcredits\":18,\"cumgpa\":2.88091},{\"null\":577,\"credits\":15,\"gpa\":3.872951,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":73,\"cumcredits\":33,\"cumgpa\":3.331838},{\"null\":578,\"credits\":15,\"gpa\":2.003908,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":73,\"cumcredits\":48,\"cumgpa\":2.91686},{\"null\":579,\"credits\":15,\"gpa\":3.568027,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":73,\"cumcredits\":63,\"cumgpa\":3.071899},{\"null\":580,\"credits\":14,\"gpa\":3.433595,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":73,\"cumcredits\":77,\"cumgpa\":3.137662},{\"null\":581,\"credits\":13,\"gpa\":2.522208,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":73,\"cumcredits\":90,\"cumgpa\":3.048763},{\"null\":582,\"credits\":13,\"gpa\":3.211975,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":73,\"cumcredits\":103,\"cumgpa\":3.069363},{\"null\":583,\"credits\":12,\"gpa\":3.643435,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":73,\"cumcredits\":115,\"cumgpa\":3.129266},{\"null\":584,\"credits\":14,\"gpa\":3.347098,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":74,\"cumcredits\":14,\"cumgpa\":3.347098},{\"null\":585,\"credits\":17,\"gpa\":2.940267,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":74,\"cumcredits\":31,\"cumgpa\":3.123997},{\"null\":586,\"credits\":13,\"gpa\":3.032919,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":74,\"cumcredits\":44,\"cumgpa\":3.097088},{\"null\":587,\"credits\":18,\"gpa\":3.527471,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":74,\"cumcredits\":62,\"cumgpa\":3.222038},{\"null\":588,\"credits\":15,\"gpa\":2.835036,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":74,\"cumcredits\":77,\"cumgpa\":3.146648},{\"null\":589,\"credits\":12,\"gpa\":3.207247,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":74,\"cumcredits\":89,\"cumgpa\":3.154819},{\"null\":590,\"credits\":15,\"gpa\":2.038531,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":74,\"cumcredits\":104,\"cumgpa\":2.993816},{\"null\":591,\"credits\":15,\"gpa\":2.53565,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":74,\"cumcredits\":119,\"cumgpa\":2.936064},{\"null\":592,\"credits\":17,\"gpa\":2.164816,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":75,\"cumcredits\":17,\"cumgpa\":2.164816},{\"null\":593,\"credits\":15,\"gpa\":2.374,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":75,\"cumcredits\":32,\"cumgpa\":2.262871},{\"null\":594,\"credits\":18,\"gpa\":3.366188,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":75,\"cumcredits\":50,\"cumgpa\":2.660065},{\"null\":595,\"credits\":14,\"gpa\":3.515272,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":75,\"cumcredits\":64,\"cumgpa\":2.847142},{\"null\":596,\"credits\":16,\"gpa\":3.653574,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":75,\"cumcredits\":80,\"cumgpa\":3.008428},{\"null\":597,\"credits\":15,\"gpa\":2.906782,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":75,\"cumcredits\":95,\"cumgpa\":2.992379},{\"null\":598,\"credits\":15,\"gpa\":2.861057,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":75,\"cumcredits\":110,\"cumgpa\":2.974471},{\"null\":599,\"credits\":17,\"gpa\":3.76518,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":75,\"cumcredits\":127,\"cumgpa\":3.080314},{\"null\":600,\"credits\":16,\"gpa\":3.404037,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":76,\"cumcredits\":16,\"cumgpa\":3.404037},{\"null\":601,\"credits\":12,\"gpa\":2.26828,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":76,\"cumcredits\":28,\"cumgpa\":2.917284},{\"null\":602,\"credits\":12,\"gpa\":2.479511,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":76,\"cumcredits\":40,\"cumgpa\":2.785952},{\"null\":603,\"credits\":13,\"gpa\":3.351531,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":76,\"cumcredits\":53,\"cumgpa\":2.924679},{\"null\":604,\"credits\":12,\"gpa\":3.633878,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":76,\"cumcredits\":65,\"cumgpa\":3.055608},{\"null\":605,\"credits\":17,\"gpa\":2.249259,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":76,\"cumcredits\":82,\"cumgpa\":2.888438},{\"null\":606,\"credits\":16,\"gpa\":2.756645,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":76,\"cumcredits\":98,\"cumgpa\":2.866921},{\"null\":607,\"credits\":14,\"gpa\":3.822392,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":76,\"cumcredits\":112,\"cumgpa\":2.986355},{\"null\":608,\"credits\":17,\"gpa\":2.376301,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":77,\"cumcredits\":17,\"cumgpa\":2.376301},{\"null\":609,\"credits\":16,\"gpa\":3.132211,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":77,\"cumcredits\":33,\"cumgpa\":2.742802},{\"null\":610,\"credits\":16,\"gpa\":2.69854,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":77,\"cumcredits\":49,\"cumgpa\":2.728349},{\"null\":611,\"credits\":16,\"gpa\":2.210269,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":77,\"cumcredits\":65,\"cumgpa\":2.600822},{\"null\":612,\"credits\":18,\"gpa\":2.033067,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":77,\"cumcredits\":83,\"cumgpa\":2.477694},{\"null\":613,\"credits\":12,\"gpa\":2.992404,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":77,\"cumcredits\":95,\"cumgpa\":2.54271},{\"null\":614,\"credits\":18,\"gpa\":3.929138,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":77,\"cumcredits\":113,\"cumgpa\":2.763557},{\"null\":615,\"credits\":12,\"gpa\":2.612093,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":77,\"cumcredits\":125,\"cumgpa\":2.749017},{\"null\":616,\"credits\":18,\"gpa\":2.190491,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":78,\"cumcredits\":18,\"cumgpa\":2.190491},{\"null\":617,\"credits\":17,\"gpa\":3.45568,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":78,\"cumcredits\":35,\"cumgpa\":2.805012},{\"null\":618,\"credits\":14,\"gpa\":3.111449,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":78,\"cumcredits\":49,\"cumgpa\":2.892565},{\"null\":619,\"credits\":15,\"gpa\":3.358708,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":78,\"cumcredits\":64,\"cumgpa\":3.001817},{\"null\":620,\"credits\":14,\"gpa\":2.445913,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":78,\"cumcredits\":78,\"cumgpa\":2.90204},{\"null\":621,\"credits\":17,\"gpa\":3.226832,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":78,\"cumcredits\":95,\"cumgpa\":2.96016},{\"null\":622,\"credits\":14,\"gpa\":3.127898,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":78,\"cumcredits\":109,\"cumgpa\":2.981705},{\"null\":623,\"credits\":13,\"gpa\":3.803072,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":78,\"cumcredits\":122,\"cumgpa\":3.069227},{\"null\":624,\"credits\":14,\"gpa\":2.421214,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":79,\"cumcredits\":14,\"cumgpa\":2.421214},{\"null\":625,\"credits\":15,\"gpa\":3.058673,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":79,\"cumcredits\":29,\"cumgpa\":2.750934},{\"null\":626,\"credits\":17,\"gpa\":3.783728,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":79,\"cumcredits\":46,\"cumgpa\":3.132619},{\"null\":627,\"credits\":15,\"gpa\":2.943916,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":79,\"cumcredits\":61,\"cumgpa\":3.086216},{\"null\":628,\"credits\":16,\"gpa\":2.221144,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":79,\"cumcredits\":77,\"cumgpa\":2.906461},{\"null\":629,\"credits\":15,\"gpa\":2.524584,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":79,\"cumcredits\":92,\"cumgpa\":2.844198},{\"null\":630,\"credits\":14,\"gpa\":3.903626,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":79,\"cumcredits\":106,\"cumgpa\":2.984123},{\"null\":631,\"credits\":12,\"gpa\":2.961519,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":79,\"cumcredits\":118,\"cumgpa\":2.981824},{\"null\":632,\"credits\":15,\"gpa\":2.946957,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":80,\"cumcredits\":15,\"cumgpa\":2.946957},{\"null\":633,\"credits\":15,\"gpa\":3.726214,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":80,\"cumcredits\":30,\"cumgpa\":3.336585},{\"null\":634,\"credits\":13,\"gpa\":3.432159,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":80,\"cumcredits\":43,\"cumgpa\":3.36548},{\"null\":635,\"credits\":13,\"gpa\":3.594452,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":80,\"cumcredits\":56,\"cumgpa\":3.418634},{\"null\":636,\"credits\":17,\"gpa\":3.525776,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":80,\"cumcredits\":73,\"cumgpa\":3.443585},{\"null\":637,\"credits\":18,\"gpa\":3.376705,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":80,\"cumcredits\":91,\"cumgpa\":3.430356},{\"null\":638,\"credits\":18,\"gpa\":3.643913,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":80,\"cumcredits\":109,\"cumgpa\":3.465622},{\"null\":639,\"credits\":15,\"gpa\":3.048055,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":80,\"cumcredits\":124,\"cumgpa\":3.41511},{\"null\":640,\"credits\":18,\"gpa\":3.484351,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":81,\"cumcredits\":18,\"cumgpa\":3.484351},{\"null\":641,\"credits\":14,\"gpa\":3.205943,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":81,\"cumcredits\":32,\"cumgpa\":3.362548},{\"null\":642,\"credits\":18,\"gpa\":2.265914,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":81,\"cumcredits\":50,\"cumgpa\":2.96776},{\"null\":643,\"credits\":13,\"gpa\":3.076397,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":81,\"cumcredits\":63,\"cumgpa\":2.990177},{\"null\":644,\"credits\":18,\"gpa\":2.097457,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":81,\"cumcredits\":81,\"cumgpa\":2.791795},{\"null\":645,\"credits\":15,\"gpa\":2.201878,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":81,\"cumcredits\":96,\"cumgpa\":2.69962},{\"null\":646,\"credits\":15,\"gpa\":2.113763,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":81,\"cumcredits\":111,\"cumgpa\":2.62045},{\"null\":647,\"credits\":12,\"gpa\":2.707522,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":81,\"cumcredits\":123,\"cumgpa\":2.628945},{\"null\":648,\"credits\":12,\"gpa\":3.166543,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":82,\"cumcredits\":12,\"cumgpa\":3.166543},{\"null\":649,\"credits\":18,\"gpa\":2.197387,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":82,\"cumcredits\":30,\"cumgpa\":2.585049},{\"null\":650,\"credits\":14,\"gpa\":3.457118,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":82,\"cumcredits\":44,\"cumgpa\":2.862526},{\"null\":651,\"credits\":18,\"gpa\":2.001505,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":82,\"cumcredits\":62,\"cumgpa\":2.612552},{\"null\":652,\"credits\":14,\"gpa\":3.347315,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":82,\"cumcredits\":76,\"cumgpa\":2.747903},{\"null\":653,\"credits\":12,\"gpa\":3.098795,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":82,\"cumcredits\":88,\"cumgpa\":2.795752},{\"null\":654,\"credits\":17,\"gpa\":3.742143,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":82,\"cumcredits\":105,\"cumgpa\":2.948977},{\"null\":655,\"credits\":18,\"gpa\":2.053418,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":82,\"cumcredits\":123,\"cumgpa\":2.81792},{\"null\":656,\"credits\":15,\"gpa\":3.234901,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":83,\"cumcredits\":15,\"cumgpa\":3.234901},{\"null\":657,\"credits\":12,\"gpa\":3.792813,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":83,\"cumcredits\":27,\"cumgpa\":3.482862},{\"null\":658,\"credits\":15,\"gpa\":2.791086,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":83,\"cumcredits\":42,\"cumgpa\":3.235799},{\"null\":659,\"credits\":14,\"gpa\":2.487622,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":83,\"cumcredits\":56,\"cumgpa\":3.048755},{\"null\":660,\"credits\":18,\"gpa\":2.809017,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":83,\"cumcredits\":74,\"cumgpa\":2.99044},{\"null\":661,\"credits\":17,\"gpa\":3.1772,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":83,\"cumcredits\":91,\"cumgpa\":3.025329},{\"null\":662,\"credits\":17,\"gpa\":3.553024,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":83,\"cumcredits\":108,\"cumgpa\":3.108392},{\"null\":663,\"credits\":12,\"gpa\":3.668511,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":83,\"cumcredits\":120,\"cumgpa\":3.164404},{\"null\":664,\"credits\":14,\"gpa\":2.043561,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":84,\"cumcredits\":14,\"cumgpa\":2.043561},{\"null\":665,\"credits\":13,\"gpa\":2.456055,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":84,\"cumcredits\":27,\"cumgpa\":2.242169},{\"null\":666,\"credits\":16,\"gpa\":2.732892,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":84,\"cumcredits\":43,\"cumgpa\":2.424763},{\"null\":667,\"credits\":13,\"gpa\":3.372649,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":84,\"cumcredits\":56,\"cumgpa\":2.644808},{\"null\":668,\"credits\":13,\"gpa\":3.437358,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":84,\"cumcredits\":69,\"cumgpa\":2.794129},{\"null\":669,\"credits\":17,\"gpa\":2.551255,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":84,\"cumcredits\":86,\"cumgpa\":2.746119},{\"null\":670,\"credits\":16,\"gpa\":2.419299,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":84,\"cumcredits\":102,\"cumgpa\":2.694853},{\"null\":671,\"credits\":15,\"gpa\":3.732838,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":84,\"cumcredits\":117,\"cumgpa\":2.827928},{\"null\":672,\"credits\":18,\"gpa\":3.564806,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":85,\"cumcredits\":18,\"cumgpa\":3.564806},{\"null\":673,\"credits\":14,\"gpa\":3.778918,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":85,\"cumcredits\":32,\"cumgpa\":3.65848},{\"null\":674,\"credits\":15,\"gpa\":2.654711,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":85,\"cumcredits\":47,\"cumgpa\":3.338128},{\"null\":675,\"credits\":15,\"gpa\":2.467734,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":85,\"cumcredits\":62,\"cumgpa\":3.127549},{\"null\":676,\"credits\":18,\"gpa\":3.802414,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":85,\"cumcredits\":80,\"cumgpa\":3.279393},{\"null\":677,\"credits\":18,\"gpa\":3.976273,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":85,\"cumcredits\":98,\"cumgpa\":3.407392},{\"null\":678,\"credits\":14,\"gpa\":2.79177,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":85,\"cumcredits\":112,\"cumgpa\":3.330439},{\"null\":679,\"credits\":14,\"gpa\":2.595065,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":85,\"cumcredits\":126,\"cumgpa\":3.248731},{\"null\":680,\"credits\":13,\"gpa\":3.757699,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":86,\"cumcredits\":13,\"cumgpa\":3.757699},{\"null\":681,\"credits\":14,\"gpa\":2.448171,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":86,\"cumcredits\":27,\"cumgpa\":3.078685},{\"null\":682,\"credits\":18,\"gpa\":3.745406,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":86,\"cumcredits\":45,\"cumgpa\":3.345373},{\"null\":683,\"credits\":17,\"gpa\":2.381275,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":86,\"cumcredits\":62,\"cumgpa\":3.081024},{\"null\":684,\"credits\":13,\"gpa\":3.68435,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":86,\"cumcredits\":75,\"cumgpa\":3.1856},{\"null\":685,\"credits\":15,\"gpa\":3.574848,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":86,\"cumcredits\":90,\"cumgpa\":3.250475},{\"null\":686,\"credits\":16,\"gpa\":2.649134,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":86,\"cumcredits\":106,\"cumgpa\":3.159706},{\"null\":687,\"credits\":15,\"gpa\":3.180487,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":86,\"cumcredits\":121,\"cumgpa\":3.162283},{\"null\":688,\"credits\":14,\"gpa\":2.397047,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":87,\"cumcredits\":14,\"cumgpa\":2.397047},{\"null\":689,\"credits\":13,\"gpa\":2.106101,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":87,\"cumcredits\":27,\"cumgpa\":2.256962},{\"null\":690,\"credits\":15,\"gpa\":3.049852,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":87,\"cumcredits\":42,\"cumgpa\":2.540137},{\"null\":691,\"credits\":18,\"gpa\":3.437974,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":87,\"cumcredits\":60,\"cumgpa\":2.809488},{\"null\":692,\"credits\":12,\"gpa\":3.456172,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":87,\"cumcredits\":72,\"cumgpa\":2.917269},{\"null\":693,\"credits\":15,\"gpa\":3.317198,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":87,\"cumcredits\":87,\"cumgpa\":2.986222},{\"null\":694,\"credits\":18,\"gpa\":3.999589,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":87,\"cumcredits\":105,\"cumgpa\":3.159942},{\"null\":695,\"credits\":13,\"gpa\":3.827169,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":87,\"cumcredits\":118,\"cumgpa\":3.23345},{\"null\":696,\"credits\":13,\"gpa\":3.120251,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":88,\"cumcredits\":13,\"cumgpa\":3.120251},{\"null\":697,\"credits\":14,\"gpa\":3.807302,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":88,\"cumcredits\":27,\"cumgpa\":3.4765},{\"null\":698,\"credits\":14,\"gpa\":2.860355,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":88,\"cumcredits\":41,\"cumgpa\":3.266109},{\"null\":699,\"credits\":17,\"gpa\":2.430978,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":88,\"cumcredits\":58,\"cumgpa\":3.021329},{\"null\":700,\"credits\":18,\"gpa\":3.185754,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":88,\"cumcredits\":76,\"cumgpa\":3.060272},{\"null\":701,\"credits\":16,\"gpa\":3.228196,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":88,\"cumcredits\":92,\"cumgpa\":3.089476},{\"null\":702,\"credits\":13,\"gpa\":2.647026,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":88,\"cumcredits\":105,\"cumgpa\":3.034696},{\"null\":703,\"credits\":16,\"gpa\":2.967361,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":88,\"cumcredits\":121,\"cumgpa\":3.025793},{\"null\":704,\"credits\":18,\"gpa\":2.058957,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":89,\"cumcredits\":18,\"cumgpa\":2.058957},{\"null\":705,\"credits\":12,\"gpa\":2.870013,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":89,\"cumcredits\":30,\"cumgpa\":2.383379},{\"null\":706,\"credits\":12,\"gpa\":3.292399,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":89,\"cumcredits\":42,\"cumgpa\":2.643099},{\"null\":707,\"credits\":14,\"gpa\":3.603733,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":89,\"cumcredits\":56,\"cumgpa\":2.883258},{\"null\":708,\"credits\":16,\"gpa\":3.104988,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":89,\"cumcredits\":72,\"cumgpa\":2.932531},{\"null\":709,\"credits\":17,\"gpa\":2.927102,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":89,\"cumcredits\":89,\"cumgpa\":2.931494},{\"null\":710,\"credits\":15,\"gpa\":3.196388,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":89,\"cumcredits\":104,\"cumgpa\":2.9697},{\"null\":711,\"credits\":15,\"gpa\":2.59168,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":89,\"cumcredits\":119,\"cumgpa\":2.92205},{\"null\":712,\"credits\":15,\"gpa\":3.677491,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":90,\"cumcredits\":15,\"cumgpa\":3.677491},{\"null\":713,\"credits\":12,\"gpa\":3.814207,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":90,\"cumcredits\":27,\"cumgpa\":3.738254},{\"null\":714,\"credits\":12,\"gpa\":2.24488,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":90,\"cumcredits\":39,\"cumgpa\":3.278754},{\"null\":715,\"credits\":16,\"gpa\":3.49852,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":90,\"cumcredits\":55,\"cumgpa\":3.342686},{\"null\":716,\"credits\":14,\"gpa\":2.956486,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":90,\"cumcredits\":69,\"cumgpa\":3.264327},{\"null\":717,\"credits\":12,\"gpa\":3.761712,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":90,\"cumcredits\":81,\"cumgpa\":3.338013},{\"null\":718,\"credits\":14,\"gpa\":3.334193,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":90,\"cumcredits\":95,\"cumgpa\":3.33745},{\"null\":719,\"credits\":14,\"gpa\":2.963932,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":90,\"cumcredits\":109,\"cumgpa\":3.289475},{\"null\":720,\"credits\":15,\"gpa\":3.383068,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":91,\"cumcredits\":15,\"cumgpa\":3.383068},{\"null\":721,\"credits\":13,\"gpa\":2.589949,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":91,\"cumcredits\":28,\"cumgpa\":3.014834},{\"null\":722,\"credits\":14,\"gpa\":3.816876,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":91,\"cumcredits\":42,\"cumgpa\":3.282181},{\"null\":723,\"credits\":16,\"gpa\":3.702161,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":91,\"cumcredits\":58,\"cumgpa\":3.398038},{\"null\":724,\"credits\":15,\"gpa\":2.558294,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":91,\"cumcredits\":73,\"cumgpa\":3.225488},{\"null\":725,\"credits\":12,\"gpa\":2.547543,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":91,\"cumcredits\":85,\"cumgpa\":3.129778},{\"null\":726,\"credits\":14,\"gpa\":3.590793,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":91,\"cumcredits\":99,\"cumgpa\":3.194972},{\"null\":727,\"credits\":13,\"gpa\":2.653418,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":91,\"cumcredits\":112,\"cumgpa\":3.132113},{\"null\":728,\"credits\":14,\"gpa\":2.960584,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":92,\"cumcredits\":14,\"cumgpa\":2.960584},{\"null\":729,\"credits\":15,\"gpa\":2.518676,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":92,\"cumcredits\":29,\"cumgpa\":2.732011},{\"null\":730,\"credits\":18,\"gpa\":2.547348,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":92,\"cumcredits\":47,\"cumgpa\":2.661289},{\"null\":731,\"credits\":14,\"gpa\":3.672137,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":92,\"cumcredits\":61,\"cumgpa\":2.893287},{\"null\":732,\"credits\":16,\"gpa\":3.042922,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":92,\"cumcredits\":77,\"cumgpa\":2.92438},{\"null\":733,\"credits\":17,\"gpa\":3.996196,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":92,\"cumcredits\":94,\"cumgpa\":3.118219},{\"null\":734,\"credits\":14,\"gpa\":2.59314,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":92,\"cumcredits\":108,\"cumgpa\":3.050153},{\"null\":735,\"credits\":14,\"gpa\":3.781397,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":92,\"cumcredits\":122,\"cumgpa\":3.134067},{\"null\":736,\"credits\":16,\"gpa\":3.049193,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":93,\"cumcredits\":16,\"cumgpa\":3.049193},{\"null\":737,\"credits\":13,\"gpa\":3.745166,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":93,\"cumcredits\":29,\"cumgpa\":3.361181},{\"null\":738,\"credits\":12,\"gpa\":3.366833,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":93,\"cumcredits\":41,\"cumgpa\":3.362835},{\"null\":739,\"credits\":14,\"gpa\":3.996424,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":93,\"cumcredits\":55,\"cumgpa\":3.524112},{\"null\":740,\"credits\":13,\"gpa\":2.058363,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":93,\"cumcredits\":68,\"cumgpa\":3.243895},{\"null\":741,\"credits\":17,\"gpa\":2.212877,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":93,\"cumcredits\":85,\"cumgpa\":3.037692},{\"null\":742,\"credits\":16,\"gpa\":3.601257,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":93,\"cumcredits\":101,\"cumgpa\":3.126969},{\"null\":743,\"credits\":12,\"gpa\":3.026135,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":93,\"cumcredits\":113,\"cumgpa\":3.116261},{\"null\":744,\"credits\":16,\"gpa\":3.807268,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":94,\"cumcredits\":16,\"cumgpa\":3.807268},{\"null\":745,\"credits\":17,\"gpa\":2.059897,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":94,\"cumcredits\":33,\"cumgpa\":2.907107},{\"null\":746,\"credits\":17,\"gpa\":3.554524,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":94,\"cumcredits\":50,\"cumgpa\":3.127229},{\"null\":747,\"credits\":14,\"gpa\":3.710095,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":94,\"cumcredits\":64,\"cumgpa\":3.254731},{\"null\":748,\"credits\":18,\"gpa\":3.381716,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":94,\"cumcredits\":82,\"cumgpa\":3.282606},{\"null\":749,\"credits\":17,\"gpa\":2.415868,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":94,\"cumcredits\":99,\"cumgpa\":3.133772},{\"null\":750,\"credits\":16,\"gpa\":2.946315,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":94,\"cumcredits\":115,\"cumgpa\":3.107691},{\"null\":751,\"credits\":16,\"gpa\":3.132032,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":94,\"cumcredits\":131,\"cumgpa\":3.110664},{\"null\":752,\"credits\":12,\"gpa\":2.046587,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":95,\"cumcredits\":12,\"cumgpa\":2.046587},{\"null\":753,\"credits\":16,\"gpa\":2.395562,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":95,\"cumcredits\":28,\"cumgpa\":2.246001},{\"null\":754,\"credits\":18,\"gpa\":3.607198,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":95,\"cumcredits\":46,\"cumgpa\":2.778643},{\"null\":755,\"credits\":13,\"gpa\":3.252519,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":95,\"cumcredits\":59,\"cumgpa\":2.883057},{\"null\":756,\"credits\":14,\"gpa\":2.187871,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":95,\"cumcredits\":73,\"cumgpa\":2.749733},{\"null\":757,\"credits\":12,\"gpa\":3.733583,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":95,\"cumcredits\":85,\"cumgpa\":2.88863},{\"null\":758,\"credits\":14,\"gpa\":3.759275,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":95,\"cumcredits\":99,\"cumgpa\":3.011751},{\"null\":759,\"credits\":12,\"gpa\":2.217312,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":95,\"cumcredits\":111,\"cumgpa\":2.925866},{\"null\":760,\"credits\":17,\"gpa\":3.911596,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":96,\"cumcredits\":17,\"cumgpa\":3.911596},{\"null\":761,\"credits\":18,\"gpa\":2.916342,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":96,\"cumcredits\":35,\"cumgpa\":3.399751},{\"null\":762,\"credits\":15,\"gpa\":3.0886,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":96,\"cumcredits\":50,\"cumgpa\":3.306406},{\"null\":763,\"credits\":18,\"gpa\":2.833418,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":96,\"cumcredits\":68,\"cumgpa\":3.181203},{\"null\":764,\"credits\":17,\"gpa\":2.948156,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":96,\"cumcredits\":85,\"cumgpa\":3.134594},{\"null\":765,\"credits\":17,\"gpa\":3.175077,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":96,\"cumcredits\":102,\"cumgpa\":3.141341},{\"null\":766,\"credits\":15,\"gpa\":2.225525,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":96,\"cumcredits\":117,\"cumgpa\":3.023929},{\"null\":767,\"credits\":14,\"gpa\":2.065463,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":96,\"cumcredits\":131,\"cumgpa\":2.921497},{\"null\":768,\"credits\":15,\"gpa\":3.229837,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":97,\"cumcredits\":15,\"cumgpa\":3.229837},{\"null\":769,\"credits\":16,\"gpa\":3.538505,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":97,\"cumcredits\":31,\"cumgpa\":3.38915},{\"null\":770,\"credits\":16,\"gpa\":2.737301,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":97,\"cumcredits\":47,\"cumgpa\":3.167244},{\"null\":771,\"credits\":17,\"gpa\":3.434689,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":97,\"cumcredits\":64,\"cumgpa\":3.238284},{\"null\":772,\"credits\":12,\"gpa\":2.110332,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":97,\"cumcredits\":76,\"cumgpa\":3.060186},{\"null\":773,\"credits\":15,\"gpa\":3.364392,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":97,\"cumcredits\":91,\"cumgpa\":3.11033},{\"null\":774,\"credits\":17,\"gpa\":2.585193,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":97,\"cumcredits\":108,\"cumgpa\":3.02767},{\"null\":775,\"credits\":14,\"gpa\":3.509282,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":97,\"cumcredits\":122,\"cumgpa\":3.082937},{\"null\":776,\"credits\":16,\"gpa\":2.10531,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":98,\"cumcredits\":16,\"cumgpa\":2.10531},{\"null\":777,\"credits\":13,\"gpa\":3.901879,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":98,\"cumcredits\":29,\"cumgpa\":2.910669},{\"null\":778,\"credits\":16,\"gpa\":3.243403,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":98,\"cumcredits\":45,\"cumgpa\":3.028974},{\"null\":779,\"credits\":16,\"gpa\":3.682319,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":98,\"cumcredits\":61,\"cumgpa\":3.200343},{\"null\":780,\"credits\":18,\"gpa\":2.872525,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":98,\"cumcredits\":79,\"cumgpa\":3.125651},{\"null\":781,\"credits\":18,\"gpa\":3.861532,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":98,\"cumcredits\":97,\"cumgpa\":3.262206},{\"null\":782,\"credits\":14,\"gpa\":2.636937,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":98,\"cumcredits\":111,\"cumgpa\":3.183343},{\"null\":783,\"credits\":12,\"gpa\":3.377156,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":98,\"cumcredits\":123,\"cumgpa\":3.202252},{\"null\":784,\"credits\":14,\"gpa\":3.361648,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":99,\"cumcredits\":14,\"cumgpa\":3.361648},{\"null\":785,\"credits\":14,\"gpa\":3.827685,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":99,\"cumcredits\":28,\"cumgpa\":3.594666},{\"null\":786,\"credits\":16,\"gpa\":3.799809,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":99,\"cumcredits\":44,\"cumgpa\":3.669264},{\"null\":787,\"credits\":18,\"gpa\":3.363506,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":99,\"cumcredits\":62,\"cumgpa\":3.580495},{\"null\":788,\"credits\":17,\"gpa\":3.764749,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":99,\"cumcredits\":79,\"cumgpa\":3.620145},{\"null\":789,\"credits\":18,\"gpa\":3.880683,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":99,\"cumcredits\":97,\"cumgpa\":3.668492},{\"null\":790,\"credits\":16,\"gpa\":2.262771,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":99,\"cumcredits\":113,\"cumgpa\":3.469452},{\"null\":791,\"credits\":13,\"gpa\":2.261108,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":99,\"cumcredits\":126,\"cumgpa\":3.344782},{\"null\":792,\"credits\":16,\"gpa\":3.517036,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":100,\"cumcredits\":16,\"cumgpa\":3.517036},{\"null\":793,\"credits\":14,\"gpa\":3.519151,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":100,\"cumcredits\":30,\"cumgpa\":3.518023},{\"null\":794,\"credits\":16,\"gpa\":2.515105,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":100,\"cumcredits\":46,\"cumgpa\":3.169182},{\"null\":795,\"credits\":16,\"gpa\":3.01709,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":100,\"cumcredits\":62,\"cumgpa\":3.129932},{\"null\":796,\"credits\":16,\"gpa\":3.13577,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":100,\"cumcredits\":78,\"cumgpa\":3.13113},{\"null\":797,\"credits\":18,\"gpa\":2.284629,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":100,\"cumcredits\":96,\"cumgpa\":2.972411},{\"null\":798,\"credits\":13,\"gpa\":2.210902,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":100,\"cumcredits\":109,\"cumgpa\":2.881589},{\"null\":799,\"credits\":18,\"gpa\":2.939617,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":100,\"cumcredits\":127,\"cumgpa\":2.889813},{\"null\":800,\"credits\":16,\"gpa\":2.918466,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":101,\"cumcredits\":16,\"cumgpa\":2.918466},{\"null\":801,\"credits\":16,\"gpa\":3.968467,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":101,\"cumcredits\":32,\"cumgpa\":3.443466},{\"null\":802,\"credits\":18,\"gpa\":3.69732,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":101,\"cumcredits\":50,\"cumgpa\":3.534854},{\"null\":803,\"credits\":17,\"gpa\":3.650975,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":101,\"cumcredits\":67,\"cumgpa\":3.564317},{\"null\":804,\"credits\":12,\"gpa\":2.874197,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":101,\"cumcredits\":79,\"cumgpa\":3.459489},{\"null\":805,\"credits\":18,\"gpa\":2.689955,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":101,\"cumcredits\":97,\"cumgpa\":3.316689},{\"null\":806,\"credits\":16,\"gpa\":3.180338,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":101,\"cumcredits\":113,\"cumgpa\":3.297383},{\"null\":807,\"credits\":18,\"gpa\":3.890344,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":101,\"cumcredits\":131,\"cumgpa\":3.378858},{\"null\":808,\"credits\":14,\"gpa\":3.06046,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":102,\"cumcredits\":14,\"cumgpa\":3.06046},{\"null\":809,\"credits\":16,\"gpa\":3.834344,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":102,\"cumcredits\":30,\"cumgpa\":3.473198},{\"null\":810,\"credits\":15,\"gpa\":2.129967,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":102,\"cumcredits\":45,\"cumgpa\":3.025455},{\"null\":811,\"credits\":18,\"gpa\":2.727808,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":102,\"cumcredits\":63,\"cumgpa\":2.940413},{\"null\":812,\"credits\":16,\"gpa\":3.149941,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":102,\"cumcredits\":79,\"cumgpa\":2.982849},{\"null\":813,\"credits\":15,\"gpa\":2.655146,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":102,\"cumcredits\":94,\"cumgpa\":2.930556},{\"null\":814,\"credits\":15,\"gpa\":2.824668,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":102,\"cumcredits\":109,\"cumgpa\":2.915984},{\"null\":815,\"credits\":15,\"gpa\":2.558806,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":102,\"cumcredits\":124,\"cumgpa\":2.872777},{\"null\":816,\"credits\":15,\"gpa\":2.708784,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":103,\"cumcredits\":15,\"cumgpa\":2.708784},{\"null\":817,\"credits\":14,\"gpa\":2.935778,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":103,\"cumcredits\":29,\"cumgpa\":2.818367},{\"null\":818,\"credits\":13,\"gpa\":3.354618,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":103,\"cumcredits\":42,\"cumgpa\":2.98435},{\"null\":819,\"credits\":13,\"gpa\":2.921911,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":103,\"cumcredits\":55,\"cumgpa\":2.969591},{\"null\":820,\"credits\":18,\"gpa\":2.511095,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":103,\"cumcredits\":73,\"cumgpa\":2.856537},{\"null\":821,\"credits\":15,\"gpa\":2.209798,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":103,\"cumcredits\":88,\"cumgpa\":2.746298},{\"null\":822,\"credits\":13,\"gpa\":3.934125,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":103,\"cumcredits\":101,\"cumgpa\":2.899186},{\"null\":823,\"credits\":13,\"gpa\":2.850106,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":103,\"cumcredits\":114,\"cumgpa\":2.89359},{\"null\":824,\"credits\":17,\"gpa\":2.603392,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":104,\"cumcredits\":17,\"cumgpa\":2.603392},{\"null\":825,\"credits\":13,\"gpa\":3.803669,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":104,\"cumcredits\":30,\"cumgpa\":3.123512},{\"null\":826,\"credits\":18,\"gpa\":3.199782,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":104,\"cumcredits\":48,\"cumgpa\":3.152113},{\"null\":827,\"credits\":12,\"gpa\":3.377743,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":104,\"cumcredits\":60,\"cumgpa\":3.197239},{\"null\":828,\"credits\":16,\"gpa\":2.121604,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":104,\"cumcredits\":76,\"cumgpa\":2.97079},{\"null\":829,\"credits\":18,\"gpa\":2.419921,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":104,\"cumcredits\":94,\"cumgpa\":2.865304},{\"null\":830,\"credits\":17,\"gpa\":2.611005,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":104,\"cumcredits\":111,\"cumgpa\":2.826357},{\"null\":831,\"credits\":13,\"gpa\":3.083155,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":104,\"cumcredits\":124,\"cumgpa\":2.85328},{\"null\":832,\"credits\":18,\"gpa\":3.048579,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":105,\"cumcredits\":18,\"cumgpa\":3.048579},{\"null\":833,\"credits\":14,\"gpa\":2.838578,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":105,\"cumcredits\":32,\"cumgpa\":2.956704},{\"null\":834,\"credits\":13,\"gpa\":2.12391,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":105,\"cumcredits\":45,\"cumgpa\":2.716119},{\"null\":835,\"credits\":13,\"gpa\":3.601267,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":105,\"cumcredits\":58,\"cumgpa\":2.914514},{\"null\":836,\"credits\":14,\"gpa\":2.161683,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":105,\"cumcredits\":72,\"cumgpa\":2.76813},{\"null\":837,\"credits\":14,\"gpa\":3.937948,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":105,\"cumcredits\":86,\"cumgpa\":2.958566},{\"null\":838,\"credits\":18,\"gpa\":2.015275,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":105,\"cumcredits\":104,\"cumgpa\":2.795304},{\"null\":839,\"credits\":13,\"gpa\":2.109867,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":105,\"cumcredits\":117,\"cumgpa\":2.719144},{\"null\":840,\"credits\":13,\"gpa\":2.898052,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":106,\"cumcredits\":13,\"cumgpa\":2.898052},{\"null\":841,\"credits\":18,\"gpa\":3.464781,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":106,\"cumcredits\":31,\"cumgpa\":3.227121},{\"null\":842,\"credits\":12,\"gpa\":2.118776,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":106,\"cumcredits\":43,\"cumgpa\":2.917815},{\"null\":843,\"credits\":17,\"gpa\":3.276003,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":106,\"cumcredits\":60,\"cumgpa\":3.019302},{\"null\":844,\"credits\":18,\"gpa\":2.924214,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":106,\"cumcredits\":78,\"cumgpa\":2.997359},{\"null\":845,\"credits\":17,\"gpa\":3.708147,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":106,\"cumcredits\":95,\"cumgpa\":3.124552},{\"null\":846,\"credits\":15,\"gpa\":3.564663,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":106,\"cumcredits\":110,\"cumgpa\":3.184567},{\"null\":847,\"credits\":16,\"gpa\":2.747268,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":106,\"cumcredits\":126,\"cumgpa\":3.129037},{\"null\":848,\"credits\":18,\"gpa\":3.57836,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":107,\"cumcredits\":18,\"cumgpa\":3.57836},{\"null\":849,\"credits\":12,\"gpa\":3.949113,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":107,\"cumcredits\":30,\"cumgpa\":3.726661},{\"null\":850,\"credits\":16,\"gpa\":2.595293,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":107,\"cumcredits\":46,\"cumgpa\":3.333142},{\"null\":851,\"credits\":16,\"gpa\":2.364492,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":107,\"cumcredits\":62,\"cumgpa\":3.083167},{\"null\":852,\"credits\":15,\"gpa\":2.031801,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":107,\"cumcredits\":77,\"cumgpa\":2.878356},{\"null\":853,\"credits\":18,\"gpa\":3.016379,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":107,\"cumcredits\":95,\"cumgpa\":2.904508},{\"null\":854,\"credits\":15,\"gpa\":3.319995,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":107,\"cumcredits\":110,\"cumgpa\":2.961165},{\"null\":855,\"credits\":14,\"gpa\":2.109078,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":107,\"cumcredits\":124,\"cumgpa\":2.864962},{\"null\":856,\"credits\":15,\"gpa\":2.331842,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":108,\"cumcredits\":15,\"cumgpa\":2.331842},{\"null\":857,\"credits\":13,\"gpa\":3.045517,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":108,\"cumcredits\":28,\"cumgpa\":2.663191},{\"null\":858,\"credits\":17,\"gpa\":3.072198,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":108,\"cumcredits\":45,\"cumgpa\":2.817705},{\"null\":859,\"credits\":15,\"gpa\":2.782277,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":108,\"cumcredits\":60,\"cumgpa\":2.808848},{\"null\":860,\"credits\":14,\"gpa\":3.088197,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":108,\"cumcredits\":74,\"cumgpa\":2.861698},{\"null\":861,\"credits\":16,\"gpa\":3.190194,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":108,\"cumcredits\":90,\"cumgpa\":2.920097},{\"null\":862,\"credits\":16,\"gpa\":2.703767,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":108,\"cumcredits\":106,\"cumgpa\":2.887443},{\"null\":863,\"credits\":12,\"gpa\":2.764012,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":108,\"cumcredits\":118,\"cumgpa\":2.874891},{\"null\":864,\"credits\":17,\"gpa\":2.465581,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":109,\"cumcredits\":17,\"cumgpa\":2.465581},{\"null\":865,\"credits\":14,\"gpa\":3.866721,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":109,\"cumcredits\":31,\"cumgpa\":3.098354},{\"null\":866,\"credits\":16,\"gpa\":2.276606,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":109,\"cumcredits\":47,\"cumgpa\":2.81861},{\"null\":867,\"credits\":13,\"gpa\":2.859648,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":109,\"cumcredits\":60,\"cumgpa\":2.827501},{\"null\":868,\"credits\":14,\"gpa\":3.38737,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":109,\"cumcredits\":74,\"cumgpa\":2.933423},{\"null\":869,\"credits\":13,\"gpa\":3.630471,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":109,\"cumcredits\":87,\"cumgpa\":3.037579},{\"null\":870,\"credits\":16,\"gpa\":3.382846,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":109,\"cumcredits\":103,\"cumgpa\":3.091213},{\"null\":871,\"credits\":12,\"gpa\":3.417061,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":109,\"cumcredits\":115,\"cumgpa\":3.125214},{\"null\":872,\"credits\":13,\"gpa\":2.515736,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":110,\"cumcredits\":13,\"cumgpa\":2.515736},{\"null\":873,\"credits\":17,\"gpa\":3.721177,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":110,\"cumcredits\":30,\"cumgpa\":3.198819},{\"null\":874,\"credits\":14,\"gpa\":3.149966,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":110,\"cumcredits\":44,\"cumgpa\":3.183275},{\"null\":875,\"credits\":18,\"gpa\":3.945992,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":110,\"cumcredits\":62,\"cumgpa\":3.404709},{\"null\":876,\"credits\":13,\"gpa\":2.104064,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":110,\"cumcredits\":75,\"cumgpa\":3.179264},{\"null\":877,\"credits\":16,\"gpa\":3.00761,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":110,\"cumcredits\":91,\"cumgpa\":3.149083},{\"null\":878,\"credits\":17,\"gpa\":3.04321,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":110,\"cumcredits\":108,\"cumgpa\":3.132418},{\"null\":879,\"credits\":15,\"gpa\":2.838999,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":110,\"cumcredits\":123,\"cumgpa\":3.096635},{\"null\":880,\"credits\":17,\"gpa\":2.364318,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":111,\"cumcredits\":17,\"cumgpa\":2.364318},{\"null\":881,\"credits\":18,\"gpa\":3.477728,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":111,\"cumcredits\":35,\"cumgpa\":2.936929},{\"null\":882,\"credits\":14,\"gpa\":3.915335,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":111,\"cumcredits\":49,\"cumgpa\":3.216473},{\"null\":883,\"credits\":17,\"gpa\":2.516793,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":111,\"cumcredits\":66,\"cumgpa\":3.036253},{\"null\":884,\"credits\":15,\"gpa\":3.772993,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":111,\"cumcredits\":81,\"cumgpa\":3.172686},{\"null\":885,\"credits\":17,\"gpa\":3.131551,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":111,\"cumcredits\":98,\"cumgpa\":3.16555},{\"null\":886,\"credits\":15,\"gpa\":2.791756,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":111,\"cumcredits\":113,\"cumgpa\":3.115932},{\"null\":887,\"credits\":12,\"gpa\":3.08855,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":111,\"cumcredits\":125,\"cumgpa\":3.113303},{\"null\":888,\"credits\":12,\"gpa\":2.134514,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":112,\"cumcredits\":12,\"cumgpa\":2.134514},{\"null\":889,\"credits\":14,\"gpa\":3.501243,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":112,\"cumcredits\":26,\"cumgpa\":2.870445},{\"null\":890,\"credits\":14,\"gpa\":3.327141,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":112,\"cumcredits\":40,\"cumgpa\":3.030288},{\"null\":891,\"credits\":16,\"gpa\":2.719545,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":112,\"cumcredits\":56,\"cumgpa\":2.941505},{\"null\":892,\"credits\":18,\"gpa\":3.753702,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":112,\"cumcredits\":74,\"cumgpa\":3.139066},{\"null\":893,\"credits\":13,\"gpa\":2.91157,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":112,\"cumcredits\":87,\"cumgpa\":3.105073},{\"null\":894,\"credits\":15,\"gpa\":3.041393,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":112,\"cumcredits\":102,\"cumgpa\":3.095708},{\"null\":895,\"credits\":15,\"gpa\":3.696436,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":112,\"cumcredits\":117,\"cumgpa\":3.172724},{\"null\":896,\"credits\":17,\"gpa\":3.766964,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":113,\"cumcredits\":17,\"cumgpa\":3.766964},{\"null\":897,\"credits\":18,\"gpa\":3.968984,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":113,\"cumcredits\":35,\"cumgpa\":3.87086},{\"null\":898,\"credits\":18,\"gpa\":3.94197,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":113,\"cumcredits\":53,\"cumgpa\":3.895011},{\"null\":899,\"credits\":13,\"gpa\":3.003473,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":113,\"cumcredits\":66,\"cumgpa\":3.719405},{\"null\":900,\"credits\":14,\"gpa\":2.751779,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":113,\"cumcredits\":80,\"cumgpa\":3.55007},{\"null\":901,\"credits\":18,\"gpa\":2.564681,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":113,\"cumcredits\":98,\"cumgpa\":3.36908},{\"null\":902,\"credits\":16,\"gpa\":3.223944,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":113,\"cumcredits\":114,\"cumgpa\":3.34871},{\"null\":903,\"credits\":13,\"gpa\":3.630265,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":113,\"cumcredits\":127,\"cumgpa\":3.377531},{\"null\":904,\"credits\":16,\"gpa\":2.799382,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":114,\"cumcredits\":16,\"cumgpa\":2.799382},{\"null\":905,\"credits\":16,\"gpa\":3.731294,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":114,\"cumcredits\":32,\"cumgpa\":3.265338},{\"null\":906,\"credits\":13,\"gpa\":2.398069,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":114,\"cumcredits\":45,\"cumgpa\":3.014794},{\"null\":907,\"credits\":16,\"gpa\":3.934232,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":114,\"cumcredits\":61,\"cumgpa\":3.255958},{\"null\":908,\"credits\":12,\"gpa\":2.600645,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":114,\"cumcredits\":73,\"cumgpa\":3.148235},{\"null\":909,\"credits\":13,\"gpa\":3.064218,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":114,\"cumcredits\":86,\"cumgpa\":3.135535},{\"null\":910,\"credits\":13,\"gpa\":3.363814,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":114,\"cumcredits\":99,\"cumgpa\":3.165511},{\"null\":911,\"credits\":13,\"gpa\":2.686112,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":114,\"cumcredits\":112,\"cumgpa\":3.109866},{\"null\":912,\"credits\":16,\"gpa\":2.402453,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":115,\"cumcredits\":16,\"cumgpa\":2.402453},{\"null\":913,\"credits\":13,\"gpa\":3.296338,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":115,\"cumcredits\":29,\"cumgpa\":2.80316},{\"null\":914,\"credits\":16,\"gpa\":2.291974,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":115,\"cumcredits\":45,\"cumgpa\":2.621405},{\"null\":915,\"credits\":13,\"gpa\":3.659878,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":115,\"cumcredits\":58,\"cumgpa\":2.854166},{\"null\":916,\"credits\":14,\"gpa\":3.05101,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":115,\"cumcredits\":72,\"cumgpa\":2.892441},{\"null\":917,\"credits\":17,\"gpa\":2.489611,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":115,\"cumcredits\":89,\"cumgpa\":2.815496},{\"null\":918,\"credits\":17,\"gpa\":2.993661,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":115,\"cumcredits\":106,\"cumgpa\":2.84407},{\"null\":919,\"credits\":14,\"gpa\":3.372147,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":115,\"cumcredits\":120,\"cumgpa\":2.905679},{\"null\":920,\"credits\":14,\"gpa\":2.937331,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":116,\"cumcredits\":14,\"cumgpa\":2.937331},{\"null\":921,\"credits\":15,\"gpa\":2.619694,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":116,\"cumcredits\":29,\"cumgpa\":2.773036},{\"null\":922,\"credits\":16,\"gpa\":2.557196,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":116,\"cumcredits\":45,\"cumgpa\":2.696293},{\"null\":923,\"credits\":17,\"gpa\":2.79606,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":116,\"cumcredits\":62,\"cumgpa\":2.723648},{\"null\":924,\"credits\":14,\"gpa\":3.915183,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":116,\"cumcredits\":76,\"cumgpa\":2.943142},{\"null\":925,\"credits\":16,\"gpa\":2.243195,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":116,\"cumcredits\":92,\"cumgpa\":2.821412},{\"null\":926,\"credits\":12,\"gpa\":2.370063,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":116,\"cumcredits\":104,\"cumgpa\":2.769333},{\"null\":927,\"credits\":14,\"gpa\":2.849534,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":116,\"cumcredits\":118,\"cumgpa\":2.778849},{\"null\":928,\"credits\":13,\"gpa\":2.954072,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":117,\"cumcredits\":13,\"cumgpa\":2.954072},{\"null\":929,\"credits\":14,\"gpa\":2.953168,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":117,\"cumcredits\":27,\"cumgpa\":2.953604},{\"null\":930,\"credits\":14,\"gpa\":2.960465,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":117,\"cumcredits\":41,\"cumgpa\":2.955947},{\"null\":931,\"credits\":18,\"gpa\":2.85555,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":117,\"cumcredits\":59,\"cumgpa\":2.925317},{\"null\":932,\"credits\":13,\"gpa\":3.922334,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":117,\"cumcredits\":72,\"cumgpa\":3.105334},{\"null\":933,\"credits\":16,\"gpa\":2.326868,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":117,\"cumcredits\":88,\"cumgpa\":2.963795},{\"null\":934,\"credits\":14,\"gpa\":2.763447,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":117,\"cumcredits\":102,\"cumgpa\":2.936296},{\"null\":935,\"credits\":12,\"gpa\":3.258974,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":117,\"cumcredits\":114,\"cumgpa\":2.970262},{\"null\":936,\"credits\":12,\"gpa\":3.161825,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":118,\"cumcredits\":12,\"cumgpa\":3.161825},{\"null\":937,\"credits\":17,\"gpa\":3.079699,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":118,\"cumcredits\":29,\"cumgpa\":3.113682},{\"null\":938,\"credits\":14,\"gpa\":3.111789,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":118,\"cumcredits\":43,\"cumgpa\":3.113066},{\"null\":939,\"credits\":13,\"gpa\":3.318271,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":118,\"cumcredits\":56,\"cumgpa\":3.160703},{\"null\":940,\"credits\":12,\"gpa\":2.58274,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":118,\"cumcredits\":68,\"cumgpa\":3.058709},{\"null\":941,\"credits\":14,\"gpa\":2.039188,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":118,\"cumcredits\":82,\"cumgpa\":2.884645},{\"null\":942,\"credits\":16,\"gpa\":3.242471,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":118,\"cumcredits\":98,\"cumgpa\":2.943065},{\"null\":943,\"credits\":16,\"gpa\":2.164524,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":118,\"cumcredits\":114,\"cumgpa\":2.833796},{\"null\":944,\"credits\":18,\"gpa\":3.360365,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":119,\"cumcredits\":18,\"cumgpa\":3.360365},{\"null\":945,\"credits\":17,\"gpa\":3.939682,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":119,\"cumcredits\":35,\"cumgpa\":3.641747},{\"null\":946,\"credits\":18,\"gpa\":3.418946,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":119,\"cumcredits\":53,\"cumgpa\":3.566079},{\"null\":947,\"credits\":12,\"gpa\":2.529788,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":119,\"cumcredits\":65,\"cumgpa\":3.374764},{\"null\":948,\"credits\":16,\"gpa\":2.552756,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":119,\"cumcredits\":81,\"cumgpa\":3.212392},{\"null\":949,\"credits\":12,\"gpa\":3.837993,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":119,\"cumcredits\":93,\"cumgpa\":3.293114},{\"null\":950,\"credits\":15,\"gpa\":3.814598,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":119,\"cumcredits\":108,\"cumgpa\":3.365543},{\"null\":951,\"credits\":15,\"gpa\":2.605272,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":119,\"cumcredits\":123,\"cumgpa\":3.272827},{\"null\":952,\"credits\":12,\"gpa\":3.949361,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":120,\"cumcredits\":12,\"cumgpa\":3.949361},{\"null\":953,\"credits\":18,\"gpa\":2.844555,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":120,\"cumcredits\":30,\"cumgpa\":3.286477},{\"null\":954,\"credits\":18,\"gpa\":2.383477,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":120,\"cumcredits\":48,\"cumgpa\":2.947852},{\"null\":955,\"credits\":12,\"gpa\":2.854892,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":120,\"cumcredits\":60,\"cumgpa\":2.92926},{\"null\":956,\"credits\":16,\"gpa\":2.829008,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":120,\"cumcredits\":76,\"cumgpa\":2.908154},{\"null\":957,\"credits\":14,\"gpa\":3.304443,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":120,\"cumcredits\":90,\"cumgpa\":2.969799},{\"null\":958,\"credits\":14,\"gpa\":2.973742,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":120,\"cumcredits\":104,\"cumgpa\":2.97033},{\"null\":959,\"credits\":17,\"gpa\":3.328771,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":120,\"cumcredits\":121,\"cumgpa\":3.02069},{\"null\":960,\"credits\":15,\"gpa\":3.224349,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":121,\"cumcredits\":15,\"cumgpa\":3.224349},{\"null\":961,\"credits\":16,\"gpa\":3.558427,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":121,\"cumcredits\":31,\"cumgpa\":3.396776},{\"null\":962,\"credits\":14,\"gpa\":3.525413,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":121,\"cumcredits\":45,\"cumgpa\":3.436797},{\"null\":963,\"credits\":16,\"gpa\":2.659849,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":121,\"cumcredits\":61,\"cumgpa\":3.233007},{\"null\":964,\"credits\":12,\"gpa\":2.295963,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":121,\"cumcredits\":73,\"cumgpa\":3.078973},{\"null\":965,\"credits\":16,\"gpa\":3.187684,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":121,\"cumcredits\":89,\"cumgpa\":3.098516},{\"null\":966,\"credits\":12,\"gpa\":2.843627,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":121,\"cumcredits\":101,\"cumgpa\":3.068232},{\"null\":967,\"credits\":12,\"gpa\":3.270302,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":121,\"cumcredits\":113,\"cumgpa\":3.089691},{\"null\":968,\"credits\":12,\"gpa\":3.17161,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":122,\"cumcredits\":12,\"cumgpa\":3.17161},{\"null\":969,\"credits\":18,\"gpa\":3.982017,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":122,\"cumcredits\":30,\"cumgpa\":3.657854},{\"null\":970,\"credits\":14,\"gpa\":3.618081,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":122,\"cumcredits\":44,\"cumgpa\":3.645199},{\"null\":971,\"credits\":13,\"gpa\":3.602699,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":122,\"cumcredits\":57,\"cumgpa\":3.635506},{\"null\":972,\"credits\":12,\"gpa\":2.018866,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":122,\"cumcredits\":69,\"cumgpa\":3.354351},{\"null\":973,\"credits\":16,\"gpa\":3.767892,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":122,\"cumcredits\":85,\"cumgpa\":3.432194},{\"null\":974,\"credits\":18,\"gpa\":2.134489,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":122,\"cumcredits\":103,\"cumgpa\":3.205411},{\"null\":975,\"credits\":15,\"gpa\":2.638259,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":122,\"cumcredits\":118,\"cumgpa\":3.133315},{\"null\":976,\"credits\":18,\"gpa\":2.790437,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":123,\"cumcredits\":18,\"cumgpa\":2.790437},{\"null\":977,\"credits\":17,\"gpa\":2.935675,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":123,\"cumcredits\":35,\"cumgpa\":2.860981},{\"null\":978,\"credits\":18,\"gpa\":3.468934,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":123,\"cumcredits\":53,\"cumgpa\":3.067456},{\"null\":979,\"credits\":18,\"gpa\":2.507178,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":123,\"cumcredits\":71,\"cumgpa\":2.925414},{\"null\":980,\"credits\":14,\"gpa\":2.057532,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":123,\"cumcredits\":85,\"cumgpa\":2.782469},{\"null\":981,\"credits\":18,\"gpa\":2.613808,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":123,\"cumcredits\":103,\"cumgpa\":2.752994},{\"null\":982,\"credits\":13,\"gpa\":3.922899,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":123,\"cumcredits\":116,\"cumgpa\":2.884104},{\"null\":983,\"credits\":14,\"gpa\":3.167668,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":123,\"cumcredits\":130,\"cumgpa\":2.914642},{\"null\":984,\"credits\":14,\"gpa\":2.53159,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":124,\"cumcredits\":14,\"cumgpa\":2.53159},{\"null\":985,\"credits\":14,\"gpa\":2.06198,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":124,\"cumcredits\":28,\"cumgpa\":2.296785},{\"null\":986,\"credits\":13,\"gpa\":3.513941,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":124,\"cumcredits\":41,\"cumgpa\":2.682713},{\"null\":987,\"credits\":18,\"gpa\":2.527532,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":124,\"cumcredits\":59,\"cumgpa\":2.63537},{\"null\":988,\"credits\":17,\"gpa\":2.539505,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":124,\"cumcredits\":76,\"cumgpa\":2.613926},{\"null\":989,\"credits\":15,\"gpa\":3.539149,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":124,\"cumcredits\":91,\"cumgpa\":2.766435},{\"null\":990,\"credits\":12,\"gpa\":2.387103,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":124,\"cumcredits\":103,\"cumgpa\":2.722241},{\"null\":991,\"credits\":14,\"gpa\":2.857008,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":124,\"cumcredits\":117,\"cumgpa\":2.738367},{\"null\":992,\"credits\":12,\"gpa\":3.725688,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":125,\"cumcredits\":12,\"cumgpa\":3.725688},{\"null\":993,\"credits\":17,\"gpa\":3.525533,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":125,\"cumcredits\":29,\"cumgpa\":3.608355},{\"null\":994,\"credits\":14,\"gpa\":2.434716,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":125,\"cumcredits\":43,\"cumgpa\":3.22624},{\"null\":995,\"credits\":15,\"gpa\":3.6273,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":125,\"cumcredits\":58,\"cumgpa\":3.329963},{\"null\":996,\"credits\":17,\"gpa\":3.526858,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":125,\"cumcredits\":75,\"cumgpa\":3.374592},{\"null\":997,\"credits\":14,\"gpa\":3.523341,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":125,\"cumcredits\":89,\"cumgpa\":3.397991},{\"null\":998,\"credits\":12,\"gpa\":3.729964,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":125,\"cumcredits\":101,\"cumgpa\":3.437433},{\"null\":999,\"credits\":18,\"gpa\":3.510772,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":125,\"cumcredits\":119,\"cumgpa\":3.448526}], [{\"field\": null, \"type\": \"Integer\"}, {\"field\": \"credits\", \"type\": \"Integer\"}, {\"field\": \"gpa\", \"type\": \"Float\"}, {\"field\": \"major\"}, {\"field\": \"semester\"}, {\"field\": \"studentid\", \"type\": \"Integer\"}, {\"field\": \"cumcredits\", \"type\": \"Integer\"}, {\"field\": \"cumgpa\", \"type\": \"Float\"}]);\n",
" grid.initialize_slick_grid();\n",
" });\n",
" });\n",
"});"
],
"metadata": {},
"output_type": "display_data"
}
],
"prompt_number": 2
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We now have a data frame similar to what you're working with in your project. I've randomized the majors - no one in reality would change majors that much - but everything else makes some degree of sense. \n",
"\n",
"You've got multiple options for working with your data. Probably the simplest is to take the final semester the student was enrolled at TCU, and work with that. In this data frame, the final semester is always Spring of 2013; your dataset is more complicated than that. So, I'll show you how to handle that. \n",
"\n",
"The issue here is that while there is a logical order to the semesters, it is not alphabetical. As such, we'll need to do some wrangling to create a dictionary that we can use to indicate some sort of order. "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"pre = ['F', 'S']\n",
"\n",
"post = []\n",
"\n",
"for i in xrange(4, 14):\n",
" j = str(i).zfill(2)\n",
" post.append(j)\n",
"\n",
"sems = []\n",
"\n",
"for a in post:\n",
" for b in pre:\n",
" c = b + a\n",
" sems.append(c)\n",
"\n",
"order = range(1, len(sems) + 1)\n",
"\n",
"semdict = dict(zip(sems, order))\n",
"\n",
"print(semdict)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"{'S08': 10, 'S09': 12, 'S13': 20, 'S12': 18, 'S11': 16, 'S10': 14, 'S04': 2, 'S05': 4, 'S06': 6, 'S07': 8, 'F05': 3, 'F04': 1, 'F07': 7, 'F06': 5, 'F12': 17, 'F13': 19, 'F10': 13, 'F11': 15, 'F09': 11, 'F08': 9}\n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Excellent, we now have a dictionary with appropriate ranks. This can be used to create a new semester rank column in our data frame. "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"df1['semorder'] = df1['semester']\n",
"\n",
"df1['semorder'].replace(semdict, inplace = True)\n",
"\n",
"show_grid(df1, remote_js = True)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<script type=\"text/javascript\">\n",
"if ($(\"#dg-css\").length == 0){\n",
" $(\"head\").append([\n",
" \"<link href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.grid.css' rel='stylesheet'>\",\n",
" \"<link href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick-default-theme.css' rel='stylesheet'>\",\n",
" \"<link href='http://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.4/css/jquery-ui.min.css' rel='stylesheet'>\",\n",
" \"<link id='dg-css' href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.css' rel='stylesheet'>\"\n",
" ]);\n",
"}\n",
"</script>\n",
"<div class='q-grid-container'>\n",
"<div id='5c300250-2b6f-416f-907d-e4aa491e1619' class='q-grid'></div>\n",
"</div>"
],
"metadata": {},
"output_type": "display_data"
},
{
"javascript": [
"var path_dictionary = {\n",
" jquery_drag: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/jquery.event.drag-2.2\",\n",
" slick_core: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.core.2.2\",\n",
" slick_data_view: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.dataview.2.2\",\n",
" slick_grid: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.grid.2.2\",\n",
" data_grid: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid\",\n",
" date_filter: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.datefilter\",\n",
" slider_filter: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.sliderfilter\",\n",
" filter_base: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.filterbase\",\n",
" handlebars: \"https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0/handlebars.min\"\n",
"};\n",
"\n",
"var existing_config = require.s.contexts._.config;\n",
"if (!existing_config.paths['underscore']){\n",
" path_dictionary['underscore'] = \"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min\";\n",
"}\n",
"\n",
"if (!existing_config.paths['moment']){\n",
" path_dictionary['moment'] = \"https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.3/moment.min\";\n",
"}\n",
"\n",
"if (!existing_config.paths['jqueryui']){\n",
" path_dictionary['jqueryui'] = \"https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min\";\n",
"}\n",
"\n",
"require.config({\n",
" paths: path_dictionary\n",
"});\n",
"\n",
"if (typeof jQuery === 'function') {\n",
" define('jquery', function() { return jQuery; });\n",
"}\n",
"\n",
"require([\n",
" 'jquery',\n",
" 'jquery_drag',\n",
" 'slick_core',\n",
" 'slick_data_view'\n",
"],\n",
"function($){\n",
" $('#5c300250-2b6f-416f-907d-e4aa491e1619').closest('.rendered_html').removeClass('rendered_html');\n",
" require(['slick_grid'], function(){\n",
" require([\"data_grid\"], function(dgrid){\n",
" var grid = new dgrid.QGrid('#5c300250-2b6f-416f-907d-e4aa491e1619', [{\"null\":0,\"credits\":14,\"gpa\":3.000325,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":1,\"cumcredits\":14,\"cumgpa\":3.000325,\"semorder\":13},{\"null\":1,\"credits\":14,\"gpa\":2.098823,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":1,\"cumcredits\":28,\"cumgpa\":2.549574,\"semorder\":14},{\"null\":2,\"credits\":18,\"gpa\":3.960285,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":1,\"cumcredits\":46,\"cumgpa\":3.101591,\"semorder\":15},{\"null\":3,\"credits\":18,\"gpa\":2.109119,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":1,\"cumcredits\":64,\"cumgpa\":2.822458,\"semorder\":16},{\"null\":4,\"credits\":12,\"gpa\":3.729988,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":1,\"cumcredits\":76,\"cumgpa\":2.965753,\"semorder\":17},{\"null\":5,\"credits\":13,\"gpa\":2.673195,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":1,\"cumcredits\":89,\"cumgpa\":2.923019,\"semorder\":18},{\"null\":6,\"credits\":14,\"gpa\":3.802531,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":1,\"cumcredits\":103,\"cumgpa\":3.042565,\"semorder\":19},{\"null\":7,\"credits\":12,\"gpa\":2.738838,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":1,\"cumcredits\":115,\"cumgpa\":3.010871,\"semorder\":20},{\"null\":8,\"credits\":13,\"gpa\":3.252868,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":2,\"cumcredits\":13,\"cumgpa\":3.252868,\"semorder\":13},{\"null\":9,\"credits\":18,\"gpa\":2.797768,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":2,\"cumcredits\":31,\"cumgpa\":2.988617,\"semorder\":14},{\"null\":10,\"credits\":12,\"gpa\":2.795278,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":2,\"cumcredits\":43,\"cumgpa\":2.934662,\"semorder\":15},{\"null\":11,\"credits\":12,\"gpa\":3.252415,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":2,\"cumcredits\":55,\"cumgpa\":3.00399,\"semorder\":16},{\"null\":12,\"credits\":18,\"gpa\":2.621278,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":2,\"cumcredits\":73,\"cumgpa\":2.909622,\"semorder\":17},{\"null\":13,\"credits\":13,\"gpa\":2.412247,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":2,\"cumcredits\":86,\"cumgpa\":2.834438,\"semorder\":18},{\"null\":14,\"credits\":17,\"gpa\":3.838631,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":2,\"cumcredits\":103,\"cumgpa\":3.000178,\"semorder\":19},{\"null\":15,\"credits\":17,\"gpa\":2.01182,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":2,\"cumcredits\":120,\"cumgpa\":2.860161,\"semorder\":20},{\"null\":16,\"credits\":14,\"gpa\":3.934065,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":3,\"cumcredits\":14,\"cumgpa\":3.934065,\"semorder\":13},{\"null\":17,\"credits\":12,\"gpa\":3.006804,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":3,\"cumcredits\":26,\"cumgpa\":3.506098,\"semorder\":14},{\"null\":18,\"credits\":15,\"gpa\":3.427276,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":3,\"cumcredits\":41,\"cumgpa\":3.477261,\"semorder\":15},{\"null\":19,\"credits\":13,\"gpa\":2.781778,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":3,\"cumcredits\":54,\"cumgpa\":3.309829,\"semorder\":16},{\"null\":20,\"credits\":17,\"gpa\":2.022716,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":3,\"cumcredits\":71,\"cumgpa\":3.001647,\"semorder\":17},{\"null\":21,\"credits\":15,\"gpa\":2.017104,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":3,\"cumcredits\":86,\"cumgpa\":2.829925,\"semorder\":18},{\"null\":22,\"credits\":18,\"gpa\":3.54374,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":3,\"cumcredits\":104,\"cumgpa\":2.95347,\"semorder\":19},{\"null\":23,\"credits\":13,\"gpa\":3.140741,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":3,\"cumcredits\":117,\"cumgpa\":2.974278,\"semorder\":20},{\"null\":24,\"credits\":18,\"gpa\":3.720242,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":4,\"cumcredits\":18,\"cumgpa\":3.720242,\"semorder\":13},{\"null\":25,\"credits\":18,\"gpa\":3.624173,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":4,\"cumcredits\":36,\"cumgpa\":3.672208,\"semorder\":14},{\"null\":26,\"credits\":15,\"gpa\":2.567702,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":4,\"cumcredits\":51,\"cumgpa\":3.347353,\"semorder\":15},{\"null\":27,\"credits\":15,\"gpa\":3.90262,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":4,\"cumcredits\":66,\"cumgpa\":3.47355,\"semorder\":16},{\"null\":28,\"credits\":13,\"gpa\":3.528087,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":4,\"cumcredits\":79,\"cumgpa\":3.482525,\"semorder\":17},{\"null\":29,\"credits\":13,\"gpa\":3.969928,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":4,\"cumcredits\":92,\"cumgpa\":3.551397,\"semorder\":18},{\"null\":30,\"credits\":18,\"gpa\":2.16064,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":4,\"cumcredits\":110,\"cumgpa\":3.323818,\"semorder\":19},{\"null\":31,\"credits\":12,\"gpa\":2.18144,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":4,\"cumcredits\":122,\"cumgpa\":3.211453,\"semorder\":20},{\"null\":32,\"credits\":17,\"gpa\":2.205424,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":5,\"cumcredits\":17,\"cumgpa\":2.205424,\"semorder\":13},{\"null\":33,\"credits\":12,\"gpa\":3.630906,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":5,\"cumcredits\":29,\"cumgpa\":2.795279,\"semorder\":14},{\"null\":34,\"credits\":16,\"gpa\":2.179225,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":5,\"cumcredits\":45,\"cumgpa\":2.576237,\"semorder\":15},{\"null\":35,\"credits\":17,\"gpa\":3.716934,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":5,\"cumcredits\":62,\"cumgpa\":2.889009,\"semorder\":16},{\"null\":36,\"credits\":15,\"gpa\":3.411172,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":5,\"cumcredits\":77,\"cumgpa\":2.990729,\"semorder\":17},{\"null\":37,\"credits\":13,\"gpa\":3.449017,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":5,\"cumcredits\":90,\"cumgpa\":3.056926,\"semorder\":18},{\"null\":38,\"credits\":13,\"gpa\":3.108719,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":5,\"cumcredits\":103,\"cumgpa\":3.063463,\"semorder\":19},{\"null\":39,\"credits\":13,\"gpa\":3.002588,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":5,\"cumcredits\":116,\"cumgpa\":3.056641,\"semorder\":20},{\"null\":40,\"credits\":17,\"gpa\":2.502475,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":6,\"cumcredits\":17,\"cumgpa\":2.502475,\"semorder\":13},{\"null\":41,\"credits\":13,\"gpa\":2.372734,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":6,\"cumcredits\":30,\"cumgpa\":2.446254,\"semorder\":14},{\"null\":42,\"credits\":18,\"gpa\":2.14011,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":6,\"cumcredits\":48,\"cumgpa\":2.33145,\"semorder\":15},{\"null\":43,\"credits\":14,\"gpa\":2.05975,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":6,\"cumcredits\":62,\"cumgpa\":2.270098,\"semorder\":16},{\"null\":44,\"credits\":18,\"gpa\":3.027494,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":6,\"cumcredits\":80,\"cumgpa\":2.440512,\"semorder\":17},{\"null\":45,\"credits\":14,\"gpa\":2.324686,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":6,\"cumcredits\":94,\"cumgpa\":2.423262,\"semorder\":18},{\"null\":46,\"credits\":16,\"gpa\":3.290379,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":6,\"cumcredits\":110,\"cumgpa\":2.549388,\"semorder\":19},{\"null\":47,\"credits\":18,\"gpa\":3.808112,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":6,\"cumcredits\":128,\"cumgpa\":2.726396,\"semorder\":20},{\"null\":48,\"credits\":18,\"gpa\":3.623871,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":7,\"cumcredits\":18,\"cumgpa\":3.623871,\"semorder\":13},{\"null\":49,\"credits\":14,\"gpa\":3.205462,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":7,\"cumcredits\":32,\"cumgpa\":3.440817,\"semorder\":14},{\"null\":50,\"credits\":14,\"gpa\":2.813445,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":7,\"cumcredits\":46,\"cumgpa\":3.249878,\"semorder\":15},{\"null\":51,\"credits\":12,\"gpa\":2.008465,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":7,\"cumcredits\":58,\"cumgpa\":2.993034,\"semorder\":16},{\"null\":52,\"credits\":13,\"gpa\":2.211705,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":7,\"cumcredits\":71,\"cumgpa\":2.849974,\"semorder\":17},{\"null\":53,\"credits\":15,\"gpa\":3.91637,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":7,\"cumcredits\":86,\"cumgpa\":3.035973,\"semorder\":18},{\"null\":54,\"credits\":16,\"gpa\":3.300348,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":7,\"cumcredits\":102,\"cumgpa\":3.077443,\"semorder\":19},{\"null\":55,\"credits\":12,\"gpa\":2.108963,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":7,\"cumcredits\":114,\"cumgpa\":2.975498,\"semorder\":20},{\"null\":56,\"credits\":16,\"gpa\":3.229197,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":8,\"cumcredits\":16,\"cumgpa\":3.229197,\"semorder\":13},{\"null\":57,\"credits\":13,\"gpa\":3.361871,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":8,\"cumcredits\":29,\"cumgpa\":3.288672,\"semorder\":14},{\"null\":58,\"credits\":18,\"gpa\":3.299633,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":8,\"cumcredits\":47,\"cumgpa\":3.29287,\"semorder\":15},{\"null\":59,\"credits\":16,\"gpa\":3.538303,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":8,\"cumcredits\":63,\"cumgpa\":3.355202,\"semorder\":16},{\"null\":60,\"credits\":15,\"gpa\":2.07998,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":8,\"cumcredits\":78,\"cumgpa\":3.109967,\"semorder\":17},{\"null\":61,\"credits\":18,\"gpa\":3.500842,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":8,\"cumcredits\":96,\"cumgpa\":3.183256,\"semorder\":18},{\"null\":62,\"credits\":18,\"gpa\":3.945564,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":8,\"cumcredits\":114,\"cumgpa\":3.303621,\"semorder\":19},{\"null\":63,\"credits\":17,\"gpa\":3.709812,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":8,\"cumcredits\":131,\"cumgpa\":3.356332,\"semorder\":20},{\"null\":64,\"credits\":14,\"gpa\":2.222926,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":9,\"cumcredits\":14,\"cumgpa\":2.222926,\"semorder\":13},{\"null\":65,\"credits\":17,\"gpa\":3.829217,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":9,\"cumcredits\":31,\"cumgpa\":3.103795,\"semorder\":14},{\"null\":66,\"credits\":13,\"gpa\":2.937381,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":9,\"cumcredits\":44,\"cumgpa\":3.054627,\"semorder\":15},{\"null\":67,\"credits\":15,\"gpa\":3.101921,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":9,\"cumcredits\":59,\"cumgpa\":3.066651,\"semorder\":16},{\"null\":68,\"credits\":12,\"gpa\":3.004347,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":9,\"cumcredits\":71,\"cumgpa\":3.056121,\"semorder\":17},{\"null\":69,\"credits\":14,\"gpa\":3.39102,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":9,\"cumcredits\":85,\"cumgpa\":3.11128,\"semorder\":18},{\"null\":70,\"credits\":14,\"gpa\":3.018215,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":9,\"cumcredits\":99,\"cumgpa\":3.09812,\"semorder\":19},{\"null\":71,\"credits\":15,\"gpa\":2.032442,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":9,\"cumcredits\":114,\"cumgpa\":2.957899,\"semorder\":20},{\"null\":72,\"credits\":13,\"gpa\":2.620515,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":10,\"cumcredits\":13,\"cumgpa\":2.620515,\"semorder\":13},{\"null\":73,\"credits\":16,\"gpa\":3.246491,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":10,\"cumcredits\":29,\"cumgpa\":2.965881,\"semorder\":14},{\"null\":74,\"credits\":14,\"gpa\":2.627421,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":10,\"cumcredits\":43,\"cumgpa\":2.855685,\"semorder\":15},{\"null\":75,\"credits\":18,\"gpa\":2.136314,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":10,\"cumcredits\":61,\"cumgpa\":2.643411,\"semorder\":16},{\"null\":76,\"credits\":17,\"gpa\":2.861393,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":10,\"cumcredits\":78,\"cumgpa\":2.69092,\"semorder\":17},{\"null\":77,\"credits\":17,\"gpa\":3.043401,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":10,\"cumcredits\":95,\"cumgpa\":2.753996,\"semorder\":18},{\"null\":78,\"credits\":17,\"gpa\":3.336202,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":10,\"cumcredits\":112,\"cumgpa\":2.842366,\"semorder\":19},{\"null\":79,\"credits\":18,\"gpa\":2.400975,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":10,\"cumcredits\":130,\"cumgpa\":2.781251,\"semorder\":20},{\"null\":80,\"credits\":17,\"gpa\":2.664177,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":11,\"cumcredits\":17,\"cumgpa\":2.664177,\"semorder\":13},{\"null\":81,\"credits\":12,\"gpa\":2.915876,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":11,\"cumcredits\":29,\"cumgpa\":2.768328,\"semorder\":14},{\"null\":82,\"credits\":18,\"gpa\":2.52801,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":11,\"cumcredits\":47,\"cumgpa\":2.676291,\"semorder\":15},{\"null\":83,\"credits\":18,\"gpa\":3.150819,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":11,\"cumcredits\":65,\"cumgpa\":2.807699,\"semorder\":16},{\"null\":84,\"credits\":13,\"gpa\":2.077329,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":11,\"cumcredits\":78,\"cumgpa\":2.685971,\"semorder\":17},{\"null\":85,\"credits\":14,\"gpa\":3.716005,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":11,\"cumcredits\":92,\"cumgpa\":2.842715,\"semorder\":18},{\"null\":86,\"credits\":12,\"gpa\":3.498751,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":11,\"cumcredits\":104,\"cumgpa\":2.918412,\"semorder\":19},{\"null\":87,\"credits\":17,\"gpa\":2.305475,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":11,\"cumcredits\":121,\"cumgpa\":2.832297,\"semorder\":20},{\"null\":88,\"credits\":14,\"gpa\":2.219078,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":12,\"cumcredits\":14,\"cumgpa\":2.219078,\"semorder\":13},{\"null\":89,\"credits\":16,\"gpa\":2.619026,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":12,\"cumcredits\":30,\"cumgpa\":2.432383,\"semorder\":14},{\"null\":90,\"credits\":18,\"gpa\":3.500225,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":12,\"cumcredits\":48,\"cumgpa\":2.832824,\"semorder\":15},{\"null\":91,\"credits\":14,\"gpa\":2.75685,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":12,\"cumcredits\":62,\"cumgpa\":2.815668,\"semorder\":16},{\"null\":92,\"credits\":17,\"gpa\":2.634187,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":12,\"cumcredits\":79,\"cumgpa\":2.776615,\"semorder\":17},{\"null\":93,\"credits\":12,\"gpa\":2.340961,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":12,\"cumcredits\":91,\"cumgpa\":2.719167,\"semorder\":18},{\"null\":94,\"credits\":14,\"gpa\":2.169421,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":12,\"cumcredits\":105,\"cumgpa\":2.645867,\"semorder\":19},{\"null\":95,\"credits\":17,\"gpa\":3.116521,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":12,\"cumcredits\":122,\"cumgpa\":2.71145,\"semorder\":20},{\"null\":96,\"credits\":18,\"gpa\":2.464738,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":13,\"cumcredits\":18,\"cumgpa\":2.464738,\"semorder\":13},{\"null\":97,\"credits\":16,\"gpa\":3.853071,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":13,\"cumcredits\":34,\"cumgpa\":3.118071,\"semorder\":14},{\"null\":98,\"credits\":17,\"gpa\":3.988096,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":13,\"cumcredits\":51,\"cumgpa\":3.408079,\"semorder\":15},{\"null\":99,\"credits\":16,\"gpa\":3.551157,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":13,\"cumcredits\":67,\"cumgpa\":3.442247,\"semorder\":16},{\"null\":100,\"credits\":18,\"gpa\":3.153869,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":13,\"cumcredits\":85,\"cumgpa\":3.381179,\"semorder\":17},{\"null\":101,\"credits\":17,\"gpa\":2.956457,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":13,\"cumcredits\":102,\"cumgpa\":3.310392,\"semorder\":18},{\"null\":102,\"credits\":14,\"gpa\":2.274976,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":13,\"cumcredits\":116,\"cumgpa\":3.185428,\"semorder\":19},{\"null\":103,\"credits\":13,\"gpa\":3.975786,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":13,\"cumcredits\":129,\"cumgpa\":3.265076,\"semorder\":20},{\"null\":104,\"credits\":16,\"gpa\":2.662644,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":14,\"cumcredits\":16,\"cumgpa\":2.662644,\"semorder\":13},{\"null\":105,\"credits\":14,\"gpa\":2.519406,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":14,\"cumcredits\":30,\"cumgpa\":2.5958,\"semorder\":14},{\"null\":106,\"credits\":12,\"gpa\":2.420504,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":14,\"cumcredits\":42,\"cumgpa\":2.545715,\"semorder\":15},{\"null\":107,\"credits\":12,\"gpa\":2.638932,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":14,\"cumcredits\":54,\"cumgpa\":2.56643,\"semorder\":16},{\"null\":108,\"credits\":17,\"gpa\":2.123532,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":14,\"cumcredits\":71,\"cumgpa\":2.460384,\"semorder\":17},{\"null\":109,\"credits\":15,\"gpa\":3.363737,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":14,\"cumcredits\":86,\"cumgpa\":2.617946,\"semorder\":18},{\"null\":110,\"credits\":15,\"gpa\":2.315493,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":14,\"cumcredits\":101,\"cumgpa\":2.573027,\"semorder\":19},{\"null\":111,\"credits\":18,\"gpa\":2.192757,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":14,\"cumcredits\":119,\"cumgpa\":2.515507,\"semorder\":20},{\"null\":112,\"credits\":15,\"gpa\":2.344284,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":15,\"cumcredits\":15,\"cumgpa\":2.344284,\"semorder\":13},{\"null\":113,\"credits\":16,\"gpa\":2.213452,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":15,\"cumcredits\":31,\"cumgpa\":2.276757,\"semorder\":14},{\"null\":114,\"credits\":16,\"gpa\":3.131995,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":15,\"cumcredits\":47,\"cumgpa\":2.567902,\"semorder\":15},{\"null\":115,\"credits\":18,\"gpa\":3.183565,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":15,\"cumcredits\":65,\"cumgpa\":2.738393,\"semorder\":16},{\"null\":116,\"credits\":12,\"gpa\":3.507281,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":15,\"cumcredits\":77,\"cumgpa\":2.85822,\"semorder\":17},{\"null\":117,\"credits\":15,\"gpa\":2.010083,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":15,\"cumcredits\":92,\"cumgpa\":2.719937,\"semorder\":18},{\"null\":118,\"credits\":13,\"gpa\":3.201134,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":15,\"cumcredits\":105,\"cumgpa\":2.779514,\"semorder\":19},{\"null\":119,\"credits\":12,\"gpa\":2.828075,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":15,\"cumcredits\":117,\"cumgpa\":2.784494,\"semorder\":20},{\"null\":120,\"credits\":17,\"gpa\":2.233428,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":16,\"cumcredits\":17,\"cumgpa\":2.233428,\"semorder\":13},{\"null\":121,\"credits\":12,\"gpa\":2.167532,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":16,\"cumcredits\":29,\"cumgpa\":2.20616,\"semorder\":14},{\"null\":122,\"credits\":17,\"gpa\":2.298006,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":16,\"cumcredits\":46,\"cumgpa\":2.240103,\"semorder\":15},{\"null\":123,\"credits\":17,\"gpa\":2.579019,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":16,\"cumcredits\":63,\"cumgpa\":2.331557,\"semorder\":16},{\"null\":124,\"credits\":12,\"gpa\":3.898172,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":16,\"cumcredits\":75,\"cumgpa\":2.582215,\"semorder\":17},{\"null\":125,\"credits\":18,\"gpa\":2.703916,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":16,\"cumcredits\":93,\"cumgpa\":2.60577,\"semorder\":18},{\"null\":126,\"credits\":12,\"gpa\":2.9535,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":16,\"cumcredits\":105,\"cumgpa\":2.645511,\"semorder\":19},{\"null\":127,\"credits\":17,\"gpa\":2.33115,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":16,\"cumcredits\":122,\"cumgpa\":2.601707,\"semorder\":20},{\"null\":128,\"credits\":15,\"gpa\":3.308571,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":17,\"cumcredits\":15,\"cumgpa\":3.308571,\"semorder\":13},{\"null\":129,\"credits\":15,\"gpa\":2.641142,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":17,\"cumcredits\":30,\"cumgpa\":2.974857,\"semorder\":14},{\"null\":130,\"credits\":12,\"gpa\":2.567398,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":17,\"cumcredits\":42,\"cumgpa\":2.85844,\"semorder\":15},{\"null\":131,\"credits\":17,\"gpa\":2.896388,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":17,\"cumcredits\":59,\"cumgpa\":2.869374,\"semorder\":16},{\"null\":132,\"credits\":15,\"gpa\":2.011266,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":17,\"cumcredits\":74,\"cumgpa\":2.695433,\"semorder\":17},{\"null\":133,\"credits\":13,\"gpa\":2.483199,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":17,\"cumcredits\":87,\"cumgpa\":2.66372,\"semorder\":18},{\"null\":134,\"credits\":13,\"gpa\":3.778985,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":17,\"cumcredits\":100,\"cumgpa\":2.808705,\"semorder\":19},{\"null\":135,\"credits\":13,\"gpa\":3.176639,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":17,\"cumcredits\":113,\"cumgpa\":2.851033,\"semorder\":20},{\"null\":136,\"credits\":17,\"gpa\":3.215513,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":18,\"cumcredits\":17,\"cumgpa\":3.215513,\"semorder\":13},{\"null\":137,\"credits\":14,\"gpa\":3.793567,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":18,\"cumcredits\":31,\"cumgpa\":3.476569,\"semorder\":14},{\"null\":138,\"credits\":17,\"gpa\":3.922082,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":18,\"cumcredits\":48,\"cumgpa\":3.634355,\"semorder\":15},{\"null\":139,\"credits\":18,\"gpa\":3.563885,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":18,\"cumcredits\":66,\"cumgpa\":3.615136,\"semorder\":16},{\"null\":140,\"credits\":16,\"gpa\":3.666226,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":18,\"cumcredits\":82,\"cumgpa\":3.625105,\"semorder\":17},{\"null\":141,\"credits\":16,\"gpa\":3.206859,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":18,\"cumcredits\":98,\"cumgpa\":3.55682,\"semorder\":18},{\"null\":142,\"credits\":15,\"gpa\":3.392896,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":18,\"cumcredits\":113,\"cumgpa\":3.53506,\"semorder\":19},{\"null\":143,\"credits\":15,\"gpa\":3.581762,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":18,\"cumcredits\":128,\"cumgpa\":3.540533,\"semorder\":20},{\"null\":144,\"credits\":15,\"gpa\":2.041031,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":19,\"cumcredits\":15,\"cumgpa\":2.041031,\"semorder\":13},{\"null\":145,\"credits\":14,\"gpa\":3.156315,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":19,\"cumcredits\":29,\"cumgpa\":2.579444,\"semorder\":14},{\"null\":146,\"credits\":12,\"gpa\":3.192812,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":19,\"cumcredits\":41,\"cumgpa\":2.758966,\"semorder\":15},{\"null\":147,\"credits\":14,\"gpa\":2.382413,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":19,\"cumcredits\":55,\"cumgpa\":2.663116,\"semorder\":16},{\"null\":148,\"credits\":16,\"gpa\":2.104483,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":19,\"cumcredits\":71,\"cumgpa\":2.537227,\"semorder\":17},{\"null\":149,\"credits\":13,\"gpa\":3.039252,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":19,\"cumcredits\":84,\"cumgpa\":2.614921,\"semorder\":18},{\"null\":150,\"credits\":12,\"gpa\":2.475738,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":19,\"cumcredits\":96,\"cumgpa\":2.597523,\"semorder\":19},{\"null\":151,\"credits\":15,\"gpa\":2.998279,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":19,\"cumcredits\":111,\"cumgpa\":2.65168,\"semorder\":20},{\"null\":152,\"credits\":18,\"gpa\":3.501074,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":20,\"cumcredits\":18,\"cumgpa\":3.501074,\"semorder\":13},{\"null\":153,\"credits\":16,\"gpa\":3.418947,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":20,\"cumcredits\":34,\"cumgpa\":3.462426,\"semorder\":14},{\"null\":154,\"credits\":18,\"gpa\":2.414334,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":20,\"cumcredits\":52,\"cumgpa\":3.099625,\"semorder\":15},{\"null\":155,\"credits\":15,\"gpa\":2.482762,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":20,\"cumcredits\":67,\"cumgpa\":2.961521,\"semorder\":16},{\"null\":156,\"credits\":14,\"gpa\":3.657767,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":20,\"cumcredits\":81,\"cumgpa\":3.08186,\"semorder\":17},{\"null\":157,\"credits\":16,\"gpa\":2.605151,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":20,\"cumcredits\":97,\"cumgpa\":3.003228,\"semorder\":18},{\"null\":158,\"credits\":18,\"gpa\":2.907991,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":20,\"cumcredits\":115,\"cumgpa\":2.988321,\"semorder\":19},{\"null\":159,\"credits\":17,\"gpa\":2.393747,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":20,\"cumcredits\":132,\"cumgpa\":2.911747,\"semorder\":20},{\"null\":160,\"credits\":17,\"gpa\":3.25443,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":21,\"cumcredits\":17,\"cumgpa\":3.25443,\"semorder\":13},{\"null\":161,\"credits\":16,\"gpa\":2.304713,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":21,\"cumcredits\":33,\"cumgpa\":2.793961,\"semorder\":14},{\"null\":162,\"credits\":14,\"gpa\":3.690392,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":21,\"cumcredits\":47,\"cumgpa\":3.060983,\"semorder\":15},{\"null\":163,\"credits\":13,\"gpa\":2.030248,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":21,\"cumcredits\":60,\"cumgpa\":2.837657,\"semorder\":16},{\"null\":164,\"credits\":14,\"gpa\":3.540999,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":21,\"cumcredits\":74,\"cumgpa\":2.970722,\"semorder\":17},{\"null\":165,\"credits\":16,\"gpa\":3.043614,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":21,\"cumcredits\":90,\"cumgpa\":2.983681,\"semorder\":18},{\"null\":166,\"credits\":12,\"gpa\":3.743834,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":21,\"cumcredits\":102,\"cumgpa\":3.07311,\"semorder\":19},{\"null\":167,\"credits\":12,\"gpa\":3.086025,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":21,\"cumcredits\":114,\"cumgpa\":3.07447,\"semorder\":20},{\"null\":168,\"credits\":18,\"gpa\":2.117297,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":22,\"cumcredits\":18,\"cumgpa\":2.117297,\"semorder\":13},{\"null\":169,\"credits\":16,\"gpa\":2.816157,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":22,\"cumcredits\":34,\"cumgpa\":2.446172,\"semorder\":14},{\"null\":170,\"credits\":12,\"gpa\":3.740611,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":22,\"cumcredits\":46,\"cumgpa\":2.783852,\"semorder\":15},{\"null\":171,\"credits\":14,\"gpa\":2.564632,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":22,\"cumcredits\":60,\"cumgpa\":2.732701,\"semorder\":16},{\"null\":172,\"credits\":12,\"gpa\":3.522869,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":22,\"cumcredits\":72,\"cumgpa\":2.864395,\"semorder\":17},{\"null\":173,\"credits\":18,\"gpa\":2.804299,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":22,\"cumcredits\":90,\"cumgpa\":2.852376,\"semorder\":18},{\"null\":174,\"credits\":15,\"gpa\":3.653729,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":22,\"cumcredits\":105,\"cumgpa\":2.966855,\"semorder\":19},{\"null\":175,\"credits\":15,\"gpa\":2.762778,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":22,\"cumcredits\":120,\"cumgpa\":2.941345,\"semorder\":20},{\"null\":176,\"credits\":15,\"gpa\":3.78891,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":23,\"cumcredits\":15,\"cumgpa\":3.78891,\"semorder\":13},{\"null\":177,\"credits\":17,\"gpa\":2.942795,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":23,\"cumcredits\":32,\"cumgpa\":3.339411,\"semorder\":14},{\"null\":178,\"credits\":18,\"gpa\":2.735441,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":23,\"cumcredits\":50,\"cumgpa\":3.121982,\"semorder\":15},{\"null\":179,\"credits\":13,\"gpa\":2.345866,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":23,\"cumcredits\":63,\"cumgpa\":2.961831,\"semorder\":16},{\"null\":180,\"credits\":15,\"gpa\":3.39025,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":23,\"cumcredits\":78,\"cumgpa\":3.044219,\"semorder\":17},{\"null\":181,\"credits\":17,\"gpa\":3.823959,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":23,\"cumcredits\":95,\"cumgpa\":3.183752,\"semorder\":18},{\"null\":182,\"credits\":17,\"gpa\":3.505668,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":23,\"cumcredits\":112,\"cumgpa\":3.232614,\"semorder\":19},{\"null\":183,\"credits\":18,\"gpa\":2.855415,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":23,\"cumcredits\":130,\"cumgpa\":3.180386,\"semorder\":20},{\"null\":184,\"credits\":12,\"gpa\":3.752572,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":24,\"cumcredits\":12,\"cumgpa\":3.752572,\"semorder\":13},{\"null\":185,\"credits\":18,\"gpa\":3.522546,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":24,\"cumcredits\":30,\"cumgpa\":3.614556,\"semorder\":14},{\"null\":186,\"credits\":15,\"gpa\":3.152196,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":24,\"cumcredits\":45,\"cumgpa\":3.460436,\"semorder\":15},{\"null\":187,\"credits\":17,\"gpa\":2.980248,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":24,\"cumcredits\":62,\"cumgpa\":3.328772,\"semorder\":16},{\"null\":188,\"credits\":12,\"gpa\":3.139992,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":24,\"cumcredits\":74,\"cumgpa\":3.298159,\"semorder\":17},{\"null\":189,\"credits\":17,\"gpa\":3.300582,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":24,\"cumcredits\":91,\"cumgpa\":3.298612,\"semorder\":18},{\"null\":190,\"credits\":12,\"gpa\":2.186134,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":24,\"cumcredits\":103,\"cumgpa\":3.169003,\"semorder\":19},{\"null\":191,\"credits\":13,\"gpa\":2.844689,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":24,\"cumcredits\":116,\"cumgpa\":3.132657,\"semorder\":20},{\"null\":192,\"credits\":16,\"gpa\":2.963991,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":25,\"cumcredits\":16,\"cumgpa\":2.963991,\"semorder\":13},{\"null\":193,\"credits\":12,\"gpa\":2.357577,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":25,\"cumcredits\":28,\"cumgpa\":2.704099,\"semorder\":14},{\"null\":194,\"credits\":14,\"gpa\":3.58008,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":25,\"cumcredits\":42,\"cumgpa\":2.996093,\"semorder\":15},{\"null\":195,\"credits\":17,\"gpa\":2.221723,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":25,\"cumcredits\":59,\"cumgpa\":2.772969,\"semorder\":16},{\"null\":196,\"credits\":12,\"gpa\":3.339119,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":25,\"cumcredits\":71,\"cumgpa\":2.868656,\"semorder\":17},{\"null\":197,\"credits\":16,\"gpa\":3.52166,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":25,\"cumcredits\":87,\"cumgpa\":2.988749,\"semorder\":18},{\"null\":198,\"credits\":18,\"gpa\":2.706279,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":25,\"cumcredits\":105,\"cumgpa\":2.940326,\"semorder\":19},{\"null\":199,\"credits\":18,\"gpa\":3.707619,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":25,\"cumcredits\":123,\"cumgpa\":3.052612,\"semorder\":20},{\"null\":200,\"credits\":16,\"gpa\":3.0538,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":26,\"cumcredits\":16,\"cumgpa\":3.0538,\"semorder\":13},{\"null\":201,\"credits\":16,\"gpa\":2.885082,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":26,\"cumcredits\":32,\"cumgpa\":2.969441,\"semorder\":14},{\"null\":202,\"credits\":13,\"gpa\":3.465149,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":26,\"cumcredits\":45,\"cumgpa\":3.112645,\"semorder\":15},{\"null\":203,\"credits\":17,\"gpa\":2.429325,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":26,\"cumcredits\":62,\"cumgpa\":2.925284,\"semorder\":16},{\"null\":204,\"credits\":18,\"gpa\":3.020304,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":26,\"cumcredits\":80,\"cumgpa\":2.946663,\"semorder\":17},{\"null\":205,\"credits\":13,\"gpa\":2.356466,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":26,\"cumcredits\":93,\"cumgpa\":2.864162,\"semorder\":18},{\"null\":206,\"credits\":14,\"gpa\":2.685002,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":26,\"cumcredits\":107,\"cumgpa\":2.840721,\"semorder\":19},{\"null\":207,\"credits\":16,\"gpa\":2.228137,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":26,\"cumcredits\":123,\"cumgpa\":2.761035,\"semorder\":20},{\"null\":208,\"credits\":16,\"gpa\":3.99972,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":27,\"cumcredits\":16,\"cumgpa\":3.99972,\"semorder\":13},{\"null\":209,\"credits\":14,\"gpa\":2.564704,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":27,\"cumcredits\":30,\"cumgpa\":3.330046,\"semorder\":14},{\"null\":210,\"credits\":17,\"gpa\":2.892188,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":27,\"cumcredits\":47,\"cumgpa\":3.171672,\"semorder\":15},{\"null\":211,\"credits\":16,\"gpa\":2.78184,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":27,\"cumcredits\":63,\"cumgpa\":3.072667,\"semorder\":16},{\"null\":212,\"credits\":16,\"gpa\":3.61684,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":27,\"cumcredits\":79,\"cumgpa\":3.182879,\"semorder\":17},{\"null\":213,\"credits\":17,\"gpa\":2.394315,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":27,\"cumcredits\":96,\"cumgpa\":3.043237,\"semorder\":18},{\"null\":214,\"credits\":15,\"gpa\":3.724927,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":27,\"cumcredits\":111,\"cumgpa\":3.135358,\"semorder\":19},{\"null\":215,\"credits\":14,\"gpa\":2.588353,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":27,\"cumcredits\":125,\"cumgpa\":3.074093,\"semorder\":20},{\"null\":216,\"credits\":15,\"gpa\":3.351762,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":28,\"cumcredits\":15,\"cumgpa\":3.351762,\"semorder\":13},{\"null\":217,\"credits\":15,\"gpa\":3.246795,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":28,\"cumcredits\":30,\"cumgpa\":3.299279,\"semorder\":14},{\"null\":218,\"credits\":13,\"gpa\":3.18507,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":28,\"cumcredits\":43,\"cumgpa\":3.264751,\"semorder\":15},{\"null\":219,\"credits\":15,\"gpa\":3.106387,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":28,\"cumcredits\":58,\"cumgpa\":3.223794,\"semorder\":16},{\"null\":220,\"credits\":16,\"gpa\":2.705353,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":28,\"cumcredits\":74,\"cumgpa\":3.111699,\"semorder\":17},{\"null\":221,\"credits\":15,\"gpa\":2.644712,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":28,\"cumcredits\":89,\"cumgpa\":3.032993,\"semorder\":18},{\"null\":222,\"credits\":18,\"gpa\":3.067591,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":28,\"cumcredits\":107,\"cumgpa\":3.038813,\"semorder\":19},{\"null\":223,\"credits\":16,\"gpa\":2.177495,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":28,\"cumcredits\":123,\"cumgpa\":2.926772,\"semorder\":20},{\"null\":224,\"credits\":16,\"gpa\":3.283523,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":29,\"cumcredits\":16,\"cumgpa\":3.283523,\"semorder\":13},{\"null\":225,\"credits\":14,\"gpa\":3.713645,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":29,\"cumcredits\":30,\"cumgpa\":3.484246,\"semorder\":14},{\"null\":226,\"credits\":14,\"gpa\":3.868214,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":29,\"cumcredits\":44,\"cumgpa\":3.606418,\"semorder\":15},{\"null\":227,\"credits\":13,\"gpa\":3.197901,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":29,\"cumcredits\":57,\"cumgpa\":3.513247,\"semorder\":16},{\"null\":228,\"credits\":17,\"gpa\":3.457326,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":29,\"cumcredits\":74,\"cumgpa\":3.500401,\"semorder\":17},{\"null\":229,\"credits\":18,\"gpa\":2.819933,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":29,\"cumcredits\":92,\"cumgpa\":3.367266,\"semorder\":18},{\"null\":230,\"credits\":13,\"gpa\":3.57411,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":29,\"cumcredits\":105,\"cumgpa\":3.392875,\"semorder\":19},{\"null\":231,\"credits\":13,\"gpa\":2.108164,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":29,\"cumcredits\":118,\"cumgpa\":3.251339,\"semorder\":20},{\"null\":232,\"credits\":17,\"gpa\":2.370236,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":30,\"cumcredits\":17,\"cumgpa\":2.370236,\"semorder\":13},{\"null\":233,\"credits\":15,\"gpa\":3.113721,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":30,\"cumcredits\":32,\"cumgpa\":2.718745,\"semorder\":14},{\"null\":234,\"credits\":17,\"gpa\":2.953668,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":30,\"cumcredits\":49,\"cumgpa\":2.800249,\"semorder\":15},{\"null\":235,\"credits\":16,\"gpa\":3.597622,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":30,\"cumcredits\":65,\"cumgpa\":2.996525,\"semorder\":16},{\"null\":236,\"credits\":14,\"gpa\":2.028046,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":30,\"cumcredits\":79,\"cumgpa\":2.824896,\"semorder\":17},{\"null\":237,\"credits\":13,\"gpa\":3.765596,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":30,\"cumcredits\":92,\"cumgpa\":2.957821,\"semorder\":18},{\"null\":238,\"credits\":17,\"gpa\":2.883755,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":30,\"cumcredits\":109,\"cumgpa\":2.946269,\"semorder\":19},{\"null\":239,\"credits\":15,\"gpa\":3.532662,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":30,\"cumcredits\":124,\"cumgpa\":3.017204,\"semorder\":20},{\"null\":240,\"credits\":14,\"gpa\":3.599371,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":31,\"cumcredits\":14,\"cumgpa\":3.599371,\"semorder\":13},{\"null\":241,\"credits\":12,\"gpa\":2.280029,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":31,\"cumcredits\":26,\"cumgpa\":2.990444,\"semorder\":14},{\"null\":242,\"credits\":15,\"gpa\":2.601362,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":31,\"cumcredits\":41,\"cumgpa\":2.848097,\"semorder\":15},{\"null\":243,\"credits\":18,\"gpa\":3.152725,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":31,\"cumcredits\":59,\"cumgpa\":2.941034,\"semorder\":16},{\"null\":244,\"credits\":12,\"gpa\":3.358292,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":31,\"cumcredits\":71,\"cumgpa\":3.011557,\"semorder\":17},{\"null\":245,\"credits\":15,\"gpa\":2.868379,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":31,\"cumcredits\":86,\"cumgpa\":2.986584,\"semorder\":18},{\"null\":246,\"credits\":13,\"gpa\":2.763704,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":31,\"cumcredits\":99,\"cumgpa\":2.957317,\"semorder\":19},{\"null\":247,\"credits\":15,\"gpa\":2.795024,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":31,\"cumcredits\":114,\"cumgpa\":2.935963,\"semorder\":20},{\"null\":248,\"credits\":18,\"gpa\":3.540857,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":32,\"cumcredits\":18,\"cumgpa\":3.540857,\"semorder\":13},{\"null\":249,\"credits\":14,\"gpa\":2.619641,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":32,\"cumcredits\":32,\"cumgpa\":3.137825,\"semorder\":14},{\"null\":250,\"credits\":13,\"gpa\":3.681297,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":32,\"cumcredits\":45,\"cumgpa\":3.294828,\"semorder\":15},{\"null\":251,\"credits\":16,\"gpa\":2.472277,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":32,\"cumcredits\":61,\"cumgpa\":3.079077,\"semorder\":16},{\"null\":252,\"credits\":15,\"gpa\":3.274451,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":32,\"cumcredits\":76,\"cumgpa\":3.117638,\"semorder\":17},{\"null\":253,\"credits\":17,\"gpa\":3.76593,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":32,\"cumcredits\":93,\"cumgpa\":3.236143,\"semorder\":18},{\"null\":254,\"credits\":12,\"gpa\":2.229049,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":32,\"cumcredits\":105,\"cumgpa\":3.121046,\"semorder\":19},{\"null\":255,\"credits\":16,\"gpa\":3.480051,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":32,\"cumcredits\":121,\"cumgpa\":3.168518,\"semorder\":20},{\"null\":256,\"credits\":17,\"gpa\":2.832566,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":33,\"cumcredits\":17,\"cumgpa\":2.832566,\"semorder\":13},{\"null\":257,\"credits\":15,\"gpa\":2.726147,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":33,\"cumcredits\":32,\"cumgpa\":2.782682,\"semorder\":14},{\"null\":258,\"credits\":16,\"gpa\":3.896235,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":33,\"cumcredits\":48,\"cumgpa\":3.153866,\"semorder\":15},{\"null\":259,\"credits\":18,\"gpa\":2.940513,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":33,\"cumcredits\":66,\"cumgpa\":3.095679,\"semorder\":16},{\"null\":260,\"credits\":13,\"gpa\":3.671607,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":33,\"cumcredits\":79,\"cumgpa\":3.190452,\"semorder\":17},{\"null\":261,\"credits\":17,\"gpa\":2.242225,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":33,\"cumcredits\":96,\"cumgpa\":3.022537,\"semorder\":18},{\"null\":262,\"credits\":17,\"gpa\":3.275462,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":33,\"cumcredits\":113,\"cumgpa\":3.060588,\"semorder\":19},{\"null\":263,\"credits\":16,\"gpa\":3.019487,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":33,\"cumcredits\":129,\"cumgpa\":3.05549,\"semorder\":20},{\"null\":264,\"credits\":18,\"gpa\":2.029483,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":34,\"cumcredits\":18,\"cumgpa\":2.029483,\"semorder\":13},{\"null\":265,\"credits\":13,\"gpa\":3.293874,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":34,\"cumcredits\":31,\"cumgpa\":2.559711,\"semorder\":14},{\"null\":266,\"credits\":17,\"gpa\":3.514956,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":34,\"cumcredits\":48,\"cumgpa\":2.898027,\"semorder\":15},{\"null\":267,\"credits\":17,\"gpa\":3.946259,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":34,\"cumcredits\":65,\"cumgpa\":3.17218,\"semorder\":16},{\"null\":268,\"credits\":18,\"gpa\":3.458008,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":34,\"cumcredits\":83,\"cumgpa\":3.234167,\"semorder\":17},{\"null\":269,\"credits\":15,\"gpa\":3.853584,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":34,\"cumcredits\":98,\"cumgpa\":3.328975,\"semorder\":18},{\"null\":270,\"credits\":14,\"gpa\":3.926756,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":34,\"cumcredits\":112,\"cumgpa\":3.403698,\"semorder\":19},{\"null\":271,\"credits\":14,\"gpa\":2.14852,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":34,\"cumcredits\":126,\"cumgpa\":3.264234,\"semorder\":20},{\"null\":272,\"credits\":12,\"gpa\":2.596714,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":35,\"cumcredits\":12,\"cumgpa\":2.596714,\"semorder\":13},{\"null\":273,\"credits\":17,\"gpa\":3.684326,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":35,\"cumcredits\":29,\"cumgpa\":3.23428,\"semorder\":14},{\"null\":274,\"credits\":14,\"gpa\":2.9871,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":35,\"cumcredits\":43,\"cumgpa\":3.153803,\"semorder\":15},{\"null\":275,\"credits\":18,\"gpa\":3.46494,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":35,\"cumcredits\":61,\"cumgpa\":3.245614,\"semorder\":16},{\"null\":276,\"credits\":17,\"gpa\":2.705667,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":35,\"cumcredits\":78,\"cumgpa\":3.127933,\"semorder\":17},{\"null\":277,\"credits\":13,\"gpa\":2.205771,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":35,\"cumcredits\":91,\"cumgpa\":2.996196,\"semorder\":18},{\"null\":278,\"credits\":15,\"gpa\":3.324397,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":35,\"cumcredits\":106,\"cumgpa\":3.042639,\"semorder\":19},{\"null\":279,\"credits\":15,\"gpa\":2.843382,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":35,\"cumcredits\":121,\"cumgpa\":3.017938,\"semorder\":20},{\"null\":280,\"credits\":13,\"gpa\":2.423531,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":36,\"cumcredits\":13,\"cumgpa\":2.423531,\"semorder\":13},{\"null\":281,\"credits\":13,\"gpa\":3.876437,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":36,\"cumcredits\":26,\"cumgpa\":3.149984,\"semorder\":14},{\"null\":282,\"credits\":14,\"gpa\":3.486189,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":36,\"cumcredits\":40,\"cumgpa\":3.267656,\"semorder\":15},{\"null\":283,\"credits\":15,\"gpa\":3.093648,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":36,\"cumcredits\":55,\"cumgpa\":3.220199,\"semorder\":16},{\"null\":284,\"credits\":18,\"gpa\":3.125881,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":36,\"cumcredits\":73,\"cumgpa\":3.196943,\"semorder\":17},{\"null\":285,\"credits\":12,\"gpa\":3.476699,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":36,\"cumcredits\":85,\"cumgpa\":3.236438,\"semorder\":18},{\"null\":286,\"credits\":16,\"gpa\":3.284478,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":36,\"cumcredits\":101,\"cumgpa\":3.244048,\"semorder\":19},{\"null\":287,\"credits\":15,\"gpa\":2.619855,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":36,\"cumcredits\":116,\"cumgpa\":3.163333,\"semorder\":20},{\"null\":288,\"credits\":18,\"gpa\":3.105252,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":37,\"cumcredits\":18,\"cumgpa\":3.105252,\"semorder\":13},{\"null\":289,\"credits\":14,\"gpa\":2.046052,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":37,\"cumcredits\":32,\"cumgpa\":2.641852,\"semorder\":14},{\"null\":290,\"credits\":13,\"gpa\":2.271155,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":37,\"cumcredits\":45,\"cumgpa\":2.534761,\"semorder\":15},{\"null\":291,\"credits\":16,\"gpa\":3.598407,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":37,\"cumcredits\":61,\"cumgpa\":2.81375,\"semorder\":16},{\"null\":292,\"credits\":13,\"gpa\":2.574577,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":37,\"cumcredits\":74,\"cumgpa\":2.771734,\"semorder\":17},{\"null\":293,\"credits\":18,\"gpa\":2.035797,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":37,\"cumcredits\":92,\"cumgpa\":2.627746,\"semorder\":18},{\"null\":294,\"credits\":12,\"gpa\":2.324123,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":37,\"cumcredits\":104,\"cumgpa\":2.592713,\"semorder\":19},{\"null\":295,\"credits\":13,\"gpa\":3.329802,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":37,\"cumcredits\":117,\"cumgpa\":2.674611,\"semorder\":20},{\"null\":296,\"credits\":15,\"gpa\":3.090761,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":38,\"cumcredits\":15,\"cumgpa\":3.090761,\"semorder\":13},{\"null\":297,\"credits\":13,\"gpa\":3.358174,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":38,\"cumcredits\":28,\"cumgpa\":3.214917,\"semorder\":14},{\"null\":298,\"credits\":12,\"gpa\":2.197086,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":38,\"cumcredits\":40,\"cumgpa\":2.909568,\"semorder\":15},{\"null\":299,\"credits\":13,\"gpa\":2.608635,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":38,\"cumcredits\":53,\"cumgpa\":2.835754,\"semorder\":16},{\"null\":300,\"credits\":14,\"gpa\":2.403579,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":38,\"cumcredits\":67,\"cumgpa\":2.745449,\"semorder\":17},{\"null\":301,\"credits\":12,\"gpa\":3.250375,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":38,\"cumcredits\":79,\"cumgpa\":2.822146,\"semorder\":18},{\"null\":302,\"credits\":14,\"gpa\":3.678959,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":38,\"cumcredits\":93,\"cumgpa\":2.951129,\"semorder\":19},{\"null\":303,\"credits\":12,\"gpa\":3.518419,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":38,\"cumcredits\":105,\"cumgpa\":3.015962,\"semorder\":20},{\"null\":304,\"credits\":13,\"gpa\":2.596218,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":39,\"cumcredits\":13,\"cumgpa\":2.596218,\"semorder\":13},{\"null\":305,\"credits\":16,\"gpa\":2.740172,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":39,\"cumcredits\":29,\"cumgpa\":2.675641,\"semorder\":14},{\"null\":306,\"credits\":17,\"gpa\":3.610893,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":39,\"cumcredits\":46,\"cumgpa\":3.021278,\"semorder\":15},{\"null\":307,\"credits\":18,\"gpa\":3.061732,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":39,\"cumcredits\":64,\"cumgpa\":3.032655,\"semorder\":16},{\"null\":308,\"credits\":12,\"gpa\":2.273754,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":39,\"cumcredits\":76,\"cumgpa\":2.912829,\"semorder\":17},{\"null\":309,\"credits\":16,\"gpa\":2.022756,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":39,\"cumcredits\":92,\"cumgpa\":2.758033,\"semorder\":18},{\"null\":310,\"credits\":17,\"gpa\":3.242946,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":39,\"cumcredits\":109,\"cumgpa\":2.833662,\"semorder\":19},{\"null\":311,\"credits\":15,\"gpa\":3.633335,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":39,\"cumcredits\":124,\"cumgpa\":2.930397,\"semorder\":20},{\"null\":312,\"credits\":14,\"gpa\":3.119989,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":40,\"cumcredits\":14,\"cumgpa\":3.119989,\"semorder\":13},{\"null\":313,\"credits\":16,\"gpa\":2.847213,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":40,\"cumcredits\":30,\"cumgpa\":2.974508,\"semorder\":14},{\"null\":314,\"credits\":13,\"gpa\":3.794909,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":40,\"cumcredits\":43,\"cumgpa\":3.222536,\"semorder\":15},{\"null\":315,\"credits\":18,\"gpa\":3.97813,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":40,\"cumcredits\":61,\"cumgpa\":3.445498,\"semorder\":16},{\"null\":316,\"credits\":12,\"gpa\":3.899482,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":40,\"cumcredits\":73,\"cumgpa\":3.520126,\"semorder\":17},{\"null\":317,\"credits\":17,\"gpa\":3.177081,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":40,\"cumcredits\":90,\"cumgpa\":3.455328,\"semorder\":18},{\"null\":318,\"credits\":12,\"gpa\":2.595388,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":40,\"cumcredits\":102,\"cumgpa\":3.354159,\"semorder\":19},{\"null\":319,\"credits\":17,\"gpa\":3.525627,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":40,\"cumcredits\":119,\"cumgpa\":3.378654,\"semorder\":20},{\"null\":320,\"credits\":13,\"gpa\":3.83562,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":41,\"cumcredits\":13,\"cumgpa\":3.83562,\"semorder\":13},{\"null\":321,\"credits\":16,\"gpa\":2.184689,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":41,\"cumcredits\":29,\"cumgpa\":2.924762,\"semorder\":14},{\"null\":322,\"credits\":18,\"gpa\":2.735285,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":41,\"cumcredits\":47,\"cumgpa\":2.852196,\"semorder\":15},{\"null\":323,\"credits\":12,\"gpa\":3.952532,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":41,\"cumcredits\":59,\"cumgpa\":3.075993,\"semorder\":16},{\"null\":324,\"credits\":18,\"gpa\":2.28734,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":41,\"cumcredits\":77,\"cumgpa\":2.891633,\"semorder\":17},{\"null\":325,\"credits\":18,\"gpa\":3.413432,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":41,\"cumcredits\":95,\"cumgpa\":2.9905,\"semorder\":18},{\"null\":326,\"credits\":16,\"gpa\":3.659634,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":41,\"cumcredits\":111,\"cumgpa\":3.086952,\"semorder\":19},{\"null\":327,\"credits\":18,\"gpa\":3.688601,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":41,\"cumcredits\":129,\"cumgpa\":3.170903,\"semorder\":20},{\"null\":328,\"credits\":15,\"gpa\":2.906605,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":42,\"cumcredits\":15,\"cumgpa\":2.906605,\"semorder\":13},{\"null\":329,\"credits\":17,\"gpa\":3.023581,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":42,\"cumcredits\":32,\"cumgpa\":2.968749,\"semorder\":14},{\"null\":330,\"credits\":16,\"gpa\":3.65076,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":42,\"cumcredits\":48,\"cumgpa\":3.196086,\"semorder\":15},{\"null\":331,\"credits\":18,\"gpa\":3.490775,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":42,\"cumcredits\":66,\"cumgpa\":3.276455,\"semorder\":16},{\"null\":332,\"credits\":18,\"gpa\":3.872618,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":42,\"cumcredits\":84,\"cumgpa\":3.404205,\"semorder\":17},{\"null\":333,\"credits\":17,\"gpa\":3.175489,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":42,\"cumcredits\":101,\"cumgpa\":3.365708,\"semorder\":18},{\"null\":334,\"credits\":14,\"gpa\":2.763631,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":42,\"cumcredits\":115,\"cumgpa\":3.292412,\"semorder\":19},{\"null\":335,\"credits\":15,\"gpa\":3.866482,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":42,\"cumcredits\":130,\"cumgpa\":3.35865,\"semorder\":20},{\"null\":336,\"credits\":13,\"gpa\":2.801853,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":43,\"cumcredits\":13,\"cumgpa\":2.801853,\"semorder\":13},{\"null\":337,\"credits\":12,\"gpa\":2.413781,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":43,\"cumcredits\":25,\"cumgpa\":2.615578,\"semorder\":14},{\"null\":338,\"credits\":16,\"gpa\":2.036895,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":43,\"cumcredits\":41,\"cumgpa\":2.389751,\"semorder\":15},{\"null\":339,\"credits\":13,\"gpa\":2.205738,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":43,\"cumcredits\":54,\"cumgpa\":2.345451,\"semorder\":16},{\"null\":340,\"credits\":13,\"gpa\":2.9248,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":43,\"cumcredits\":67,\"cumgpa\":2.457862,\"semorder\":17},{\"null\":341,\"credits\":15,\"gpa\":3.432397,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":43,\"cumcredits\":82,\"cumgpa\":2.636131,\"semorder\":18},{\"null\":342,\"credits\":16,\"gpa\":3.328666,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":43,\"cumcredits\":98,\"cumgpa\":2.749198,\"semorder\":19},{\"null\":343,\"credits\":12,\"gpa\":2.321027,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":43,\"cumcredits\":110,\"cumgpa\":2.702488,\"semorder\":20},{\"null\":344,\"credits\":15,\"gpa\":2.615456,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":44,\"cumcredits\":15,\"cumgpa\":2.615456,\"semorder\":13},{\"null\":345,\"credits\":12,\"gpa\":2.488431,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":44,\"cumcredits\":27,\"cumgpa\":2.559001,\"semorder\":14},{\"null\":346,\"credits\":12,\"gpa\":3.104786,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":44,\"cumcredits\":39,\"cumgpa\":2.726935,\"semorder\":15},{\"null\":347,\"credits\":14,\"gpa\":2.864616,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":44,\"cumcredits\":53,\"cumgpa\":2.763303,\"semorder\":16},{\"null\":348,\"credits\":16,\"gpa\":2.139884,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":44,\"cumcredits\":69,\"cumgpa\":2.618742,\"semorder\":17},{\"null\":349,\"credits\":16,\"gpa\":3.597241,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":44,\"cumcredits\":85,\"cumgpa\":2.80293,\"semorder\":18},{\"null\":350,\"credits\":17,\"gpa\":2.257687,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":44,\"cumcredits\":102,\"cumgpa\":2.712057,\"semorder\":19},{\"null\":351,\"credits\":17,\"gpa\":3.166259,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":44,\"cumcredits\":119,\"cumgpa\":2.776943,\"semorder\":20},{\"null\":352,\"credits\":18,\"gpa\":3.11546,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":45,\"cumcredits\":18,\"cumgpa\":3.11546,\"semorder\":13},{\"null\":353,\"credits\":12,\"gpa\":2.849547,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":45,\"cumcredits\":30,\"cumgpa\":3.009095,\"semorder\":14},{\"null\":354,\"credits\":18,\"gpa\":2.964768,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":45,\"cumcredits\":48,\"cumgpa\":2.992472,\"semorder\":15},{\"null\":355,\"credits\":17,\"gpa\":2.4165,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":45,\"cumcredits\":65,\"cumgpa\":2.841833,\"semorder\":16},{\"null\":356,\"credits\":16,\"gpa\":2.460356,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":45,\"cumcredits\":81,\"cumgpa\":2.76648,\"semorder\":17},{\"null\":357,\"credits\":13,\"gpa\":3.253964,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":45,\"cumcredits\":94,\"cumgpa\":2.833898,\"semorder\":18},{\"null\":358,\"credits\":14,\"gpa\":3.024364,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":45,\"cumcredits\":108,\"cumgpa\":2.858588,\"semorder\":19},{\"null\":359,\"credits\":17,\"gpa\":2.281046,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":45,\"cumcredits\":125,\"cumgpa\":2.780042,\"semorder\":20},{\"null\":360,\"credits\":16,\"gpa\":3.030635,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":46,\"cumcredits\":16,\"cumgpa\":3.030635,\"semorder\":13},{\"null\":361,\"credits\":16,\"gpa\":2.271469,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":46,\"cumcredits\":32,\"cumgpa\":2.651052,\"semorder\":14},{\"null\":362,\"credits\":12,\"gpa\":3.210478,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":46,\"cumcredits\":44,\"cumgpa\":2.803623,\"semorder\":15},{\"null\":363,\"credits\":16,\"gpa\":3.715532,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":46,\"cumcredits\":60,\"cumgpa\":3.046799,\"semorder\":16},{\"null\":364,\"credits\":16,\"gpa\":2.153591,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":46,\"cumcredits\":76,\"cumgpa\":2.858755,\"semorder\":17},{\"null\":365,\"credits\":18,\"gpa\":3.506936,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":46,\"cumcredits\":94,\"cumgpa\":2.982875,\"semorder\":18},{\"null\":366,\"credits\":16,\"gpa\":2.215596,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":46,\"cumcredits\":110,\"cumgpa\":2.871271,\"semorder\":19},{\"null\":367,\"credits\":13,\"gpa\":2.485247,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":46,\"cumcredits\":123,\"cumgpa\":2.830471,\"semorder\":20},{\"null\":368,\"credits\":17,\"gpa\":2.593732,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":47,\"cumcredits\":17,\"cumgpa\":2.593732,\"semorder\":13},{\"null\":369,\"credits\":17,\"gpa\":3.462307,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":47,\"cumcredits\":34,\"cumgpa\":3.028019,\"semorder\":14},{\"null\":370,\"credits\":18,\"gpa\":3.053344,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":47,\"cumcredits\":52,\"cumgpa\":3.036785,\"semorder\":15},{\"null\":371,\"credits\":12,\"gpa\":3.903576,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":47,\"cumcredits\":64,\"cumgpa\":3.199309,\"semorder\":16},{\"null\":372,\"credits\":16,\"gpa\":3.435514,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":47,\"cumcredits\":80,\"cumgpa\":3.24655,\"semorder\":17},{\"null\":373,\"credits\":15,\"gpa\":2.857784,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":47,\"cumcredits\":95,\"cumgpa\":3.185166,\"semorder\":18},{\"null\":374,\"credits\":16,\"gpa\":3.771485,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":47,\"cumcredits\":111,\"cumgpa\":3.26968,\"semorder\":19},{\"null\":375,\"credits\":15,\"gpa\":3.485355,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":47,\"cumcredits\":126,\"cumgpa\":3.295356,\"semorder\":20},{\"null\":376,\"credits\":17,\"gpa\":3.624672,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":48,\"cumcredits\":17,\"cumgpa\":3.624672,\"semorder\":13},{\"null\":377,\"credits\":13,\"gpa\":3.339806,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":48,\"cumcredits\":30,\"cumgpa\":3.50123,\"semorder\":14},{\"null\":378,\"credits\":17,\"gpa\":2.263285,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":48,\"cumcredits\":47,\"cumgpa\":3.053463,\"semorder\":15},{\"null\":379,\"credits\":15,\"gpa\":3.818467,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":48,\"cumcredits\":62,\"cumgpa\":3.238544,\"semorder\":16},{\"null\":380,\"credits\":16,\"gpa\":3.616507,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":48,\"cumcredits\":78,\"cumgpa\":3.316075,\"semorder\":17},{\"null\":381,\"credits\":12,\"gpa\":2.290329,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":48,\"cumcredits\":90,\"cumgpa\":3.179309,\"semorder\":18},{\"null\":382,\"credits\":18,\"gpa\":2.511705,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":48,\"cumcredits\":108,\"cumgpa\":3.068042,\"semorder\":19},{\"null\":383,\"credits\":13,\"gpa\":3.977165,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":48,\"cumcredits\":121,\"cumgpa\":3.165716,\"semorder\":20},{\"null\":384,\"credits\":13,\"gpa\":3.612395,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":49,\"cumcredits\":13,\"cumgpa\":3.612395,\"semorder\":13},{\"null\":385,\"credits\":12,\"gpa\":2.122812,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":49,\"cumcredits\":25,\"cumgpa\":2.897395,\"semorder\":14},{\"null\":386,\"credits\":12,\"gpa\":2.181694,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":49,\"cumcredits\":37,\"cumgpa\":2.665276,\"semorder\":15},{\"null\":387,\"credits\":13,\"gpa\":2.149403,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":49,\"cumcredits\":50,\"cumgpa\":2.531149,\"semorder\":16},{\"null\":388,\"credits\":15,\"gpa\":3.504718,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":49,\"cumcredits\":65,\"cumgpa\":2.755819,\"semorder\":17},{\"null\":389,\"credits\":17,\"gpa\":3.306599,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":49,\"cumcredits\":82,\"cumgpa\":2.870005,\"semorder\":18},{\"null\":390,\"credits\":13,\"gpa\":2.424706,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":49,\"cumcredits\":95,\"cumgpa\":2.809069,\"semorder\":19},{\"null\":391,\"credits\":17,\"gpa\":2.09365,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":49,\"cumcredits\":112,\"cumgpa\":2.700479,\"semorder\":20},{\"null\":392,\"credits\":12,\"gpa\":2.227567,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":50,\"cumcredits\":12,\"cumgpa\":2.227567,\"semorder\":13},{\"null\":393,\"credits\":14,\"gpa\":3.082951,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":50,\"cumcredits\":26,\"cumgpa\":2.688158,\"semorder\":14},{\"null\":394,\"credits\":12,\"gpa\":2.958396,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":50,\"cumcredits\":38,\"cumgpa\":2.773497,\"semorder\":15},{\"null\":395,\"credits\":14,\"gpa\":3.041113,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":50,\"cumcredits\":52,\"cumgpa\":2.845547,\"semorder\":16},{\"null\":396,\"credits\":15,\"gpa\":3.396702,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":50,\"cumcredits\":67,\"cumgpa\":2.96894,\"semorder\":17},{\"null\":397,\"credits\":16,\"gpa\":3.667104,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":50,\"cumcredits\":83,\"cumgpa\":3.103526,\"semorder\":18},{\"null\":398,\"credits\":17,\"gpa\":2.367259,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":50,\"cumcredits\":100,\"cumgpa\":2.978361,\"semorder\":19},{\"null\":399,\"credits\":17,\"gpa\":3.855905,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":50,\"cumcredits\":117,\"cumgpa\":3.105867,\"semorder\":20},{\"null\":400,\"credits\":18,\"gpa\":3.903467,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":51,\"cumcredits\":18,\"cumgpa\":3.903467,\"semorder\":13},{\"null\":401,\"credits\":16,\"gpa\":2.979954,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":51,\"cumcredits\":34,\"cumgpa\":3.468873,\"semorder\":14},{\"null\":402,\"credits\":17,\"gpa\":3.977924,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":51,\"cumcredits\":51,\"cumgpa\":3.638557,\"semorder\":15},{\"null\":403,\"credits\":16,\"gpa\":2.895758,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":51,\"cumcredits\":67,\"cumgpa\":3.461172,\"semorder\":16},{\"null\":404,\"credits\":18,\"gpa\":2.813675,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":51,\"cumcredits\":85,\"cumgpa\":3.324055,\"semorder\":17},{\"null\":405,\"credits\":12,\"gpa\":2.386686,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":51,\"cumcredits\":97,\"cumgpa\":3.208092,\"semorder\":18},{\"null\":406,\"credits\":15,\"gpa\":3.286885,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":51,\"cumcredits\":112,\"cumgpa\":3.218644,\"semorder\":19},{\"null\":407,\"credits\":14,\"gpa\":3.684605,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":51,\"cumcredits\":126,\"cumgpa\":3.270418,\"semorder\":20},{\"null\":408,\"credits\":18,\"gpa\":2.407671,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":52,\"cumcredits\":18,\"cumgpa\":2.407671,\"semorder\":13},{\"null\":409,\"credits\":15,\"gpa\":2.666568,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":52,\"cumcredits\":33,\"cumgpa\":2.525351,\"semorder\":14},{\"null\":410,\"credits\":15,\"gpa\":3.610343,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":52,\"cumcredits\":48,\"cumgpa\":2.864411,\"semorder\":15},{\"null\":411,\"credits\":13,\"gpa\":3.972472,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":52,\"cumcredits\":61,\"cumgpa\":3.100555,\"semorder\":16},{\"null\":412,\"credits\":18,\"gpa\":2.808549,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":52,\"cumcredits\":79,\"cumgpa\":3.034022,\"semorder\":17},{\"null\":413,\"credits\":15,\"gpa\":2.941335,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":52,\"cumcredits\":94,\"cumgpa\":3.019232,\"semorder\":18},{\"null\":414,\"credits\":16,\"gpa\":2.170451,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":52,\"cumcredits\":110,\"cumgpa\":2.895773,\"semorder\":19},{\"null\":415,\"credits\":16,\"gpa\":3.535655,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":52,\"cumcredits\":126,\"cumgpa\":2.977028,\"semorder\":20},{\"null\":416,\"credits\":14,\"gpa\":2.767224,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":53,\"cumcredits\":14,\"cumgpa\":2.767224,\"semorder\":13},{\"null\":417,\"credits\":17,\"gpa\":3.79516,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":53,\"cumcredits\":31,\"cumgpa\":3.330931,\"semorder\":14},{\"null\":418,\"credits\":13,\"gpa\":2.928886,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":53,\"cumcredits\":44,\"cumgpa\":3.212145,\"semorder\":15},{\"null\":419,\"credits\":14,\"gpa\":2.537838,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":53,\"cumcredits\":58,\"cumgpa\":3.049381,\"semorder\":16},{\"null\":420,\"credits\":12,\"gpa\":2.37091,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":53,\"cumcredits\":70,\"cumgpa\":2.933072,\"semorder\":17},{\"null\":421,\"credits\":12,\"gpa\":3.858403,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":53,\"cumcredits\":82,\"cumgpa\":3.068486,\"semorder\":18},{\"null\":422,\"credits\":16,\"gpa\":3.408854,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":53,\"cumcredits\":98,\"cumgpa\":3.124056,\"semorder\":19},{\"null\":423,\"credits\":18,\"gpa\":3.459529,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":53,\"cumcredits\":116,\"cumgpa\":3.176112,\"semorder\":20},{\"null\":424,\"credits\":18,\"gpa\":3.057349,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":54,\"cumcredits\":18,\"cumgpa\":3.057349,\"semorder\":13},{\"null\":425,\"credits\":16,\"gpa\":2.3847,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":54,\"cumcredits\":34,\"cumgpa\":2.740808,\"semorder\":14},{\"null\":426,\"credits\":12,\"gpa\":3.400207,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":54,\"cumcredits\":46,\"cumgpa\":2.912825,\"semorder\":15},{\"null\":427,\"credits\":17,\"gpa\":3.824139,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":54,\"cumcredits\":63,\"cumgpa\":3.158735,\"semorder\":16},{\"null\":428,\"credits\":12,\"gpa\":2.226836,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":54,\"cumcredits\":75,\"cumgpa\":3.009631,\"semorder\":17},{\"null\":429,\"credits\":13,\"gpa\":3.447785,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":54,\"cumcredits\":88,\"cumgpa\":3.074359,\"semorder\":18},{\"null\":430,\"credits\":13,\"gpa\":2.743507,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":54,\"cumcredits\":101,\"cumgpa\":3.031774,\"semorder\":19},{\"null\":431,\"credits\":14,\"gpa\":3.643885,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":54,\"cumcredits\":115,\"cumgpa\":3.106292,\"semorder\":20},{\"null\":432,\"credits\":17,\"gpa\":2.951717,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":55,\"cumcredits\":17,\"cumgpa\":2.951717,\"semorder\":13},{\"null\":433,\"credits\":13,\"gpa\":3.424798,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":55,\"cumcredits\":30,\"cumgpa\":3.156719,\"semorder\":14},{\"null\":434,\"credits\":12,\"gpa\":2.067194,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":55,\"cumcredits\":42,\"cumgpa\":2.845426,\"semorder\":15},{\"null\":435,\"credits\":18,\"gpa\":3.731983,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":55,\"cumcredits\":60,\"cumgpa\":3.111393,\"semorder\":16},{\"null\":436,\"credits\":12,\"gpa\":3.096032,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":55,\"cumcredits\":72,\"cumgpa\":3.108833,\"semorder\":17},{\"null\":437,\"credits\":14,\"gpa\":3.846199,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":55,\"cumcredits\":86,\"cumgpa\":3.228869,\"semorder\":18},{\"null\":438,\"credits\":16,\"gpa\":2.795376,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":55,\"cumcredits\":102,\"cumgpa\":3.16087,\"semorder\":19},{\"null\":439,\"credits\":16,\"gpa\":2.928447,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":55,\"cumcredits\":118,\"cumgpa\":3.129355,\"semorder\":20},{\"null\":440,\"credits\":16,\"gpa\":3.764687,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":56,\"cumcredits\":16,\"cumgpa\":3.764687,\"semorder\":13},{\"null\":441,\"credits\":16,\"gpa\":3.549999,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":56,\"cumcredits\":32,\"cumgpa\":3.657343,\"semorder\":14},{\"null\":442,\"credits\":14,\"gpa\":2.164973,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":56,\"cumcredits\":46,\"cumgpa\":3.203143,\"semorder\":15},{\"null\":443,\"credits\":15,\"gpa\":3.594047,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":56,\"cumcredits\":61,\"cumgpa\":3.299267,\"semorder\":16},{\"null\":444,\"credits\":15,\"gpa\":3.235753,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":56,\"cumcredits\":76,\"cumgpa\":3.286732,\"semorder\":17},{\"null\":445,\"credits\":15,\"gpa\":2.635408,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":56,\"cumcredits\":91,\"cumgpa\":3.17937,\"semorder\":18},{\"null\":446,\"credits\":16,\"gpa\":2.944934,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":56,\"cumcredits\":107,\"cumgpa\":3.144315,\"semorder\":19},{\"null\":447,\"credits\":12,\"gpa\":3.85635,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":56,\"cumcredits\":119,\"cumgpa\":3.216116,\"semorder\":20},{\"null\":448,\"credits\":13,\"gpa\":3.313974,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":57,\"cumcredits\":13,\"cumgpa\":3.313974,\"semorder\":13},{\"null\":449,\"credits\":16,\"gpa\":2.744709,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":57,\"cumcredits\":29,\"cumgpa\":2.999896,\"semorder\":14},{\"null\":450,\"credits\":13,\"gpa\":2.974047,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":57,\"cumcredits\":42,\"cumgpa\":2.991895,\"semorder\":15},{\"null\":451,\"credits\":15,\"gpa\":3.012626,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":57,\"cumcredits\":57,\"cumgpa\":2.997351,\"semorder\":16},{\"null\":452,\"credits\":16,\"gpa\":2.634357,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":57,\"cumcredits\":73,\"cumgpa\":2.91779,\"semorder\":17},{\"null\":453,\"credits\":13,\"gpa\":3.110905,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":57,\"cumcredits\":86,\"cumgpa\":2.946982,\"semorder\":18},{\"null\":454,\"credits\":16,\"gpa\":3.3481,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":57,\"cumcredits\":102,\"cumgpa\":3.009903,\"semorder\":19},{\"null\":455,\"credits\":15,\"gpa\":2.945505,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":57,\"cumcredits\":117,\"cumgpa\":3.001647,\"semorder\":20},{\"null\":456,\"credits\":12,\"gpa\":3.663561,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":58,\"cumcredits\":12,\"cumgpa\":3.663561,\"semorder\":13},{\"null\":457,\"credits\":16,\"gpa\":2.372446,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":58,\"cumcredits\":28,\"cumgpa\":2.925781,\"semorder\":14},{\"null\":458,\"credits\":12,\"gpa\":3.785008,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":58,\"cumcredits\":40,\"cumgpa\":3.183549,\"semorder\":15},{\"null\":459,\"credits\":12,\"gpa\":3.349873,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":58,\"cumcredits\":52,\"cumgpa\":3.221932,\"semorder\":16},{\"null\":460,\"credits\":14,\"gpa\":3.842996,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":58,\"cumcredits\":66,\"cumgpa\":3.353672,\"semorder\":17},{\"null\":461,\"credits\":17,\"gpa\":3.872625,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":58,\"cumcredits\":83,\"cumgpa\":3.459964,\"semorder\":18},{\"null\":462,\"credits\":18,\"gpa\":2.674345,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":58,\"cumcredits\":101,\"cumgpa\":3.319953,\"semorder\":19},{\"null\":463,\"credits\":16,\"gpa\":3.261173,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":58,\"cumcredits\":117,\"cumgpa\":3.311914,\"semorder\":20},{\"null\":464,\"credits\":13,\"gpa\":3.789791,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":59,\"cumcredits\":13,\"cumgpa\":3.789791,\"semorder\":13},{\"null\":465,\"credits\":12,\"gpa\":3.324766,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":59,\"cumcredits\":25,\"cumgpa\":3.566579,\"semorder\":14},{\"null\":466,\"credits\":15,\"gpa\":3.88019,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":59,\"cumcredits\":40,\"cumgpa\":3.684183,\"semorder\":15},{\"null\":467,\"credits\":12,\"gpa\":2.711553,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":59,\"cumcredits\":52,\"cumgpa\":3.45973,\"semorder\":16},{\"null\":468,\"credits\":18,\"gpa\":3.314657,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":59,\"cumcredits\":70,\"cumgpa\":3.422425,\"semorder\":17},{\"null\":469,\"credits\":12,\"gpa\":3.562812,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":59,\"cumcredits\":82,\"cumgpa\":3.44297,\"semorder\":18},{\"null\":470,\"credits\":13,\"gpa\":3.409733,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":59,\"cumcredits\":95,\"cumgpa\":3.438422,\"semorder\":19},{\"null\":471,\"credits\":13,\"gpa\":2.900306,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":59,\"cumcredits\":108,\"cumgpa\":3.373648,\"semorder\":20},{\"null\":472,\"credits\":17,\"gpa\":3.888319,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":60,\"cumcredits\":17,\"cumgpa\":3.888319,\"semorder\":13},{\"null\":473,\"credits\":15,\"gpa\":3.950753,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":60,\"cumcredits\":32,\"cumgpa\":3.917585,\"semorder\":14},{\"null\":474,\"credits\":17,\"gpa\":3.93952,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":60,\"cumcredits\":49,\"cumgpa\":3.925195,\"semorder\":15},{\"null\":475,\"credits\":12,\"gpa\":3.703994,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":60,\"cumcredits\":61,\"cumgpa\":3.88168,\"semorder\":16},{\"null\":476,\"credits\":15,\"gpa\":2.626993,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":60,\"cumcredits\":76,\"cumgpa\":3.634045,\"semorder\":17},{\"null\":477,\"credits\":17,\"gpa\":2.95153,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":60,\"cumcredits\":93,\"cumgpa\":3.509284,\"semorder\":18},{\"null\":478,\"credits\":14,\"gpa\":3.47654,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":60,\"cumcredits\":107,\"cumgpa\":3.505,\"semorder\":19},{\"null\":479,\"credits\":12,\"gpa\":3.20177,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":60,\"cumcredits\":119,\"cumgpa\":3.474422,\"semorder\":20},{\"null\":480,\"credits\":14,\"gpa\":3.679341,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":61,\"cumcredits\":14,\"cumgpa\":3.679341,\"semorder\":13},{\"null\":481,\"credits\":17,\"gpa\":2.754174,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":61,\"cumcredits\":31,\"cumgpa\":3.171991,\"semorder\":14},{\"null\":482,\"credits\":12,\"gpa\":3.032752,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":61,\"cumcredits\":43,\"cumgpa\":3.133134,\"semorder\":15},{\"null\":483,\"credits\":16,\"gpa\":3.766679,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":61,\"cumcredits\":59,\"cumgpa\":3.304943,\"semorder\":16},{\"null\":484,\"credits\":13,\"gpa\":2.732967,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":61,\"cumcredits\":72,\"cumgpa\":3.201669,\"semorder\":17},{\"null\":485,\"credits\":18,\"gpa\":2.138525,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":61,\"cumcredits\":90,\"cumgpa\":2.98904,\"semorder\":18},{\"null\":486,\"credits\":12,\"gpa\":3.061973,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":61,\"cumcredits\":102,\"cumgpa\":2.997621,\"semorder\":19},{\"null\":487,\"credits\":18,\"gpa\":3.917658,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":61,\"cumcredits\":120,\"cumgpa\":3.135626,\"semorder\":20},{\"null\":488,\"credits\":18,\"gpa\":2.236651,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":62,\"cumcredits\":18,\"cumgpa\":2.236651,\"semorder\":13},{\"null\":489,\"credits\":17,\"gpa\":3.745742,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":62,\"cumcredits\":35,\"cumgpa\":2.969638,\"semorder\":14},{\"null\":490,\"credits\":14,\"gpa\":2.207066,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":62,\"cumcredits\":49,\"cumgpa\":2.75176,\"semorder\":15},{\"null\":491,\"credits\":17,\"gpa\":3.575633,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":62,\"cumcredits\":66,\"cumgpa\":2.96397,\"semorder\":16},{\"null\":492,\"credits\":13,\"gpa\":3.990113,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":62,\"cumcredits\":79,\"cumgpa\":3.132829,\"semorder\":17},{\"null\":493,\"credits\":14,\"gpa\":3.302338,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":62,\"cumcredits\":93,\"cumgpa\":3.158346,\"semorder\":18},{\"null\":494,\"credits\":15,\"gpa\":2.956591,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":62,\"cumcredits\":108,\"cumgpa\":3.130325,\"semorder\":19},{\"null\":495,\"credits\":17,\"gpa\":2.68139,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":62,\"cumcredits\":125,\"cumgpa\":3.06927,\"semorder\":20},{\"null\":496,\"credits\":17,\"gpa\":2.605551,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":63,\"cumcredits\":17,\"cumgpa\":2.605551,\"semorder\":13},{\"null\":497,\"credits\":13,\"gpa\":2.367803,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":63,\"cumcredits\":30,\"cumgpa\":2.502527,\"semorder\":14},{\"null\":498,\"credits\":14,\"gpa\":2.705579,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":63,\"cumcredits\":44,\"cumgpa\":2.567134,\"semorder\":15},{\"null\":499,\"credits\":15,\"gpa\":3.40608,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":63,\"cumcredits\":59,\"cumgpa\":2.780426,\"semorder\":16},{\"null\":500,\"credits\":17,\"gpa\":3.229217,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":63,\"cumcredits\":76,\"cumgpa\":2.880813,\"semorder\":17},{\"null\":501,\"credits\":15,\"gpa\":2.27566,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":63,\"cumcredits\":91,\"cumgpa\":2.781063,\"semorder\":18},{\"null\":502,\"credits\":14,\"gpa\":3.835015,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":63,\"cumcredits\":105,\"cumgpa\":2.92159,\"semorder\":19},{\"null\":503,\"credits\":17,\"gpa\":2.120638,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":63,\"cumcredits\":122,\"cumgpa\":2.809982,\"semorder\":20},{\"null\":504,\"credits\":12,\"gpa\":2.717416,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":64,\"cumcredits\":12,\"cumgpa\":2.717416,\"semorder\":13},{\"null\":505,\"credits\":13,\"gpa\":3.955728,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":64,\"cumcredits\":25,\"cumgpa\":3.361338,\"semorder\":14},{\"null\":506,\"credits\":12,\"gpa\":3.964815,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":64,\"cumcredits\":37,\"cumgpa\":3.55706,\"semorder\":15},{\"null\":507,\"credits\":17,\"gpa\":3.246435,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":64,\"cumcredits\":54,\"cumgpa\":3.459271,\"semorder\":16},{\"null\":508,\"credits\":16,\"gpa\":3.716288,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":64,\"cumcredits\":70,\"cumgpa\":3.518018,\"semorder\":17},{\"null\":509,\"credits\":17,\"gpa\":2.788194,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":64,\"cumcredits\":87,\"cumgpa\":3.375408,\"semorder\":18},{\"null\":510,\"credits\":13,\"gpa\":3.274242,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":64,\"cumcredits\":100,\"cumgpa\":3.362257,\"semorder\":19},{\"null\":511,\"credits\":12,\"gpa\":3.715756,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":64,\"cumcredits\":112,\"cumgpa\":3.400132,\"semorder\":20},{\"null\":512,\"credits\":18,\"gpa\":2.459016,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":65,\"cumcredits\":18,\"cumgpa\":2.459016,\"semorder\":13},{\"null\":513,\"credits\":18,\"gpa\":3.337223,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":65,\"cumcredits\":36,\"cumgpa\":2.89812,\"semorder\":14},{\"null\":514,\"credits\":12,\"gpa\":2.280387,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":65,\"cumcredits\":48,\"cumgpa\":2.743687,\"semorder\":15},{\"null\":515,\"credits\":13,\"gpa\":2.997183,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":65,\"cumcredits\":61,\"cumgpa\":2.79771,\"semorder\":16},{\"null\":516,\"credits\":15,\"gpa\":3.706302,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":65,\"cumcredits\":76,\"cumgpa\":2.977038,\"semorder\":17},{\"null\":517,\"credits\":15,\"gpa\":2.476015,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":65,\"cumcredits\":91,\"cumgpa\":2.894452,\"semorder\":18},{\"null\":518,\"credits\":13,\"gpa\":3.076411,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":65,\"cumcredits\":104,\"cumgpa\":2.917196,\"semorder\":19},{\"null\":519,\"credits\":17,\"gpa\":3.78388,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":65,\"cumcredits\":121,\"cumgpa\":3.038962,\"semorder\":20},{\"null\":520,\"credits\":14,\"gpa\":2.763926,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":66,\"cumcredits\":14,\"cumgpa\":2.763926,\"semorder\":13},{\"null\":521,\"credits\":15,\"gpa\":3.219777,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":66,\"cumcredits\":29,\"cumgpa\":2.999711,\"semorder\":14},{\"null\":522,\"credits\":13,\"gpa\":3.391092,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":66,\"cumcredits\":42,\"cumgpa\":3.120853,\"semorder\":15},{\"null\":523,\"credits\":14,\"gpa\":2.41138,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":66,\"cumcredits\":56,\"cumgpa\":2.943485,\"semorder\":16},{\"null\":524,\"credits\":18,\"gpa\":3.615592,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":66,\"cumcredits\":74,\"cumgpa\":3.10697,\"semorder\":17},{\"null\":525,\"credits\":17,\"gpa\":2.931227,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":66,\"cumcredits\":91,\"cumgpa\":3.074139,\"semorder\":18},{\"null\":526,\"credits\":17,\"gpa\":2.837739,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":66,\"cumcredits\":108,\"cumgpa\":3.036928,\"semorder\":19},{\"null\":527,\"credits\":13,\"gpa\":3.219912,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":66,\"cumcredits\":121,\"cumgpa\":3.056588,\"semorder\":20},{\"null\":528,\"credits\":16,\"gpa\":2.638494,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":67,\"cumcredits\":16,\"cumgpa\":2.638494,\"semorder\":13},{\"null\":529,\"credits\":17,\"gpa\":2.50424,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":67,\"cumcredits\":33,\"cumgpa\":2.569333,\"semorder\":14},{\"null\":530,\"credits\":12,\"gpa\":2.218654,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":67,\"cumcredits\":45,\"cumgpa\":2.475819,\"semorder\":15},{\"null\":531,\"credits\":13,\"gpa\":3.095526,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":67,\"cumcredits\":58,\"cumgpa\":2.614719,\"semorder\":16},{\"null\":532,\"credits\":17,\"gpa\":3.737011,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":67,\"cumcredits\":75,\"cumgpa\":2.869105,\"semorder\":17},{\"null\":533,\"credits\":17,\"gpa\":3.462236,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":67,\"cumcredits\":92,\"cumgpa\":2.978705,\"semorder\":18},{\"null\":534,\"credits\":13,\"gpa\":2.080391,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":67,\"cumcredits\":105,\"cumgpa\":2.867485,\"semorder\":19},{\"null\":535,\"credits\":16,\"gpa\":2.989748,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":67,\"cumcredits\":121,\"cumgpa\":2.883652,\"semorder\":20},{\"null\":536,\"credits\":17,\"gpa\":2.132593,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":68,\"cumcredits\":17,\"cumgpa\":2.132593,\"semorder\":13},{\"null\":537,\"credits\":13,\"gpa\":3.14087,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":68,\"cumcredits\":30,\"cumgpa\":2.569513,\"semorder\":14},{\"null\":538,\"credits\":13,\"gpa\":2.213372,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":68,\"cumcredits\":43,\"cumgpa\":2.461842,\"semorder\":15},{\"null\":539,\"credits\":17,\"gpa\":3.450075,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":68,\"cumcredits\":60,\"cumgpa\":2.741842,\"semorder\":16},{\"null\":540,\"credits\":14,\"gpa\":3.66763,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":68,\"cumcredits\":74,\"cumgpa\":2.916991,\"semorder\":17},{\"null\":541,\"credits\":16,\"gpa\":3.476673,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":68,\"cumcredits\":90,\"cumgpa\":3.01649,\"semorder\":18},{\"null\":542,\"credits\":13,\"gpa\":2.259959,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":68,\"cumcredits\":103,\"cumgpa\":2.921005,\"semorder\":19},{\"null\":543,\"credits\":16,\"gpa\":3.447623,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":68,\"cumcredits\":119,\"cumgpa\":2.991811,\"semorder\":20},{\"null\":544,\"credits\":15,\"gpa\":2.908331,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":69,\"cumcredits\":15,\"cumgpa\":2.908331,\"semorder\":13},{\"null\":545,\"credits\":16,\"gpa\":2.518686,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":69,\"cumcredits\":31,\"cumgpa\":2.707224,\"semorder\":14},{\"null\":546,\"credits\":17,\"gpa\":3.08475,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":69,\"cumcredits\":48,\"cumgpa\":2.840931,\"semorder\":15},{\"null\":547,\"credits\":18,\"gpa\":2.311033,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":69,\"cumcredits\":66,\"cumgpa\":2.696413,\"semorder\":16},{\"null\":548,\"credits\":12,\"gpa\":2.778893,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":69,\"cumcredits\":78,\"cumgpa\":2.709102,\"semorder\":17},{\"null\":549,\"credits\":15,\"gpa\":3.550687,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":69,\"cumcredits\":93,\"cumgpa\":2.844842,\"semorder\":18},{\"null\":550,\"credits\":13,\"gpa\":3.246907,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":69,\"cumcredits\":106,\"cumgpa\":2.894152,\"semorder\":19},{\"null\":551,\"credits\":14,\"gpa\":3.317239,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":69,\"cumcredits\":120,\"cumgpa\":2.943512,\"semorder\":20},{\"null\":552,\"credits\":13,\"gpa\":3.944674,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":70,\"cumcredits\":13,\"cumgpa\":3.944674,\"semorder\":13},{\"null\":553,\"credits\":18,\"gpa\":3.737386,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":70,\"cumcredits\":31,\"cumgpa\":3.824313,\"semorder\":14},{\"null\":554,\"credits\":18,\"gpa\":3.793073,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":70,\"cumcredits\":49,\"cumgpa\":3.812837,\"semorder\":15},{\"null\":555,\"credits\":12,\"gpa\":3.192447,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":70,\"cumcredits\":61,\"cumgpa\":3.690793,\"semorder\":16},{\"null\":556,\"credits\":18,\"gpa\":3.832068,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":70,\"cumcredits\":79,\"cumgpa\":3.722983,\"semorder\":17},{\"null\":557,\"credits\":18,\"gpa\":2.06523,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":70,\"cumcredits\":97,\"cumgpa\":3.415358,\"semorder\":18},{\"null\":558,\"credits\":12,\"gpa\":3.063207,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":70,\"cumcredits\":109,\"cumgpa\":3.37659,\"semorder\":19},{\"null\":559,\"credits\":13,\"gpa\":2.209778,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":70,\"cumcredits\":122,\"cumgpa\":3.252257,\"semorder\":20},{\"null\":560,\"credits\":12,\"gpa\":3.361504,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":71,\"cumcredits\":12,\"cumgpa\":3.361504,\"semorder\":13},{\"null\":561,\"credits\":14,\"gpa\":2.452925,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":71,\"cumcredits\":26,\"cumgpa\":2.87227,\"semorder\":14},{\"null\":562,\"credits\":12,\"gpa\":2.964978,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":71,\"cumcredits\":38,\"cumgpa\":2.901546,\"semorder\":15},{\"null\":563,\"credits\":15,\"gpa\":2.652521,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":71,\"cumcredits\":53,\"cumgpa\":2.831067,\"semorder\":16},{\"null\":564,\"credits\":14,\"gpa\":3.697896,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":71,\"cumcredits\":67,\"cumgpa\":3.012196,\"semorder\":17},{\"null\":565,\"credits\":16,\"gpa\":2.817865,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":71,\"cumcredits\":83,\"cumgpa\":2.974734,\"semorder\":18},{\"null\":566,\"credits\":13,\"gpa\":3.057192,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":71,\"cumcredits\":96,\"cumgpa\":2.9859,\"semorder\":19},{\"null\":567,\"credits\":17,\"gpa\":2.993753,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":71,\"cumcredits\":113,\"cumgpa\":2.987082,\"semorder\":20},{\"null\":568,\"credits\":15,\"gpa\":3.40174,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":72,\"cumcredits\":15,\"cumgpa\":3.40174,\"semorder\":13},{\"null\":569,\"credits\":14,\"gpa\":3.315495,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":72,\"cumcredits\":29,\"cumgpa\":3.360104,\"semorder\":14},{\"null\":570,\"credits\":14,\"gpa\":2.288365,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":72,\"cumcredits\":43,\"cumgpa\":3.011166,\"semorder\":15},{\"null\":571,\"credits\":18,\"gpa\":2.010397,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":72,\"cumcredits\":61,\"cumgpa\":2.715857,\"semorder\":16},{\"null\":572,\"credits\":16,\"gpa\":2.106061,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":72,\"cumcredits\":77,\"cumgpa\":2.589146,\"semorder\":17},{\"null\":573,\"credits\":14,\"gpa\":3.063324,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":72,\"cumcredits\":91,\"cumgpa\":2.662097,\"semorder\":18},{\"null\":574,\"credits\":16,\"gpa\":3.383278,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":72,\"cumcredits\":107,\"cumgpa\":2.769937,\"semorder\":19},{\"null\":575,\"credits\":16,\"gpa\":3.138018,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":72,\"cumcredits\":123,\"cumgpa\":2.817817,\"semorder\":20},{\"null\":576,\"credits\":18,\"gpa\":2.88091,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":73,\"cumcredits\":18,\"cumgpa\":2.88091,\"semorder\":13},{\"null\":577,\"credits\":15,\"gpa\":3.872951,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":73,\"cumcredits\":33,\"cumgpa\":3.331838,\"semorder\":14},{\"null\":578,\"credits\":15,\"gpa\":2.003908,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":73,\"cumcredits\":48,\"cumgpa\":2.91686,\"semorder\":15},{\"null\":579,\"credits\":15,\"gpa\":3.568027,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":73,\"cumcredits\":63,\"cumgpa\":3.071899,\"semorder\":16},{\"null\":580,\"credits\":14,\"gpa\":3.433595,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":73,\"cumcredits\":77,\"cumgpa\":3.137662,\"semorder\":17},{\"null\":581,\"credits\":13,\"gpa\":2.522208,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":73,\"cumcredits\":90,\"cumgpa\":3.048763,\"semorder\":18},{\"null\":582,\"credits\":13,\"gpa\":3.211975,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":73,\"cumcredits\":103,\"cumgpa\":3.069363,\"semorder\":19},{\"null\":583,\"credits\":12,\"gpa\":3.643435,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":73,\"cumcredits\":115,\"cumgpa\":3.129266,\"semorder\":20},{\"null\":584,\"credits\":14,\"gpa\":3.347098,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":74,\"cumcredits\":14,\"cumgpa\":3.347098,\"semorder\":13},{\"null\":585,\"credits\":17,\"gpa\":2.940267,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":74,\"cumcredits\":31,\"cumgpa\":3.123997,\"semorder\":14},{\"null\":586,\"credits\":13,\"gpa\":3.032919,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":74,\"cumcredits\":44,\"cumgpa\":3.097088,\"semorder\":15},{\"null\":587,\"credits\":18,\"gpa\":3.527471,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":74,\"cumcredits\":62,\"cumgpa\":3.222038,\"semorder\":16},{\"null\":588,\"credits\":15,\"gpa\":2.835036,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":74,\"cumcredits\":77,\"cumgpa\":3.146648,\"semorder\":17},{\"null\":589,\"credits\":12,\"gpa\":3.207247,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":74,\"cumcredits\":89,\"cumgpa\":3.154819,\"semorder\":18},{\"null\":590,\"credits\":15,\"gpa\":2.038531,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":74,\"cumcredits\":104,\"cumgpa\":2.993816,\"semorder\":19},{\"null\":591,\"credits\":15,\"gpa\":2.53565,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":74,\"cumcredits\":119,\"cumgpa\":2.936064,\"semorder\":20},{\"null\":592,\"credits\":17,\"gpa\":2.164816,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":75,\"cumcredits\":17,\"cumgpa\":2.164816,\"semorder\":13},{\"null\":593,\"credits\":15,\"gpa\":2.374,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":75,\"cumcredits\":32,\"cumgpa\":2.262871,\"semorder\":14},{\"null\":594,\"credits\":18,\"gpa\":3.366188,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":75,\"cumcredits\":50,\"cumgpa\":2.660065,\"semorder\":15},{\"null\":595,\"credits\":14,\"gpa\":3.515272,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":75,\"cumcredits\":64,\"cumgpa\":2.847142,\"semorder\":16},{\"null\":596,\"credits\":16,\"gpa\":3.653574,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":75,\"cumcredits\":80,\"cumgpa\":3.008428,\"semorder\":17},{\"null\":597,\"credits\":15,\"gpa\":2.906782,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":75,\"cumcredits\":95,\"cumgpa\":2.992379,\"semorder\":18},{\"null\":598,\"credits\":15,\"gpa\":2.861057,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":75,\"cumcredits\":110,\"cumgpa\":2.974471,\"semorder\":19},{\"null\":599,\"credits\":17,\"gpa\":3.76518,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":75,\"cumcredits\":127,\"cumgpa\":3.080314,\"semorder\":20},{\"null\":600,\"credits\":16,\"gpa\":3.404037,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":76,\"cumcredits\":16,\"cumgpa\":3.404037,\"semorder\":13},{\"null\":601,\"credits\":12,\"gpa\":2.26828,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":76,\"cumcredits\":28,\"cumgpa\":2.917284,\"semorder\":14},{\"null\":602,\"credits\":12,\"gpa\":2.479511,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":76,\"cumcredits\":40,\"cumgpa\":2.785952,\"semorder\":15},{\"null\":603,\"credits\":13,\"gpa\":3.351531,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":76,\"cumcredits\":53,\"cumgpa\":2.924679,\"semorder\":16},{\"null\":604,\"credits\":12,\"gpa\":3.633878,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":76,\"cumcredits\":65,\"cumgpa\":3.055608,\"semorder\":17},{\"null\":605,\"credits\":17,\"gpa\":2.249259,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":76,\"cumcredits\":82,\"cumgpa\":2.888438,\"semorder\":18},{\"null\":606,\"credits\":16,\"gpa\":2.756645,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":76,\"cumcredits\":98,\"cumgpa\":2.866921,\"semorder\":19},{\"null\":607,\"credits\":14,\"gpa\":3.822392,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":76,\"cumcredits\":112,\"cumgpa\":2.986355,\"semorder\":20},{\"null\":608,\"credits\":17,\"gpa\":2.376301,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":77,\"cumcredits\":17,\"cumgpa\":2.376301,\"semorder\":13},{\"null\":609,\"credits\":16,\"gpa\":3.132211,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":77,\"cumcredits\":33,\"cumgpa\":2.742802,\"semorder\":14},{\"null\":610,\"credits\":16,\"gpa\":2.69854,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":77,\"cumcredits\":49,\"cumgpa\":2.728349,\"semorder\":15},{\"null\":611,\"credits\":16,\"gpa\":2.210269,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":77,\"cumcredits\":65,\"cumgpa\":2.600822,\"semorder\":16},{\"null\":612,\"credits\":18,\"gpa\":2.033067,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":77,\"cumcredits\":83,\"cumgpa\":2.477694,\"semorder\":17},{\"null\":613,\"credits\":12,\"gpa\":2.992404,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":77,\"cumcredits\":95,\"cumgpa\":2.54271,\"semorder\":18},{\"null\":614,\"credits\":18,\"gpa\":3.929138,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":77,\"cumcredits\":113,\"cumgpa\":2.763557,\"semorder\":19},{\"null\":615,\"credits\":12,\"gpa\":2.612093,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":77,\"cumcredits\":125,\"cumgpa\":2.749017,\"semorder\":20},{\"null\":616,\"credits\":18,\"gpa\":2.190491,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":78,\"cumcredits\":18,\"cumgpa\":2.190491,\"semorder\":13},{\"null\":617,\"credits\":17,\"gpa\":3.45568,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":78,\"cumcredits\":35,\"cumgpa\":2.805012,\"semorder\":14},{\"null\":618,\"credits\":14,\"gpa\":3.111449,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":78,\"cumcredits\":49,\"cumgpa\":2.892565,\"semorder\":15},{\"null\":619,\"credits\":15,\"gpa\":3.358708,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":78,\"cumcredits\":64,\"cumgpa\":3.001817,\"semorder\":16},{\"null\":620,\"credits\":14,\"gpa\":2.445913,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":78,\"cumcredits\":78,\"cumgpa\":2.90204,\"semorder\":17},{\"null\":621,\"credits\":17,\"gpa\":3.226832,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":78,\"cumcredits\":95,\"cumgpa\":2.96016,\"semorder\":18},{\"null\":622,\"credits\":14,\"gpa\":3.127898,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":78,\"cumcredits\":109,\"cumgpa\":2.981705,\"semorder\":19},{\"null\":623,\"credits\":13,\"gpa\":3.803072,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":78,\"cumcredits\":122,\"cumgpa\":3.069227,\"semorder\":20},{\"null\":624,\"credits\":14,\"gpa\":2.421214,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":79,\"cumcredits\":14,\"cumgpa\":2.421214,\"semorder\":13},{\"null\":625,\"credits\":15,\"gpa\":3.058673,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":79,\"cumcredits\":29,\"cumgpa\":2.750934,\"semorder\":14},{\"null\":626,\"credits\":17,\"gpa\":3.783728,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":79,\"cumcredits\":46,\"cumgpa\":3.132619,\"semorder\":15},{\"null\":627,\"credits\":15,\"gpa\":2.943916,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":79,\"cumcredits\":61,\"cumgpa\":3.086216,\"semorder\":16},{\"null\":628,\"credits\":16,\"gpa\":2.221144,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":79,\"cumcredits\":77,\"cumgpa\":2.906461,\"semorder\":17},{\"null\":629,\"credits\":15,\"gpa\":2.524584,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":79,\"cumcredits\":92,\"cumgpa\":2.844198,\"semorder\":18},{\"null\":630,\"credits\":14,\"gpa\":3.903626,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":79,\"cumcredits\":106,\"cumgpa\":2.984123,\"semorder\":19},{\"null\":631,\"credits\":12,\"gpa\":2.961519,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":79,\"cumcredits\":118,\"cumgpa\":2.981824,\"semorder\":20},{\"null\":632,\"credits\":15,\"gpa\":2.946957,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":80,\"cumcredits\":15,\"cumgpa\":2.946957,\"semorder\":13},{\"null\":633,\"credits\":15,\"gpa\":3.726214,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":80,\"cumcredits\":30,\"cumgpa\":3.336585,\"semorder\":14},{\"null\":634,\"credits\":13,\"gpa\":3.432159,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":80,\"cumcredits\":43,\"cumgpa\":3.36548,\"semorder\":15},{\"null\":635,\"credits\":13,\"gpa\":3.594452,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":80,\"cumcredits\":56,\"cumgpa\":3.418634,\"semorder\":16},{\"null\":636,\"credits\":17,\"gpa\":3.525776,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":80,\"cumcredits\":73,\"cumgpa\":3.443585,\"semorder\":17},{\"null\":637,\"credits\":18,\"gpa\":3.376705,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":80,\"cumcredits\":91,\"cumgpa\":3.430356,\"semorder\":18},{\"null\":638,\"credits\":18,\"gpa\":3.643913,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":80,\"cumcredits\":109,\"cumgpa\":3.465622,\"semorder\":19},{\"null\":639,\"credits\":15,\"gpa\":3.048055,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":80,\"cumcredits\":124,\"cumgpa\":3.41511,\"semorder\":20},{\"null\":640,\"credits\":18,\"gpa\":3.484351,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":81,\"cumcredits\":18,\"cumgpa\":3.484351,\"semorder\":13},{\"null\":641,\"credits\":14,\"gpa\":3.205943,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":81,\"cumcredits\":32,\"cumgpa\":3.362548,\"semorder\":14},{\"null\":642,\"credits\":18,\"gpa\":2.265914,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":81,\"cumcredits\":50,\"cumgpa\":2.96776,\"semorder\":15},{\"null\":643,\"credits\":13,\"gpa\":3.076397,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":81,\"cumcredits\":63,\"cumgpa\":2.990177,\"semorder\":16},{\"null\":644,\"credits\":18,\"gpa\":2.097457,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":81,\"cumcredits\":81,\"cumgpa\":2.791795,\"semorder\":17},{\"null\":645,\"credits\":15,\"gpa\":2.201878,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":81,\"cumcredits\":96,\"cumgpa\":2.69962,\"semorder\":18},{\"null\":646,\"credits\":15,\"gpa\":2.113763,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":81,\"cumcredits\":111,\"cumgpa\":2.62045,\"semorder\":19},{\"null\":647,\"credits\":12,\"gpa\":2.707522,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":81,\"cumcredits\":123,\"cumgpa\":2.628945,\"semorder\":20},{\"null\":648,\"credits\":12,\"gpa\":3.166543,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":82,\"cumcredits\":12,\"cumgpa\":3.166543,\"semorder\":13},{\"null\":649,\"credits\":18,\"gpa\":2.197387,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":82,\"cumcredits\":30,\"cumgpa\":2.585049,\"semorder\":14},{\"null\":650,\"credits\":14,\"gpa\":3.457118,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":82,\"cumcredits\":44,\"cumgpa\":2.862526,\"semorder\":15},{\"null\":651,\"credits\":18,\"gpa\":2.001505,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":82,\"cumcredits\":62,\"cumgpa\":2.612552,\"semorder\":16},{\"null\":652,\"credits\":14,\"gpa\":3.347315,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":82,\"cumcredits\":76,\"cumgpa\":2.747903,\"semorder\":17},{\"null\":653,\"credits\":12,\"gpa\":3.098795,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":82,\"cumcredits\":88,\"cumgpa\":2.795752,\"semorder\":18},{\"null\":654,\"credits\":17,\"gpa\":3.742143,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":82,\"cumcredits\":105,\"cumgpa\":2.948977,\"semorder\":19},{\"null\":655,\"credits\":18,\"gpa\":2.053418,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":82,\"cumcredits\":123,\"cumgpa\":2.81792,\"semorder\":20},{\"null\":656,\"credits\":15,\"gpa\":3.234901,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":83,\"cumcredits\":15,\"cumgpa\":3.234901,\"semorder\":13},{\"null\":657,\"credits\":12,\"gpa\":3.792813,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":83,\"cumcredits\":27,\"cumgpa\":3.482862,\"semorder\":14},{\"null\":658,\"credits\":15,\"gpa\":2.791086,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":83,\"cumcredits\":42,\"cumgpa\":3.235799,\"semorder\":15},{\"null\":659,\"credits\":14,\"gpa\":2.487622,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":83,\"cumcredits\":56,\"cumgpa\":3.048755,\"semorder\":16},{\"null\":660,\"credits\":18,\"gpa\":2.809017,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":83,\"cumcredits\":74,\"cumgpa\":2.99044,\"semorder\":17},{\"null\":661,\"credits\":17,\"gpa\":3.1772,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":83,\"cumcredits\":91,\"cumgpa\":3.025329,\"semorder\":18},{\"null\":662,\"credits\":17,\"gpa\":3.553024,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":83,\"cumcredits\":108,\"cumgpa\":3.108392,\"semorder\":19},{\"null\":663,\"credits\":12,\"gpa\":3.668511,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":83,\"cumcredits\":120,\"cumgpa\":3.164404,\"semorder\":20},{\"null\":664,\"credits\":14,\"gpa\":2.043561,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":84,\"cumcredits\":14,\"cumgpa\":2.043561,\"semorder\":13},{\"null\":665,\"credits\":13,\"gpa\":2.456055,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":84,\"cumcredits\":27,\"cumgpa\":2.242169,\"semorder\":14},{\"null\":666,\"credits\":16,\"gpa\":2.732892,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":84,\"cumcredits\":43,\"cumgpa\":2.424763,\"semorder\":15},{\"null\":667,\"credits\":13,\"gpa\":3.372649,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":84,\"cumcredits\":56,\"cumgpa\":2.644808,\"semorder\":16},{\"null\":668,\"credits\":13,\"gpa\":3.437358,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":84,\"cumcredits\":69,\"cumgpa\":2.794129,\"semorder\":17},{\"null\":669,\"credits\":17,\"gpa\":2.551255,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":84,\"cumcredits\":86,\"cumgpa\":2.746119,\"semorder\":18},{\"null\":670,\"credits\":16,\"gpa\":2.419299,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":84,\"cumcredits\":102,\"cumgpa\":2.694853,\"semorder\":19},{\"null\":671,\"credits\":15,\"gpa\":3.732838,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":84,\"cumcredits\":117,\"cumgpa\":2.827928,\"semorder\":20},{\"null\":672,\"credits\":18,\"gpa\":3.564806,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":85,\"cumcredits\":18,\"cumgpa\":3.564806,\"semorder\":13},{\"null\":673,\"credits\":14,\"gpa\":3.778918,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":85,\"cumcredits\":32,\"cumgpa\":3.65848,\"semorder\":14},{\"null\":674,\"credits\":15,\"gpa\":2.654711,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":85,\"cumcredits\":47,\"cumgpa\":3.338128,\"semorder\":15},{\"null\":675,\"credits\":15,\"gpa\":2.467734,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":85,\"cumcredits\":62,\"cumgpa\":3.127549,\"semorder\":16},{\"null\":676,\"credits\":18,\"gpa\":3.802414,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":85,\"cumcredits\":80,\"cumgpa\":3.279393,\"semorder\":17},{\"null\":677,\"credits\":18,\"gpa\":3.976273,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":85,\"cumcredits\":98,\"cumgpa\":3.407392,\"semorder\":18},{\"null\":678,\"credits\":14,\"gpa\":2.79177,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":85,\"cumcredits\":112,\"cumgpa\":3.330439,\"semorder\":19},{\"null\":679,\"credits\":14,\"gpa\":2.595065,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":85,\"cumcredits\":126,\"cumgpa\":3.248731,\"semorder\":20},{\"null\":680,\"credits\":13,\"gpa\":3.757699,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":86,\"cumcredits\":13,\"cumgpa\":3.757699,\"semorder\":13},{\"null\":681,\"credits\":14,\"gpa\":2.448171,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":86,\"cumcredits\":27,\"cumgpa\":3.078685,\"semorder\":14},{\"null\":682,\"credits\":18,\"gpa\":3.745406,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":86,\"cumcredits\":45,\"cumgpa\":3.345373,\"semorder\":15},{\"null\":683,\"credits\":17,\"gpa\":2.381275,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":86,\"cumcredits\":62,\"cumgpa\":3.081024,\"semorder\":16},{\"null\":684,\"credits\":13,\"gpa\":3.68435,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":86,\"cumcredits\":75,\"cumgpa\":3.1856,\"semorder\":17},{\"null\":685,\"credits\":15,\"gpa\":3.574848,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":86,\"cumcredits\":90,\"cumgpa\":3.250475,\"semorder\":18},{\"null\":686,\"credits\":16,\"gpa\":2.649134,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":86,\"cumcredits\":106,\"cumgpa\":3.159706,\"semorder\":19},{\"null\":687,\"credits\":15,\"gpa\":3.180487,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":86,\"cumcredits\":121,\"cumgpa\":3.162283,\"semorder\":20},{\"null\":688,\"credits\":14,\"gpa\":2.397047,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":87,\"cumcredits\":14,\"cumgpa\":2.397047,\"semorder\":13},{\"null\":689,\"credits\":13,\"gpa\":2.106101,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":87,\"cumcredits\":27,\"cumgpa\":2.256962,\"semorder\":14},{\"null\":690,\"credits\":15,\"gpa\":3.049852,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":87,\"cumcredits\":42,\"cumgpa\":2.540137,\"semorder\":15},{\"null\":691,\"credits\":18,\"gpa\":3.437974,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":87,\"cumcredits\":60,\"cumgpa\":2.809488,\"semorder\":16},{\"null\":692,\"credits\":12,\"gpa\":3.456172,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":87,\"cumcredits\":72,\"cumgpa\":2.917269,\"semorder\":17},{\"null\":693,\"credits\":15,\"gpa\":3.317198,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":87,\"cumcredits\":87,\"cumgpa\":2.986222,\"semorder\":18},{\"null\":694,\"credits\":18,\"gpa\":3.999589,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":87,\"cumcredits\":105,\"cumgpa\":3.159942,\"semorder\":19},{\"null\":695,\"credits\":13,\"gpa\":3.827169,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":87,\"cumcredits\":118,\"cumgpa\":3.23345,\"semorder\":20},{\"null\":696,\"credits\":13,\"gpa\":3.120251,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":88,\"cumcredits\":13,\"cumgpa\":3.120251,\"semorder\":13},{\"null\":697,\"credits\":14,\"gpa\":3.807302,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":88,\"cumcredits\":27,\"cumgpa\":3.4765,\"semorder\":14},{\"null\":698,\"credits\":14,\"gpa\":2.860355,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":88,\"cumcredits\":41,\"cumgpa\":3.266109,\"semorder\":15},{\"null\":699,\"credits\":17,\"gpa\":2.430978,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":88,\"cumcredits\":58,\"cumgpa\":3.021329,\"semorder\":16},{\"null\":700,\"credits\":18,\"gpa\":3.185754,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":88,\"cumcredits\":76,\"cumgpa\":3.060272,\"semorder\":17},{\"null\":701,\"credits\":16,\"gpa\":3.228196,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":88,\"cumcredits\":92,\"cumgpa\":3.089476,\"semorder\":18},{\"null\":702,\"credits\":13,\"gpa\":2.647026,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":88,\"cumcredits\":105,\"cumgpa\":3.034696,\"semorder\":19},{\"null\":703,\"credits\":16,\"gpa\":2.967361,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":88,\"cumcredits\":121,\"cumgpa\":3.025793,\"semorder\":20},{\"null\":704,\"credits\":18,\"gpa\":2.058957,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":89,\"cumcredits\":18,\"cumgpa\":2.058957,\"semorder\":13},{\"null\":705,\"credits\":12,\"gpa\":2.870013,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":89,\"cumcredits\":30,\"cumgpa\":2.383379,\"semorder\":14},{\"null\":706,\"credits\":12,\"gpa\":3.292399,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":89,\"cumcredits\":42,\"cumgpa\":2.643099,\"semorder\":15},{\"null\":707,\"credits\":14,\"gpa\":3.603733,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":89,\"cumcredits\":56,\"cumgpa\":2.883258,\"semorder\":16},{\"null\":708,\"credits\":16,\"gpa\":3.104988,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":89,\"cumcredits\":72,\"cumgpa\":2.932531,\"semorder\":17},{\"null\":709,\"credits\":17,\"gpa\":2.927102,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":89,\"cumcredits\":89,\"cumgpa\":2.931494,\"semorder\":18},{\"null\":710,\"credits\":15,\"gpa\":3.196388,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":89,\"cumcredits\":104,\"cumgpa\":2.9697,\"semorder\":19},{\"null\":711,\"credits\":15,\"gpa\":2.59168,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":89,\"cumcredits\":119,\"cumgpa\":2.92205,\"semorder\":20},{\"null\":712,\"credits\":15,\"gpa\":3.677491,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":90,\"cumcredits\":15,\"cumgpa\":3.677491,\"semorder\":13},{\"null\":713,\"credits\":12,\"gpa\":3.814207,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":90,\"cumcredits\":27,\"cumgpa\":3.738254,\"semorder\":14},{\"null\":714,\"credits\":12,\"gpa\":2.24488,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":90,\"cumcredits\":39,\"cumgpa\":3.278754,\"semorder\":15},{\"null\":715,\"credits\":16,\"gpa\":3.49852,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":90,\"cumcredits\":55,\"cumgpa\":3.342686,\"semorder\":16},{\"null\":716,\"credits\":14,\"gpa\":2.956486,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":90,\"cumcredits\":69,\"cumgpa\":3.264327,\"semorder\":17},{\"null\":717,\"credits\":12,\"gpa\":3.761712,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":90,\"cumcredits\":81,\"cumgpa\":3.338013,\"semorder\":18},{\"null\":718,\"credits\":14,\"gpa\":3.334193,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":90,\"cumcredits\":95,\"cumgpa\":3.33745,\"semorder\":19},{\"null\":719,\"credits\":14,\"gpa\":2.963932,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":90,\"cumcredits\":109,\"cumgpa\":3.289475,\"semorder\":20},{\"null\":720,\"credits\":15,\"gpa\":3.383068,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":91,\"cumcredits\":15,\"cumgpa\":3.383068,\"semorder\":13},{\"null\":721,\"credits\":13,\"gpa\":2.589949,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":91,\"cumcredits\":28,\"cumgpa\":3.014834,\"semorder\":14},{\"null\":722,\"credits\":14,\"gpa\":3.816876,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":91,\"cumcredits\":42,\"cumgpa\":3.282181,\"semorder\":15},{\"null\":723,\"credits\":16,\"gpa\":3.702161,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":91,\"cumcredits\":58,\"cumgpa\":3.398038,\"semorder\":16},{\"null\":724,\"credits\":15,\"gpa\":2.558294,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":91,\"cumcredits\":73,\"cumgpa\":3.225488,\"semorder\":17},{\"null\":725,\"credits\":12,\"gpa\":2.547543,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":91,\"cumcredits\":85,\"cumgpa\":3.129778,\"semorder\":18},{\"null\":726,\"credits\":14,\"gpa\":3.590793,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":91,\"cumcredits\":99,\"cumgpa\":3.194972,\"semorder\":19},{\"null\":727,\"credits\":13,\"gpa\":2.653418,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":91,\"cumcredits\":112,\"cumgpa\":3.132113,\"semorder\":20},{\"null\":728,\"credits\":14,\"gpa\":2.960584,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":92,\"cumcredits\":14,\"cumgpa\":2.960584,\"semorder\":13},{\"null\":729,\"credits\":15,\"gpa\":2.518676,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":92,\"cumcredits\":29,\"cumgpa\":2.732011,\"semorder\":14},{\"null\":730,\"credits\":18,\"gpa\":2.547348,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":92,\"cumcredits\":47,\"cumgpa\":2.661289,\"semorder\":15},{\"null\":731,\"credits\":14,\"gpa\":3.672137,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":92,\"cumcredits\":61,\"cumgpa\":2.893287,\"semorder\":16},{\"null\":732,\"credits\":16,\"gpa\":3.042922,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":92,\"cumcredits\":77,\"cumgpa\":2.92438,\"semorder\":17},{\"null\":733,\"credits\":17,\"gpa\":3.996196,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":92,\"cumcredits\":94,\"cumgpa\":3.118219,\"semorder\":18},{\"null\":734,\"credits\":14,\"gpa\":2.59314,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":92,\"cumcredits\":108,\"cumgpa\":3.050153,\"semorder\":19},{\"null\":735,\"credits\":14,\"gpa\":3.781397,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":92,\"cumcredits\":122,\"cumgpa\":3.134067,\"semorder\":20},{\"null\":736,\"credits\":16,\"gpa\":3.049193,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":93,\"cumcredits\":16,\"cumgpa\":3.049193,\"semorder\":13},{\"null\":737,\"credits\":13,\"gpa\":3.745166,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":93,\"cumcredits\":29,\"cumgpa\":3.361181,\"semorder\":14},{\"null\":738,\"credits\":12,\"gpa\":3.366833,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":93,\"cumcredits\":41,\"cumgpa\":3.362835,\"semorder\":15},{\"null\":739,\"credits\":14,\"gpa\":3.996424,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":93,\"cumcredits\":55,\"cumgpa\":3.524112,\"semorder\":16},{\"null\":740,\"credits\":13,\"gpa\":2.058363,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":93,\"cumcredits\":68,\"cumgpa\":3.243895,\"semorder\":17},{\"null\":741,\"credits\":17,\"gpa\":2.212877,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":93,\"cumcredits\":85,\"cumgpa\":3.037692,\"semorder\":18},{\"null\":742,\"credits\":16,\"gpa\":3.601257,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":93,\"cumcredits\":101,\"cumgpa\":3.126969,\"semorder\":19},{\"null\":743,\"credits\":12,\"gpa\":3.026135,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":93,\"cumcredits\":113,\"cumgpa\":3.116261,\"semorder\":20},{\"null\":744,\"credits\":16,\"gpa\":3.807268,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":94,\"cumcredits\":16,\"cumgpa\":3.807268,\"semorder\":13},{\"null\":745,\"credits\":17,\"gpa\":2.059897,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":94,\"cumcredits\":33,\"cumgpa\":2.907107,\"semorder\":14},{\"null\":746,\"credits\":17,\"gpa\":3.554524,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":94,\"cumcredits\":50,\"cumgpa\":3.127229,\"semorder\":15},{\"null\":747,\"credits\":14,\"gpa\":3.710095,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":94,\"cumcredits\":64,\"cumgpa\":3.254731,\"semorder\":16},{\"null\":748,\"credits\":18,\"gpa\":3.381716,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":94,\"cumcredits\":82,\"cumgpa\":3.282606,\"semorder\":17},{\"null\":749,\"credits\":17,\"gpa\":2.415868,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":94,\"cumcredits\":99,\"cumgpa\":3.133772,\"semorder\":18},{\"null\":750,\"credits\":16,\"gpa\":2.946315,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":94,\"cumcredits\":115,\"cumgpa\":3.107691,\"semorder\":19},{\"null\":751,\"credits\":16,\"gpa\":3.132032,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":94,\"cumcredits\":131,\"cumgpa\":3.110664,\"semorder\":20},{\"null\":752,\"credits\":12,\"gpa\":2.046587,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":95,\"cumcredits\":12,\"cumgpa\":2.046587,\"semorder\":13},{\"null\":753,\"credits\":16,\"gpa\":2.395562,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":95,\"cumcredits\":28,\"cumgpa\":2.246001,\"semorder\":14},{\"null\":754,\"credits\":18,\"gpa\":3.607198,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":95,\"cumcredits\":46,\"cumgpa\":2.778643,\"semorder\":15},{\"null\":755,\"credits\":13,\"gpa\":3.252519,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":95,\"cumcredits\":59,\"cumgpa\":2.883057,\"semorder\":16},{\"null\":756,\"credits\":14,\"gpa\":2.187871,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":95,\"cumcredits\":73,\"cumgpa\":2.749733,\"semorder\":17},{\"null\":757,\"credits\":12,\"gpa\":3.733583,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":95,\"cumcredits\":85,\"cumgpa\":2.88863,\"semorder\":18},{\"null\":758,\"credits\":14,\"gpa\":3.759275,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":95,\"cumcredits\":99,\"cumgpa\":3.011751,\"semorder\":19},{\"null\":759,\"credits\":12,\"gpa\":2.217312,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":95,\"cumcredits\":111,\"cumgpa\":2.925866,\"semorder\":20},{\"null\":760,\"credits\":17,\"gpa\":3.911596,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":96,\"cumcredits\":17,\"cumgpa\":3.911596,\"semorder\":13},{\"null\":761,\"credits\":18,\"gpa\":2.916342,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":96,\"cumcredits\":35,\"cumgpa\":3.399751,\"semorder\":14},{\"null\":762,\"credits\":15,\"gpa\":3.0886,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":96,\"cumcredits\":50,\"cumgpa\":3.306406,\"semorder\":15},{\"null\":763,\"credits\":18,\"gpa\":2.833418,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":96,\"cumcredits\":68,\"cumgpa\":3.181203,\"semorder\":16},{\"null\":764,\"credits\":17,\"gpa\":2.948156,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":96,\"cumcredits\":85,\"cumgpa\":3.134594,\"semorder\":17},{\"null\":765,\"credits\":17,\"gpa\":3.175077,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":96,\"cumcredits\":102,\"cumgpa\":3.141341,\"semorder\":18},{\"null\":766,\"credits\":15,\"gpa\":2.225525,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":96,\"cumcredits\":117,\"cumgpa\":3.023929,\"semorder\":19},{\"null\":767,\"credits\":14,\"gpa\":2.065463,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":96,\"cumcredits\":131,\"cumgpa\":2.921497,\"semorder\":20},{\"null\":768,\"credits\":15,\"gpa\":3.229837,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":97,\"cumcredits\":15,\"cumgpa\":3.229837,\"semorder\":13},{\"null\":769,\"credits\":16,\"gpa\":3.538505,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":97,\"cumcredits\":31,\"cumgpa\":3.38915,\"semorder\":14},{\"null\":770,\"credits\":16,\"gpa\":2.737301,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":97,\"cumcredits\":47,\"cumgpa\":3.167244,\"semorder\":15},{\"null\":771,\"credits\":17,\"gpa\":3.434689,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":97,\"cumcredits\":64,\"cumgpa\":3.238284,\"semorder\":16},{\"null\":772,\"credits\":12,\"gpa\":2.110332,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":97,\"cumcredits\":76,\"cumgpa\":3.060186,\"semorder\":17},{\"null\":773,\"credits\":15,\"gpa\":3.364392,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":97,\"cumcredits\":91,\"cumgpa\":3.11033,\"semorder\":18},{\"null\":774,\"credits\":17,\"gpa\":2.585193,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":97,\"cumcredits\":108,\"cumgpa\":3.02767,\"semorder\":19},{\"null\":775,\"credits\":14,\"gpa\":3.509282,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":97,\"cumcredits\":122,\"cumgpa\":3.082937,\"semorder\":20},{\"null\":776,\"credits\":16,\"gpa\":2.10531,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":98,\"cumcredits\":16,\"cumgpa\":2.10531,\"semorder\":13},{\"null\":777,\"credits\":13,\"gpa\":3.901879,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":98,\"cumcredits\":29,\"cumgpa\":2.910669,\"semorder\":14},{\"null\":778,\"credits\":16,\"gpa\":3.243403,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":98,\"cumcredits\":45,\"cumgpa\":3.028974,\"semorder\":15},{\"null\":779,\"credits\":16,\"gpa\":3.682319,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":98,\"cumcredits\":61,\"cumgpa\":3.200343,\"semorder\":16},{\"null\":780,\"credits\":18,\"gpa\":2.872525,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":98,\"cumcredits\":79,\"cumgpa\":3.125651,\"semorder\":17},{\"null\":781,\"credits\":18,\"gpa\":3.861532,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":98,\"cumcredits\":97,\"cumgpa\":3.262206,\"semorder\":18},{\"null\":782,\"credits\":14,\"gpa\":2.636937,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":98,\"cumcredits\":111,\"cumgpa\":3.183343,\"semorder\":19},{\"null\":783,\"credits\":12,\"gpa\":3.377156,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":98,\"cumcredits\":123,\"cumgpa\":3.202252,\"semorder\":20},{\"null\":784,\"credits\":14,\"gpa\":3.361648,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":99,\"cumcredits\":14,\"cumgpa\":3.361648,\"semorder\":13},{\"null\":785,\"credits\":14,\"gpa\":3.827685,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":99,\"cumcredits\":28,\"cumgpa\":3.594666,\"semorder\":14},{\"null\":786,\"credits\":16,\"gpa\":3.799809,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":99,\"cumcredits\":44,\"cumgpa\":3.669264,\"semorder\":15},{\"null\":787,\"credits\":18,\"gpa\":3.363506,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":99,\"cumcredits\":62,\"cumgpa\":3.580495,\"semorder\":16},{\"null\":788,\"credits\":17,\"gpa\":3.764749,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":99,\"cumcredits\":79,\"cumgpa\":3.620145,\"semorder\":17},{\"null\":789,\"credits\":18,\"gpa\":3.880683,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":99,\"cumcredits\":97,\"cumgpa\":3.668492,\"semorder\":18},{\"null\":790,\"credits\":16,\"gpa\":2.262771,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":99,\"cumcredits\":113,\"cumgpa\":3.469452,\"semorder\":19},{\"null\":791,\"credits\":13,\"gpa\":2.261108,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":99,\"cumcredits\":126,\"cumgpa\":3.344782,\"semorder\":20},{\"null\":792,\"credits\":16,\"gpa\":3.517036,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":100,\"cumcredits\":16,\"cumgpa\":3.517036,\"semorder\":13},{\"null\":793,\"credits\":14,\"gpa\":3.519151,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":100,\"cumcredits\":30,\"cumgpa\":3.518023,\"semorder\":14},{\"null\":794,\"credits\":16,\"gpa\":2.515105,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":100,\"cumcredits\":46,\"cumgpa\":3.169182,\"semorder\":15},{\"null\":795,\"credits\":16,\"gpa\":3.01709,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":100,\"cumcredits\":62,\"cumgpa\":3.129932,\"semorder\":16},{\"null\":796,\"credits\":16,\"gpa\":3.13577,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":100,\"cumcredits\":78,\"cumgpa\":3.13113,\"semorder\":17},{\"null\":797,\"credits\":18,\"gpa\":2.284629,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":100,\"cumcredits\":96,\"cumgpa\":2.972411,\"semorder\":18},{\"null\":798,\"credits\":13,\"gpa\":2.210902,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":100,\"cumcredits\":109,\"cumgpa\":2.881589,\"semorder\":19},{\"null\":799,\"credits\":18,\"gpa\":2.939617,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":100,\"cumcredits\":127,\"cumgpa\":2.889813,\"semorder\":20},{\"null\":800,\"credits\":16,\"gpa\":2.918466,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":101,\"cumcredits\":16,\"cumgpa\":2.918466,\"semorder\":13},{\"null\":801,\"credits\":16,\"gpa\":3.968467,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":101,\"cumcredits\":32,\"cumgpa\":3.443466,\"semorder\":14},{\"null\":802,\"credits\":18,\"gpa\":3.69732,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":101,\"cumcredits\":50,\"cumgpa\":3.534854,\"semorder\":15},{\"null\":803,\"credits\":17,\"gpa\":3.650975,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":101,\"cumcredits\":67,\"cumgpa\":3.564317,\"semorder\":16},{\"null\":804,\"credits\":12,\"gpa\":2.874197,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":101,\"cumcredits\":79,\"cumgpa\":3.459489,\"semorder\":17},{\"null\":805,\"credits\":18,\"gpa\":2.689955,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":101,\"cumcredits\":97,\"cumgpa\":3.316689,\"semorder\":18},{\"null\":806,\"credits\":16,\"gpa\":3.180338,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":101,\"cumcredits\":113,\"cumgpa\":3.297383,\"semorder\":19},{\"null\":807,\"credits\":18,\"gpa\":3.890344,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":101,\"cumcredits\":131,\"cumgpa\":3.378858,\"semorder\":20},{\"null\":808,\"credits\":14,\"gpa\":3.06046,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":102,\"cumcredits\":14,\"cumgpa\":3.06046,\"semorder\":13},{\"null\":809,\"credits\":16,\"gpa\":3.834344,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":102,\"cumcredits\":30,\"cumgpa\":3.473198,\"semorder\":14},{\"null\":810,\"credits\":15,\"gpa\":2.129967,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":102,\"cumcredits\":45,\"cumgpa\":3.025455,\"semorder\":15},{\"null\":811,\"credits\":18,\"gpa\":2.727808,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":102,\"cumcredits\":63,\"cumgpa\":2.940413,\"semorder\":16},{\"null\":812,\"credits\":16,\"gpa\":3.149941,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":102,\"cumcredits\":79,\"cumgpa\":2.982849,\"semorder\":17},{\"null\":813,\"credits\":15,\"gpa\":2.655146,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":102,\"cumcredits\":94,\"cumgpa\":2.930556,\"semorder\":18},{\"null\":814,\"credits\":15,\"gpa\":2.824668,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":102,\"cumcredits\":109,\"cumgpa\":2.915984,\"semorder\":19},{\"null\":815,\"credits\":15,\"gpa\":2.558806,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":102,\"cumcredits\":124,\"cumgpa\":2.872777,\"semorder\":20},{\"null\":816,\"credits\":15,\"gpa\":2.708784,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":103,\"cumcredits\":15,\"cumgpa\":2.708784,\"semorder\":13},{\"null\":817,\"credits\":14,\"gpa\":2.935778,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":103,\"cumcredits\":29,\"cumgpa\":2.818367,\"semorder\":14},{\"null\":818,\"credits\":13,\"gpa\":3.354618,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":103,\"cumcredits\":42,\"cumgpa\":2.98435,\"semorder\":15},{\"null\":819,\"credits\":13,\"gpa\":2.921911,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":103,\"cumcredits\":55,\"cumgpa\":2.969591,\"semorder\":16},{\"null\":820,\"credits\":18,\"gpa\":2.511095,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":103,\"cumcredits\":73,\"cumgpa\":2.856537,\"semorder\":17},{\"null\":821,\"credits\":15,\"gpa\":2.209798,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":103,\"cumcredits\":88,\"cumgpa\":2.746298,\"semorder\":18},{\"null\":822,\"credits\":13,\"gpa\":3.934125,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":103,\"cumcredits\":101,\"cumgpa\":2.899186,\"semorder\":19},{\"null\":823,\"credits\":13,\"gpa\":2.850106,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":103,\"cumcredits\":114,\"cumgpa\":2.89359,\"semorder\":20},{\"null\":824,\"credits\":17,\"gpa\":2.603392,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":104,\"cumcredits\":17,\"cumgpa\":2.603392,\"semorder\":13},{\"null\":825,\"credits\":13,\"gpa\":3.803669,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":104,\"cumcredits\":30,\"cumgpa\":3.123512,\"semorder\":14},{\"null\":826,\"credits\":18,\"gpa\":3.199782,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":104,\"cumcredits\":48,\"cumgpa\":3.152113,\"semorder\":15},{\"null\":827,\"credits\":12,\"gpa\":3.377743,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":104,\"cumcredits\":60,\"cumgpa\":3.197239,\"semorder\":16},{\"null\":828,\"credits\":16,\"gpa\":2.121604,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":104,\"cumcredits\":76,\"cumgpa\":2.97079,\"semorder\":17},{\"null\":829,\"credits\":18,\"gpa\":2.419921,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":104,\"cumcredits\":94,\"cumgpa\":2.865304,\"semorder\":18},{\"null\":830,\"credits\":17,\"gpa\":2.611005,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":104,\"cumcredits\":111,\"cumgpa\":2.826357,\"semorder\":19},{\"null\":831,\"credits\":13,\"gpa\":3.083155,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":104,\"cumcredits\":124,\"cumgpa\":2.85328,\"semorder\":20},{\"null\":832,\"credits\":18,\"gpa\":3.048579,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":105,\"cumcredits\":18,\"cumgpa\":3.048579,\"semorder\":13},{\"null\":833,\"credits\":14,\"gpa\":2.838578,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":105,\"cumcredits\":32,\"cumgpa\":2.956704,\"semorder\":14},{\"null\":834,\"credits\":13,\"gpa\":2.12391,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":105,\"cumcredits\":45,\"cumgpa\":2.716119,\"semorder\":15},{\"null\":835,\"credits\":13,\"gpa\":3.601267,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":105,\"cumcredits\":58,\"cumgpa\":2.914514,\"semorder\":16},{\"null\":836,\"credits\":14,\"gpa\":2.161683,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":105,\"cumcredits\":72,\"cumgpa\":2.76813,\"semorder\":17},{\"null\":837,\"credits\":14,\"gpa\":3.937948,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":105,\"cumcredits\":86,\"cumgpa\":2.958566,\"semorder\":18},{\"null\":838,\"credits\":18,\"gpa\":2.015275,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":105,\"cumcredits\":104,\"cumgpa\":2.795304,\"semorder\":19},{\"null\":839,\"credits\":13,\"gpa\":2.109867,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":105,\"cumcredits\":117,\"cumgpa\":2.719144,\"semorder\":20},{\"null\":840,\"credits\":13,\"gpa\":2.898052,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":106,\"cumcredits\":13,\"cumgpa\":2.898052,\"semorder\":13},{\"null\":841,\"credits\":18,\"gpa\":3.464781,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":106,\"cumcredits\":31,\"cumgpa\":3.227121,\"semorder\":14},{\"null\":842,\"credits\":12,\"gpa\":2.118776,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":106,\"cumcredits\":43,\"cumgpa\":2.917815,\"semorder\":15},{\"null\":843,\"credits\":17,\"gpa\":3.276003,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":106,\"cumcredits\":60,\"cumgpa\":3.019302,\"semorder\":16},{\"null\":844,\"credits\":18,\"gpa\":2.924214,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":106,\"cumcredits\":78,\"cumgpa\":2.997359,\"semorder\":17},{\"null\":845,\"credits\":17,\"gpa\":3.708147,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":106,\"cumcredits\":95,\"cumgpa\":3.124552,\"semorder\":18},{\"null\":846,\"credits\":15,\"gpa\":3.564663,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":106,\"cumcredits\":110,\"cumgpa\":3.184567,\"semorder\":19},{\"null\":847,\"credits\":16,\"gpa\":2.747268,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":106,\"cumcredits\":126,\"cumgpa\":3.129037,\"semorder\":20},{\"null\":848,\"credits\":18,\"gpa\":3.57836,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":107,\"cumcredits\":18,\"cumgpa\":3.57836,\"semorder\":13},{\"null\":849,\"credits\":12,\"gpa\":3.949113,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":107,\"cumcredits\":30,\"cumgpa\":3.726661,\"semorder\":14},{\"null\":850,\"credits\":16,\"gpa\":2.595293,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":107,\"cumcredits\":46,\"cumgpa\":3.333142,\"semorder\":15},{\"null\":851,\"credits\":16,\"gpa\":2.364492,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":107,\"cumcredits\":62,\"cumgpa\":3.083167,\"semorder\":16},{\"null\":852,\"credits\":15,\"gpa\":2.031801,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":107,\"cumcredits\":77,\"cumgpa\":2.878356,\"semorder\":17},{\"null\":853,\"credits\":18,\"gpa\":3.016379,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":107,\"cumcredits\":95,\"cumgpa\":2.904508,\"semorder\":18},{\"null\":854,\"credits\":15,\"gpa\":3.319995,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":107,\"cumcredits\":110,\"cumgpa\":2.961165,\"semorder\":19},{\"null\":855,\"credits\":14,\"gpa\":2.109078,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":107,\"cumcredits\":124,\"cumgpa\":2.864962,\"semorder\":20},{\"null\":856,\"credits\":15,\"gpa\":2.331842,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":108,\"cumcredits\":15,\"cumgpa\":2.331842,\"semorder\":13},{\"null\":857,\"credits\":13,\"gpa\":3.045517,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":108,\"cumcredits\":28,\"cumgpa\":2.663191,\"semorder\":14},{\"null\":858,\"credits\":17,\"gpa\":3.072198,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":108,\"cumcredits\":45,\"cumgpa\":2.817705,\"semorder\":15},{\"null\":859,\"credits\":15,\"gpa\":2.782277,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":108,\"cumcredits\":60,\"cumgpa\":2.808848,\"semorder\":16},{\"null\":860,\"credits\":14,\"gpa\":3.088197,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":108,\"cumcredits\":74,\"cumgpa\":2.861698,\"semorder\":17},{\"null\":861,\"credits\":16,\"gpa\":3.190194,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":108,\"cumcredits\":90,\"cumgpa\":2.920097,\"semorder\":18},{\"null\":862,\"credits\":16,\"gpa\":2.703767,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":108,\"cumcredits\":106,\"cumgpa\":2.887443,\"semorder\":19},{\"null\":863,\"credits\":12,\"gpa\":2.764012,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":108,\"cumcredits\":118,\"cumgpa\":2.874891,\"semorder\":20},{\"null\":864,\"credits\":17,\"gpa\":2.465581,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":109,\"cumcredits\":17,\"cumgpa\":2.465581,\"semorder\":13},{\"null\":865,\"credits\":14,\"gpa\":3.866721,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":109,\"cumcredits\":31,\"cumgpa\":3.098354,\"semorder\":14},{\"null\":866,\"credits\":16,\"gpa\":2.276606,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":109,\"cumcredits\":47,\"cumgpa\":2.81861,\"semorder\":15},{\"null\":867,\"credits\":13,\"gpa\":2.859648,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":109,\"cumcredits\":60,\"cumgpa\":2.827501,\"semorder\":16},{\"null\":868,\"credits\":14,\"gpa\":3.38737,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":109,\"cumcredits\":74,\"cumgpa\":2.933423,\"semorder\":17},{\"null\":869,\"credits\":13,\"gpa\":3.630471,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":109,\"cumcredits\":87,\"cumgpa\":3.037579,\"semorder\":18},{\"null\":870,\"credits\":16,\"gpa\":3.382846,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":109,\"cumcredits\":103,\"cumgpa\":3.091213,\"semorder\":19},{\"null\":871,\"credits\":12,\"gpa\":3.417061,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":109,\"cumcredits\":115,\"cumgpa\":3.125214,\"semorder\":20},{\"null\":872,\"credits\":13,\"gpa\":2.515736,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":110,\"cumcredits\":13,\"cumgpa\":2.515736,\"semorder\":13},{\"null\":873,\"credits\":17,\"gpa\":3.721177,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":110,\"cumcredits\":30,\"cumgpa\":3.198819,\"semorder\":14},{\"null\":874,\"credits\":14,\"gpa\":3.149966,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":110,\"cumcredits\":44,\"cumgpa\":3.183275,\"semorder\":15},{\"null\":875,\"credits\":18,\"gpa\":3.945992,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":110,\"cumcredits\":62,\"cumgpa\":3.404709,\"semorder\":16},{\"null\":876,\"credits\":13,\"gpa\":2.104064,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":110,\"cumcredits\":75,\"cumgpa\":3.179264,\"semorder\":17},{\"null\":877,\"credits\":16,\"gpa\":3.00761,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":110,\"cumcredits\":91,\"cumgpa\":3.149083,\"semorder\":18},{\"null\":878,\"credits\":17,\"gpa\":3.04321,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":110,\"cumcredits\":108,\"cumgpa\":3.132418,\"semorder\":19},{\"null\":879,\"credits\":15,\"gpa\":2.838999,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":110,\"cumcredits\":123,\"cumgpa\":3.096635,\"semorder\":20},{\"null\":880,\"credits\":17,\"gpa\":2.364318,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":111,\"cumcredits\":17,\"cumgpa\":2.364318,\"semorder\":13},{\"null\":881,\"credits\":18,\"gpa\":3.477728,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":111,\"cumcredits\":35,\"cumgpa\":2.936929,\"semorder\":14},{\"null\":882,\"credits\":14,\"gpa\":3.915335,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":111,\"cumcredits\":49,\"cumgpa\":3.216473,\"semorder\":15},{\"null\":883,\"credits\":17,\"gpa\":2.516793,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":111,\"cumcredits\":66,\"cumgpa\":3.036253,\"semorder\":16},{\"null\":884,\"credits\":15,\"gpa\":3.772993,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":111,\"cumcredits\":81,\"cumgpa\":3.172686,\"semorder\":17},{\"null\":885,\"credits\":17,\"gpa\":3.131551,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":111,\"cumcredits\":98,\"cumgpa\":3.16555,\"semorder\":18},{\"null\":886,\"credits\":15,\"gpa\":2.791756,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":111,\"cumcredits\":113,\"cumgpa\":3.115932,\"semorder\":19},{\"null\":887,\"credits\":12,\"gpa\":3.08855,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":111,\"cumcredits\":125,\"cumgpa\":3.113303,\"semorder\":20},{\"null\":888,\"credits\":12,\"gpa\":2.134514,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":112,\"cumcredits\":12,\"cumgpa\":2.134514,\"semorder\":13},{\"null\":889,\"credits\":14,\"gpa\":3.501243,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":112,\"cumcredits\":26,\"cumgpa\":2.870445,\"semorder\":14},{\"null\":890,\"credits\":14,\"gpa\":3.327141,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":112,\"cumcredits\":40,\"cumgpa\":3.030288,\"semorder\":15},{\"null\":891,\"credits\":16,\"gpa\":2.719545,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":112,\"cumcredits\":56,\"cumgpa\":2.941505,\"semorder\":16},{\"null\":892,\"credits\":18,\"gpa\":3.753702,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":112,\"cumcredits\":74,\"cumgpa\":3.139066,\"semorder\":17},{\"null\":893,\"credits\":13,\"gpa\":2.91157,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":112,\"cumcredits\":87,\"cumgpa\":3.105073,\"semorder\":18},{\"null\":894,\"credits\":15,\"gpa\":3.041393,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":112,\"cumcredits\":102,\"cumgpa\":3.095708,\"semorder\":19},{\"null\":895,\"credits\":15,\"gpa\":3.696436,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":112,\"cumcredits\":117,\"cumgpa\":3.172724,\"semorder\":20},{\"null\":896,\"credits\":17,\"gpa\":3.766964,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":113,\"cumcredits\":17,\"cumgpa\":3.766964,\"semorder\":13},{\"null\":897,\"credits\":18,\"gpa\":3.968984,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":113,\"cumcredits\":35,\"cumgpa\":3.87086,\"semorder\":14},{\"null\":898,\"credits\":18,\"gpa\":3.94197,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":113,\"cumcredits\":53,\"cumgpa\":3.895011,\"semorder\":15},{\"null\":899,\"credits\":13,\"gpa\":3.003473,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":113,\"cumcredits\":66,\"cumgpa\":3.719405,\"semorder\":16},{\"null\":900,\"credits\":14,\"gpa\":2.751779,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":113,\"cumcredits\":80,\"cumgpa\":3.55007,\"semorder\":17},{\"null\":901,\"credits\":18,\"gpa\":2.564681,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":113,\"cumcredits\":98,\"cumgpa\":3.36908,\"semorder\":18},{\"null\":902,\"credits\":16,\"gpa\":3.223944,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":113,\"cumcredits\":114,\"cumgpa\":3.34871,\"semorder\":19},{\"null\":903,\"credits\":13,\"gpa\":3.630265,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":113,\"cumcredits\":127,\"cumgpa\":3.377531,\"semorder\":20},{\"null\":904,\"credits\":16,\"gpa\":2.799382,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":114,\"cumcredits\":16,\"cumgpa\":2.799382,\"semorder\":13},{\"null\":905,\"credits\":16,\"gpa\":3.731294,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":114,\"cumcredits\":32,\"cumgpa\":3.265338,\"semorder\":14},{\"null\":906,\"credits\":13,\"gpa\":2.398069,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":114,\"cumcredits\":45,\"cumgpa\":3.014794,\"semorder\":15},{\"null\":907,\"credits\":16,\"gpa\":3.934232,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":114,\"cumcredits\":61,\"cumgpa\":3.255958,\"semorder\":16},{\"null\":908,\"credits\":12,\"gpa\":2.600645,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":114,\"cumcredits\":73,\"cumgpa\":3.148235,\"semorder\":17},{\"null\":909,\"credits\":13,\"gpa\":3.064218,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":114,\"cumcredits\":86,\"cumgpa\":3.135535,\"semorder\":18},{\"null\":910,\"credits\":13,\"gpa\":3.363814,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":114,\"cumcredits\":99,\"cumgpa\":3.165511,\"semorder\":19},{\"null\":911,\"credits\":13,\"gpa\":2.686112,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":114,\"cumcredits\":112,\"cumgpa\":3.109866,\"semorder\":20},{\"null\":912,\"credits\":16,\"gpa\":2.402453,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":115,\"cumcredits\":16,\"cumgpa\":2.402453,\"semorder\":13},{\"null\":913,\"credits\":13,\"gpa\":3.296338,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":115,\"cumcredits\":29,\"cumgpa\":2.80316,\"semorder\":14},{\"null\":914,\"credits\":16,\"gpa\":2.291974,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":115,\"cumcredits\":45,\"cumgpa\":2.621405,\"semorder\":15},{\"null\":915,\"credits\":13,\"gpa\":3.659878,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":115,\"cumcredits\":58,\"cumgpa\":2.854166,\"semorder\":16},{\"null\":916,\"credits\":14,\"gpa\":3.05101,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":115,\"cumcredits\":72,\"cumgpa\":2.892441,\"semorder\":17},{\"null\":917,\"credits\":17,\"gpa\":2.489611,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":115,\"cumcredits\":89,\"cumgpa\":2.815496,\"semorder\":18},{\"null\":918,\"credits\":17,\"gpa\":2.993661,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":115,\"cumcredits\":106,\"cumgpa\":2.84407,\"semorder\":19},{\"null\":919,\"credits\":14,\"gpa\":3.372147,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":115,\"cumcredits\":120,\"cumgpa\":2.905679,\"semorder\":20},{\"null\":920,\"credits\":14,\"gpa\":2.937331,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":116,\"cumcredits\":14,\"cumgpa\":2.937331,\"semorder\":13},{\"null\":921,\"credits\":15,\"gpa\":2.619694,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":116,\"cumcredits\":29,\"cumgpa\":2.773036,\"semorder\":14},{\"null\":922,\"credits\":16,\"gpa\":2.557196,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":116,\"cumcredits\":45,\"cumgpa\":2.696293,\"semorder\":15},{\"null\":923,\"credits\":17,\"gpa\":2.79606,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":116,\"cumcredits\":62,\"cumgpa\":2.723648,\"semorder\":16},{\"null\":924,\"credits\":14,\"gpa\":3.915183,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":116,\"cumcredits\":76,\"cumgpa\":2.943142,\"semorder\":17},{\"null\":925,\"credits\":16,\"gpa\":2.243195,\"major\":\"biology\",\"semester\":\"S12\",\"studentid\":116,\"cumcredits\":92,\"cumgpa\":2.821412,\"semorder\":18},{\"null\":926,\"credits\":12,\"gpa\":2.370063,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":116,\"cumcredits\":104,\"cumgpa\":2.769333,\"semorder\":19},{\"null\":927,\"credits\":14,\"gpa\":2.849534,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":116,\"cumcredits\":118,\"cumgpa\":2.778849,\"semorder\":20},{\"null\":928,\"credits\":13,\"gpa\":2.954072,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":117,\"cumcredits\":13,\"cumgpa\":2.954072,\"semorder\":13},{\"null\":929,\"credits\":14,\"gpa\":2.953168,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":117,\"cumcredits\":27,\"cumgpa\":2.953604,\"semorder\":14},{\"null\":930,\"credits\":14,\"gpa\":2.960465,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":117,\"cumcredits\":41,\"cumgpa\":2.955947,\"semorder\":15},{\"null\":931,\"credits\":18,\"gpa\":2.85555,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":117,\"cumcredits\":59,\"cumgpa\":2.925317,\"semorder\":16},{\"null\":932,\"credits\":13,\"gpa\":3.922334,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":117,\"cumcredits\":72,\"cumgpa\":3.105334,\"semorder\":17},{\"null\":933,\"credits\":16,\"gpa\":2.326868,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":117,\"cumcredits\":88,\"cumgpa\":2.963795,\"semorder\":18},{\"null\":934,\"credits\":14,\"gpa\":2.763447,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":117,\"cumcredits\":102,\"cumgpa\":2.936296,\"semorder\":19},{\"null\":935,\"credits\":12,\"gpa\":3.258974,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":117,\"cumcredits\":114,\"cumgpa\":2.970262,\"semorder\":20},{\"null\":936,\"credits\":12,\"gpa\":3.161825,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":118,\"cumcredits\":12,\"cumgpa\":3.161825,\"semorder\":13},{\"null\":937,\"credits\":17,\"gpa\":3.079699,\"major\":\"engineering\",\"semester\":\"S10\",\"studentid\":118,\"cumcredits\":29,\"cumgpa\":3.113682,\"semorder\":14},{\"null\":938,\"credits\":14,\"gpa\":3.111789,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":118,\"cumcredits\":43,\"cumgpa\":3.113066,\"semorder\":15},{\"null\":939,\"credits\":13,\"gpa\":3.318271,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":118,\"cumcredits\":56,\"cumgpa\":3.160703,\"semorder\":16},{\"null\":940,\"credits\":12,\"gpa\":2.58274,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":118,\"cumcredits\":68,\"cumgpa\":3.058709,\"semorder\":17},{\"null\":941,\"credits\":14,\"gpa\":2.039188,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":118,\"cumcredits\":82,\"cumgpa\":2.884645,\"semorder\":18},{\"null\":942,\"credits\":16,\"gpa\":3.242471,\"major\":\"biology\",\"semester\":\"F13\",\"studentid\":118,\"cumcredits\":98,\"cumgpa\":2.943065,\"semorder\":19},{\"null\":943,\"credits\":16,\"gpa\":2.164524,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":118,\"cumcredits\":114,\"cumgpa\":2.833796,\"semorder\":20},{\"null\":944,\"credits\":18,\"gpa\":3.360365,\"major\":\"geography\",\"semester\":\"F10\",\"studentid\":119,\"cumcredits\":18,\"cumgpa\":3.360365,\"semorder\":13},{\"null\":945,\"credits\":17,\"gpa\":3.939682,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":119,\"cumcredits\":35,\"cumgpa\":3.641747,\"semorder\":14},{\"null\":946,\"credits\":18,\"gpa\":3.418946,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":119,\"cumcredits\":53,\"cumgpa\":3.566079,\"semorder\":15},{\"null\":947,\"credits\":12,\"gpa\":2.529788,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":119,\"cumcredits\":65,\"cumgpa\":3.374764,\"semorder\":16},{\"null\":948,\"credits\":16,\"gpa\":2.552756,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":119,\"cumcredits\":81,\"cumgpa\":3.212392,\"semorder\":17},{\"null\":949,\"credits\":12,\"gpa\":3.837993,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":119,\"cumcredits\":93,\"cumgpa\":3.293114,\"semorder\":18},{\"null\":950,\"credits\":15,\"gpa\":3.814598,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":119,\"cumcredits\":108,\"cumgpa\":3.365543,\"semorder\":19},{\"null\":951,\"credits\":15,\"gpa\":2.605272,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":119,\"cumcredits\":123,\"cumgpa\":3.272827,\"semorder\":20},{\"null\":952,\"credits\":12,\"gpa\":3.949361,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":120,\"cumcredits\":12,\"cumgpa\":3.949361,\"semorder\":13},{\"null\":953,\"credits\":18,\"gpa\":2.844555,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":120,\"cumcredits\":30,\"cumgpa\":3.286477,\"semorder\":14},{\"null\":954,\"credits\":18,\"gpa\":2.383477,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":120,\"cumcredits\":48,\"cumgpa\":2.947852,\"semorder\":15},{\"null\":955,\"credits\":12,\"gpa\":2.854892,\"major\":\"biology\",\"semester\":\"S11\",\"studentid\":120,\"cumcredits\":60,\"cumgpa\":2.92926,\"semorder\":16},{\"null\":956,\"credits\":16,\"gpa\":2.829008,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":120,\"cumcredits\":76,\"cumgpa\":2.908154,\"semorder\":17},{\"null\":957,\"credits\":14,\"gpa\":3.304443,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":120,\"cumcredits\":90,\"cumgpa\":2.969799,\"semorder\":18},{\"null\":958,\"credits\":14,\"gpa\":2.973742,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":120,\"cumcredits\":104,\"cumgpa\":2.97033,\"semorder\":19},{\"null\":959,\"credits\":17,\"gpa\":3.328771,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":120,\"cumcredits\":121,\"cumgpa\":3.02069,\"semorder\":20},{\"null\":960,\"credits\":15,\"gpa\":3.224349,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":121,\"cumcredits\":15,\"cumgpa\":3.224349,\"semorder\":13},{\"null\":961,\"credits\":16,\"gpa\":3.558427,\"major\":\"polisci\",\"semester\":\"S10\",\"studentid\":121,\"cumcredits\":31,\"cumgpa\":3.396776,\"semorder\":14},{\"null\":962,\"credits\":14,\"gpa\":3.525413,\"major\":\"polisci\",\"semester\":\"F11\",\"studentid\":121,\"cumcredits\":45,\"cumgpa\":3.436797,\"semorder\":15},{\"null\":963,\"credits\":16,\"gpa\":2.659849,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":121,\"cumcredits\":61,\"cumgpa\":3.233007,\"semorder\":16},{\"null\":964,\"credits\":12,\"gpa\":2.295963,\"major\":\"biology\",\"semester\":\"F12\",\"studentid\":121,\"cumcredits\":73,\"cumgpa\":3.078973,\"semorder\":17},{\"null\":965,\"credits\":16,\"gpa\":3.187684,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":121,\"cumcredits\":89,\"cumgpa\":3.098516,\"semorder\":18},{\"null\":966,\"credits\":12,\"gpa\":2.843627,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":121,\"cumcredits\":101,\"cumgpa\":3.068232,\"semorder\":19},{\"null\":967,\"credits\":12,\"gpa\":3.270302,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":121,\"cumcredits\":113,\"cumgpa\":3.089691,\"semorder\":20},{\"null\":968,\"credits\":12,\"gpa\":3.17161,\"major\":\"engineering\",\"semester\":\"F10\",\"studentid\":122,\"cumcredits\":12,\"cumgpa\":3.17161,\"semorder\":13},{\"null\":969,\"credits\":18,\"gpa\":3.982017,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":122,\"cumcredits\":30,\"cumgpa\":3.657854,\"semorder\":14},{\"null\":970,\"credits\":14,\"gpa\":3.618081,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":122,\"cumcredits\":44,\"cumgpa\":3.645199,\"semorder\":15},{\"null\":971,\"credits\":13,\"gpa\":3.602699,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":122,\"cumcredits\":57,\"cumgpa\":3.635506,\"semorder\":16},{\"null\":972,\"credits\":12,\"gpa\":2.018866,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":122,\"cumcredits\":69,\"cumgpa\":3.354351,\"semorder\":17},{\"null\":973,\"credits\":16,\"gpa\":3.767892,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":122,\"cumcredits\":85,\"cumgpa\":3.432194,\"semorder\":18},{\"null\":974,\"credits\":18,\"gpa\":2.134489,\"major\":\"polisci\",\"semester\":\"F13\",\"studentid\":122,\"cumcredits\":103,\"cumgpa\":3.205411,\"semorder\":19},{\"null\":975,\"credits\":15,\"gpa\":2.638259,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":122,\"cumcredits\":118,\"cumgpa\":3.133315,\"semorder\":20},{\"null\":976,\"credits\":18,\"gpa\":2.790437,\"major\":\"biology\",\"semester\":\"F10\",\"studentid\":123,\"cumcredits\":18,\"cumgpa\":2.790437,\"semorder\":13},{\"null\":977,\"credits\":17,\"gpa\":2.935675,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":123,\"cumcredits\":35,\"cumgpa\":2.860981,\"semorder\":14},{\"null\":978,\"credits\":18,\"gpa\":3.468934,\"major\":\"engineering\",\"semester\":\"F11\",\"studentid\":123,\"cumcredits\":53,\"cumgpa\":3.067456,\"semorder\":15},{\"null\":979,\"credits\":18,\"gpa\":2.507178,\"major\":\"polisci\",\"semester\":\"S11\",\"studentid\":123,\"cumcredits\":71,\"cumgpa\":2.925414,\"semorder\":16},{\"null\":980,\"credits\":14,\"gpa\":2.057532,\"major\":\"polisci\",\"semester\":\"F12\",\"studentid\":123,\"cumcredits\":85,\"cumgpa\":2.782469,\"semorder\":17},{\"null\":981,\"credits\":18,\"gpa\":2.613808,\"major\":\"polisci\",\"semester\":\"S12\",\"studentid\":123,\"cumcredits\":103,\"cumgpa\":2.752994,\"semorder\":18},{\"null\":982,\"credits\":13,\"gpa\":3.922899,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":123,\"cumcredits\":116,\"cumgpa\":2.884104,\"semorder\":19},{\"null\":983,\"credits\":14,\"gpa\":3.167668,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":123,\"cumcredits\":130,\"cumgpa\":2.914642,\"semorder\":20},{\"null\":984,\"credits\":14,\"gpa\":2.53159,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":124,\"cumcredits\":14,\"cumgpa\":2.53159,\"semorder\":13},{\"null\":985,\"credits\":14,\"gpa\":2.06198,\"major\":\"biology\",\"semester\":\"S10\",\"studentid\":124,\"cumcredits\":28,\"cumgpa\":2.296785,\"semorder\":14},{\"null\":986,\"credits\":13,\"gpa\":3.513941,\"major\":\"biology\",\"semester\":\"F11\",\"studentid\":124,\"cumcredits\":41,\"cumgpa\":2.682713,\"semorder\":15},{\"null\":987,\"credits\":18,\"gpa\":2.527532,\"major\":\"engineering\",\"semester\":\"S11\",\"studentid\":124,\"cumcredits\":59,\"cumgpa\":2.63537,\"semorder\":16},{\"null\":988,\"credits\":17,\"gpa\":2.539505,\"major\":\"engineering\",\"semester\":\"F12\",\"studentid\":124,\"cumcredits\":76,\"cumgpa\":2.613926,\"semorder\":17},{\"null\":989,\"credits\":15,\"gpa\":3.539149,\"major\":\"geography\",\"semester\":\"S12\",\"studentid\":124,\"cumcredits\":91,\"cumgpa\":2.766435,\"semorder\":18},{\"null\":990,\"credits\":12,\"gpa\":2.387103,\"major\":\"geography\",\"semester\":\"F13\",\"studentid\":124,\"cumcredits\":103,\"cumgpa\":2.722241,\"semorder\":19},{\"null\":991,\"credits\":14,\"gpa\":2.857008,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":124,\"cumcredits\":117,\"cumgpa\":2.738367,\"semorder\":20},{\"null\":992,\"credits\":12,\"gpa\":3.725688,\"major\":\"polisci\",\"semester\":\"F10\",\"studentid\":125,\"cumcredits\":12,\"cumgpa\":3.725688,\"semorder\":13},{\"null\":993,\"credits\":17,\"gpa\":3.525533,\"major\":\"geography\",\"semester\":\"S10\",\"studentid\":125,\"cumcredits\":29,\"cumgpa\":3.608355,\"semorder\":14},{\"null\":994,\"credits\":14,\"gpa\":2.434716,\"major\":\"geography\",\"semester\":\"F11\",\"studentid\":125,\"cumcredits\":43,\"cumgpa\":3.22624,\"semorder\":15},{\"null\":995,\"credits\":15,\"gpa\":3.6273,\"major\":\"geography\",\"semester\":\"S11\",\"studentid\":125,\"cumcredits\":58,\"cumgpa\":3.329963,\"semorder\":16},{\"null\":996,\"credits\":17,\"gpa\":3.526858,\"major\":\"geography\",\"semester\":\"F12\",\"studentid\":125,\"cumcredits\":75,\"cumgpa\":3.374592,\"semorder\":17},{\"null\":997,\"credits\":14,\"gpa\":3.523341,\"major\":\"engineering\",\"semester\":\"S12\",\"studentid\":125,\"cumcredits\":89,\"cumgpa\":3.397991,\"semorder\":18},{\"null\":998,\"credits\":12,\"gpa\":3.729964,\"major\":\"engineering\",\"semester\":\"F13\",\"studentid\":125,\"cumcredits\":101,\"cumgpa\":3.437433,\"semorder\":19},{\"null\":999,\"credits\":18,\"gpa\":3.510772,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":125,\"cumcredits\":119,\"cumgpa\":3.448526,\"semorder\":20}], [{\"field\": null, \"type\": \"Integer\"}, {\"field\": \"credits\", \"type\": \"Integer\"}, {\"field\": \"gpa\", \"type\": \"Float\"}, {\"field\": \"major\"}, {\"field\": \"semester\"}, {\"field\": \"studentid\", \"type\": \"Integer\"}, {\"field\": \"cumcredits\", \"type\": \"Integer\"}, {\"field\": \"cumgpa\", \"type\": \"Float\"}, {\"field\": \"semorder\", \"type\": \"Integer\"}]);\n",
" grid.initialize_slick_grid();\n",
" });\n",
" });\n",
"});"
],
"metadata": {},
"output_type": "display_data"
}
],
"prompt_number": 4
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"From here, we can identify first and last semesters, etc. with `groupby` methods. Let's say we only want the student's last semester at TCU. In the above example, the order value will always be 20 but yours will be more complex. So, instead we take the maximum value for each student. "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"dfmax = df1.groupby('studentid', as_index = False).apply(lambda x: x[x['semorder'] == x['semorder'].max()])\n",
"\n",
"show_grid(dfmax, remote_js = True)\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<script type=\"text/javascript\">\n",
"if ($(\"#dg-css\").length == 0){\n",
" $(\"head\").append([\n",
" \"<link href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.grid.css' rel='stylesheet'>\",\n",
" \"<link href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick-default-theme.css' rel='stylesheet'>\",\n",
" \"<link href='http://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.4/css/jquery-ui.min.css' rel='stylesheet'>\",\n",
" \"<link id='dg-css' href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.css' rel='stylesheet'>\"\n",
" ]);\n",
"}\n",
"</script>\n",
"<div class='q-grid-container'>\n",
"<div id='3bf0dbe6-d99d-4cfc-b1eb-c9ef16cc2a4f' class='q-grid'></div>\n",
"</div>"
],
"metadata": {},
"output_type": "display_data"
},
{
"javascript": [
"var path_dictionary = {\n",
" jquery_drag: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/jquery.event.drag-2.2\",\n",
" slick_core: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.core.2.2\",\n",
" slick_data_view: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.dataview.2.2\",\n",
" slick_grid: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.grid.2.2\",\n",
" data_grid: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid\",\n",
" date_filter: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.datefilter\",\n",
" slider_filter: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.sliderfilter\",\n",
" filter_base: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.filterbase\",\n",
" handlebars: \"https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0/handlebars.min\"\n",
"};\n",
"\n",
"var existing_config = require.s.contexts._.config;\n",
"if (!existing_config.paths['underscore']){\n",
" path_dictionary['underscore'] = \"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min\";\n",
"}\n",
"\n",
"if (!existing_config.paths['moment']){\n",
" path_dictionary['moment'] = \"https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.3/moment.min\";\n",
"}\n",
"\n",
"if (!existing_config.paths['jqueryui']){\n",
" path_dictionary['jqueryui'] = \"https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min\";\n",
"}\n",
"\n",
"require.config({\n",
" paths: path_dictionary\n",
"});\n",
"\n",
"if (typeof jQuery === 'function') {\n",
" define('jquery', function() { return jQuery; });\n",
"}\n",
"\n",
"require([\n",
" 'jquery',\n",
" 'jquery_drag',\n",
" 'slick_core',\n",
" 'slick_data_view'\n",
"],\n",
"function($){\n",
" $('#3bf0dbe6-d99d-4cfc-b1eb-c9ef16cc2a4f').closest('.rendered_html').removeClass('rendered_html');\n",
" require(['slick_grid'], function(){\n",
" require([\"data_grid\"], function(dgrid){\n",
" var grid = new dgrid.QGrid('#3bf0dbe6-d99d-4cfc-b1eb-c9ef16cc2a4f', [{\"level_0\":0,\"level_1\":7,\"credits\":12,\"gpa\":2.738838,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":1,\"cumcredits\":115,\"cumgpa\":3.010871,\"semorder\":20},{\"level_0\":1,\"level_1\":15,\"credits\":17,\"gpa\":2.01182,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":2,\"cumcredits\":120,\"cumgpa\":2.860161,\"semorder\":20},{\"level_0\":2,\"level_1\":23,\"credits\":13,\"gpa\":3.140741,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":3,\"cumcredits\":117,\"cumgpa\":2.974278,\"semorder\":20},{\"level_0\":3,\"level_1\":31,\"credits\":12,\"gpa\":2.18144,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":4,\"cumcredits\":122,\"cumgpa\":3.211453,\"semorder\":20},{\"level_0\":4,\"level_1\":39,\"credits\":13,\"gpa\":3.002588,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":5,\"cumcredits\":116,\"cumgpa\":3.056641,\"semorder\":20},{\"level_0\":5,\"level_1\":47,\"credits\":18,\"gpa\":3.808112,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":6,\"cumcredits\":128,\"cumgpa\":2.726396,\"semorder\":20},{\"level_0\":6,\"level_1\":55,\"credits\":12,\"gpa\":2.108963,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":7,\"cumcredits\":114,\"cumgpa\":2.975498,\"semorder\":20},{\"level_0\":7,\"level_1\":63,\"credits\":17,\"gpa\":3.709812,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":8,\"cumcredits\":131,\"cumgpa\":3.356332,\"semorder\":20},{\"level_0\":8,\"level_1\":71,\"credits\":15,\"gpa\":2.032442,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":9,\"cumcredits\":114,\"cumgpa\":2.957899,\"semorder\":20},{\"level_0\":9,\"level_1\":79,\"credits\":18,\"gpa\":2.400975,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":10,\"cumcredits\":130,\"cumgpa\":2.781251,\"semorder\":20},{\"level_0\":10,\"level_1\":87,\"credits\":17,\"gpa\":2.305475,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":11,\"cumcredits\":121,\"cumgpa\":2.832297,\"semorder\":20},{\"level_0\":11,\"level_1\":95,\"credits\":17,\"gpa\":3.116521,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":12,\"cumcredits\":122,\"cumgpa\":2.71145,\"semorder\":20},{\"level_0\":12,\"level_1\":103,\"credits\":13,\"gpa\":3.975786,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":13,\"cumcredits\":129,\"cumgpa\":3.265076,\"semorder\":20},{\"level_0\":13,\"level_1\":111,\"credits\":18,\"gpa\":2.192757,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":14,\"cumcredits\":119,\"cumgpa\":2.515507,\"semorder\":20},{\"level_0\":14,\"level_1\":119,\"credits\":12,\"gpa\":2.828075,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":15,\"cumcredits\":117,\"cumgpa\":2.784494,\"semorder\":20},{\"level_0\":15,\"level_1\":127,\"credits\":17,\"gpa\":2.33115,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":16,\"cumcredits\":122,\"cumgpa\":2.601707,\"semorder\":20},{\"level_0\":16,\"level_1\":135,\"credits\":13,\"gpa\":3.176639,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":17,\"cumcredits\":113,\"cumgpa\":2.851033,\"semorder\":20},{\"level_0\":17,\"level_1\":143,\"credits\":15,\"gpa\":3.581762,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":18,\"cumcredits\":128,\"cumgpa\":3.540533,\"semorder\":20},{\"level_0\":18,\"level_1\":151,\"credits\":15,\"gpa\":2.998279,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":19,\"cumcredits\":111,\"cumgpa\":2.65168,\"semorder\":20},{\"level_0\":19,\"level_1\":159,\"credits\":17,\"gpa\":2.393747,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":20,\"cumcredits\":132,\"cumgpa\":2.911747,\"semorder\":20},{\"level_0\":20,\"level_1\":167,\"credits\":12,\"gpa\":3.086025,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":21,\"cumcredits\":114,\"cumgpa\":3.07447,\"semorder\":20},{\"level_0\":21,\"level_1\":175,\"credits\":15,\"gpa\":2.762778,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":22,\"cumcredits\":120,\"cumgpa\":2.941345,\"semorder\":20},{\"level_0\":22,\"level_1\":183,\"credits\":18,\"gpa\":2.855415,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":23,\"cumcredits\":130,\"cumgpa\":3.180386,\"semorder\":20},{\"level_0\":23,\"level_1\":191,\"credits\":13,\"gpa\":2.844689,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":24,\"cumcredits\":116,\"cumgpa\":3.132657,\"semorder\":20},{\"level_0\":24,\"level_1\":199,\"credits\":18,\"gpa\":3.707619,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":25,\"cumcredits\":123,\"cumgpa\":3.052612,\"semorder\":20},{\"level_0\":25,\"level_1\":207,\"credits\":16,\"gpa\":2.228137,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":26,\"cumcredits\":123,\"cumgpa\":2.761035,\"semorder\":20},{\"level_0\":26,\"level_1\":215,\"credits\":14,\"gpa\":2.588353,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":27,\"cumcredits\":125,\"cumgpa\":3.074093,\"semorder\":20},{\"level_0\":27,\"level_1\":223,\"credits\":16,\"gpa\":2.177495,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":28,\"cumcredits\":123,\"cumgpa\":2.926772,\"semorder\":20},{\"level_0\":28,\"level_1\":231,\"credits\":13,\"gpa\":2.108164,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":29,\"cumcredits\":118,\"cumgpa\":3.251339,\"semorder\":20},{\"level_0\":29,\"level_1\":239,\"credits\":15,\"gpa\":3.532662,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":30,\"cumcredits\":124,\"cumgpa\":3.017204,\"semorder\":20},{\"level_0\":30,\"level_1\":247,\"credits\":15,\"gpa\":2.795024,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":31,\"cumcredits\":114,\"cumgpa\":2.935963,\"semorder\":20},{\"level_0\":31,\"level_1\":255,\"credits\":16,\"gpa\":3.480051,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":32,\"cumcredits\":121,\"cumgpa\":3.168518,\"semorder\":20},{\"level_0\":32,\"level_1\":263,\"credits\":16,\"gpa\":3.019487,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":33,\"cumcredits\":129,\"cumgpa\":3.05549,\"semorder\":20},{\"level_0\":33,\"level_1\":271,\"credits\":14,\"gpa\":2.14852,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":34,\"cumcredits\":126,\"cumgpa\":3.264234,\"semorder\":20},{\"level_0\":34,\"level_1\":279,\"credits\":15,\"gpa\":2.843382,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":35,\"cumcredits\":121,\"cumgpa\":3.017938,\"semorder\":20},{\"level_0\":35,\"level_1\":287,\"credits\":15,\"gpa\":2.619855,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":36,\"cumcredits\":116,\"cumgpa\":3.163333,\"semorder\":20},{\"level_0\":36,\"level_1\":295,\"credits\":13,\"gpa\":3.329802,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":37,\"cumcredits\":117,\"cumgpa\":2.674611,\"semorder\":20},{\"level_0\":37,\"level_1\":303,\"credits\":12,\"gpa\":3.518419,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":38,\"cumcredits\":105,\"cumgpa\":3.015962,\"semorder\":20},{\"level_0\":38,\"level_1\":311,\"credits\":15,\"gpa\":3.633335,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":39,\"cumcredits\":124,\"cumgpa\":2.930397,\"semorder\":20},{\"level_0\":39,\"level_1\":319,\"credits\":17,\"gpa\":3.525627,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":40,\"cumcredits\":119,\"cumgpa\":3.378654,\"semorder\":20},{\"level_0\":40,\"level_1\":327,\"credits\":18,\"gpa\":3.688601,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":41,\"cumcredits\":129,\"cumgpa\":3.170903,\"semorder\":20},{\"level_0\":41,\"level_1\":335,\"credits\":15,\"gpa\":3.866482,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":42,\"cumcredits\":130,\"cumgpa\":3.35865,\"semorder\":20},{\"level_0\":42,\"level_1\":343,\"credits\":12,\"gpa\":2.321027,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":43,\"cumcredits\":110,\"cumgpa\":2.702488,\"semorder\":20},{\"level_0\":43,\"level_1\":351,\"credits\":17,\"gpa\":3.166259,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":44,\"cumcredits\":119,\"cumgpa\":2.776943,\"semorder\":20},{\"level_0\":44,\"level_1\":359,\"credits\":17,\"gpa\":2.281046,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":45,\"cumcredits\":125,\"cumgpa\":2.780042,\"semorder\":20},{\"level_0\":45,\"level_1\":367,\"credits\":13,\"gpa\":2.485247,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":46,\"cumcredits\":123,\"cumgpa\":2.830471,\"semorder\":20},{\"level_0\":46,\"level_1\":375,\"credits\":15,\"gpa\":3.485355,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":47,\"cumcredits\":126,\"cumgpa\":3.295356,\"semorder\":20},{\"level_0\":47,\"level_1\":383,\"credits\":13,\"gpa\":3.977165,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":48,\"cumcredits\":121,\"cumgpa\":3.165716,\"semorder\":20},{\"level_0\":48,\"level_1\":391,\"credits\":17,\"gpa\":2.09365,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":49,\"cumcredits\":112,\"cumgpa\":2.700479,\"semorder\":20},{\"level_0\":49,\"level_1\":399,\"credits\":17,\"gpa\":3.855905,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":50,\"cumcredits\":117,\"cumgpa\":3.105867,\"semorder\":20},{\"level_0\":50,\"level_1\":407,\"credits\":14,\"gpa\":3.684605,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":51,\"cumcredits\":126,\"cumgpa\":3.270418,\"semorder\":20},{\"level_0\":51,\"level_1\":415,\"credits\":16,\"gpa\":3.535655,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":52,\"cumcredits\":126,\"cumgpa\":2.977028,\"semorder\":20},{\"level_0\":52,\"level_1\":423,\"credits\":18,\"gpa\":3.459529,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":53,\"cumcredits\":116,\"cumgpa\":3.176112,\"semorder\":20},{\"level_0\":53,\"level_1\":431,\"credits\":14,\"gpa\":3.643885,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":54,\"cumcredits\":115,\"cumgpa\":3.106292,\"semorder\":20},{\"level_0\":54,\"level_1\":439,\"credits\":16,\"gpa\":2.928447,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":55,\"cumcredits\":118,\"cumgpa\":3.129355,\"semorder\":20},{\"level_0\":55,\"level_1\":447,\"credits\":12,\"gpa\":3.85635,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":56,\"cumcredits\":119,\"cumgpa\":3.216116,\"semorder\":20},{\"level_0\":56,\"level_1\":455,\"credits\":15,\"gpa\":2.945505,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":57,\"cumcredits\":117,\"cumgpa\":3.001647,\"semorder\":20},{\"level_0\":57,\"level_1\":463,\"credits\":16,\"gpa\":3.261173,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":58,\"cumcredits\":117,\"cumgpa\":3.311914,\"semorder\":20},{\"level_0\":58,\"level_1\":471,\"credits\":13,\"gpa\":2.900306,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":59,\"cumcredits\":108,\"cumgpa\":3.373648,\"semorder\":20},{\"level_0\":59,\"level_1\":479,\"credits\":12,\"gpa\":3.20177,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":60,\"cumcredits\":119,\"cumgpa\":3.474422,\"semorder\":20},{\"level_0\":60,\"level_1\":487,\"credits\":18,\"gpa\":3.917658,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":61,\"cumcredits\":120,\"cumgpa\":3.135626,\"semorder\":20},{\"level_0\":61,\"level_1\":495,\"credits\":17,\"gpa\":2.68139,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":62,\"cumcredits\":125,\"cumgpa\":3.06927,\"semorder\":20},{\"level_0\":62,\"level_1\":503,\"credits\":17,\"gpa\":2.120638,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":63,\"cumcredits\":122,\"cumgpa\":2.809982,\"semorder\":20},{\"level_0\":63,\"level_1\":511,\"credits\":12,\"gpa\":3.715756,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":64,\"cumcredits\":112,\"cumgpa\":3.400132,\"semorder\":20},{\"level_0\":64,\"level_1\":519,\"credits\":17,\"gpa\":3.78388,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":65,\"cumcredits\":121,\"cumgpa\":3.038962,\"semorder\":20},{\"level_0\":65,\"level_1\":527,\"credits\":13,\"gpa\":3.219912,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":66,\"cumcredits\":121,\"cumgpa\":3.056588,\"semorder\":20},{\"level_0\":66,\"level_1\":535,\"credits\":16,\"gpa\":2.989748,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":67,\"cumcredits\":121,\"cumgpa\":2.883652,\"semorder\":20},{\"level_0\":67,\"level_1\":543,\"credits\":16,\"gpa\":3.447623,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":68,\"cumcredits\":119,\"cumgpa\":2.991811,\"semorder\":20},{\"level_0\":68,\"level_1\":551,\"credits\":14,\"gpa\":3.317239,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":69,\"cumcredits\":120,\"cumgpa\":2.943512,\"semorder\":20},{\"level_0\":69,\"level_1\":559,\"credits\":13,\"gpa\":2.209778,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":70,\"cumcredits\":122,\"cumgpa\":3.252257,\"semorder\":20},{\"level_0\":70,\"level_1\":567,\"credits\":17,\"gpa\":2.993753,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":71,\"cumcredits\":113,\"cumgpa\":2.987082,\"semorder\":20},{\"level_0\":71,\"level_1\":575,\"credits\":16,\"gpa\":3.138018,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":72,\"cumcredits\":123,\"cumgpa\":2.817817,\"semorder\":20},{\"level_0\":72,\"level_1\":583,\"credits\":12,\"gpa\":3.643435,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":73,\"cumcredits\":115,\"cumgpa\":3.129266,\"semorder\":20},{\"level_0\":73,\"level_1\":591,\"credits\":15,\"gpa\":2.53565,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":74,\"cumcredits\":119,\"cumgpa\":2.936064,\"semorder\":20},{\"level_0\":74,\"level_1\":599,\"credits\":17,\"gpa\":3.76518,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":75,\"cumcredits\":127,\"cumgpa\":3.080314,\"semorder\":20},{\"level_0\":75,\"level_1\":607,\"credits\":14,\"gpa\":3.822392,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":76,\"cumcredits\":112,\"cumgpa\":2.986355,\"semorder\":20},{\"level_0\":76,\"level_1\":615,\"credits\":12,\"gpa\":2.612093,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":77,\"cumcredits\":125,\"cumgpa\":2.749017,\"semorder\":20},{\"level_0\":77,\"level_1\":623,\"credits\":13,\"gpa\":3.803072,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":78,\"cumcredits\":122,\"cumgpa\":3.069227,\"semorder\":20},{\"level_0\":78,\"level_1\":631,\"credits\":12,\"gpa\":2.961519,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":79,\"cumcredits\":118,\"cumgpa\":2.981824,\"semorder\":20},{\"level_0\":79,\"level_1\":639,\"credits\":15,\"gpa\":3.048055,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":80,\"cumcredits\":124,\"cumgpa\":3.41511,\"semorder\":20},{\"level_0\":80,\"level_1\":647,\"credits\":12,\"gpa\":2.707522,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":81,\"cumcredits\":123,\"cumgpa\":2.628945,\"semorder\":20},{\"level_0\":81,\"level_1\":655,\"credits\":18,\"gpa\":2.053418,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":82,\"cumcredits\":123,\"cumgpa\":2.81792,\"semorder\":20},{\"level_0\":82,\"level_1\":663,\"credits\":12,\"gpa\":3.668511,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":83,\"cumcredits\":120,\"cumgpa\":3.164404,\"semorder\":20},{\"level_0\":83,\"level_1\":671,\"credits\":15,\"gpa\":3.732838,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":84,\"cumcredits\":117,\"cumgpa\":2.827928,\"semorder\":20},{\"level_0\":84,\"level_1\":679,\"credits\":14,\"gpa\":2.595065,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":85,\"cumcredits\":126,\"cumgpa\":3.248731,\"semorder\":20},{\"level_0\":85,\"level_1\":687,\"credits\":15,\"gpa\":3.180487,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":86,\"cumcredits\":121,\"cumgpa\":3.162283,\"semorder\":20},{\"level_0\":86,\"level_1\":695,\"credits\":13,\"gpa\":3.827169,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":87,\"cumcredits\":118,\"cumgpa\":3.23345,\"semorder\":20},{\"level_0\":87,\"level_1\":703,\"credits\":16,\"gpa\":2.967361,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":88,\"cumcredits\":121,\"cumgpa\":3.025793,\"semorder\":20},{\"level_0\":88,\"level_1\":711,\"credits\":15,\"gpa\":2.59168,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":89,\"cumcredits\":119,\"cumgpa\":2.92205,\"semorder\":20},{\"level_0\":89,\"level_1\":719,\"credits\":14,\"gpa\":2.963932,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":90,\"cumcredits\":109,\"cumgpa\":3.289475,\"semorder\":20},{\"level_0\":90,\"level_1\":727,\"credits\":13,\"gpa\":2.653418,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":91,\"cumcredits\":112,\"cumgpa\":3.132113,\"semorder\":20},{\"level_0\":91,\"level_1\":735,\"credits\":14,\"gpa\":3.781397,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":92,\"cumcredits\":122,\"cumgpa\":3.134067,\"semorder\":20},{\"level_0\":92,\"level_1\":743,\"credits\":12,\"gpa\":3.026135,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":93,\"cumcredits\":113,\"cumgpa\":3.116261,\"semorder\":20},{\"level_0\":93,\"level_1\":751,\"credits\":16,\"gpa\":3.132032,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":94,\"cumcredits\":131,\"cumgpa\":3.110664,\"semorder\":20},{\"level_0\":94,\"level_1\":759,\"credits\":12,\"gpa\":2.217312,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":95,\"cumcredits\":111,\"cumgpa\":2.925866,\"semorder\":20},{\"level_0\":95,\"level_1\":767,\"credits\":14,\"gpa\":2.065463,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":96,\"cumcredits\":131,\"cumgpa\":2.921497,\"semorder\":20},{\"level_0\":96,\"level_1\":775,\"credits\":14,\"gpa\":3.509282,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":97,\"cumcredits\":122,\"cumgpa\":3.082937,\"semorder\":20},{\"level_0\":97,\"level_1\":783,\"credits\":12,\"gpa\":3.377156,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":98,\"cumcredits\":123,\"cumgpa\":3.202252,\"semorder\":20},{\"level_0\":98,\"level_1\":791,\"credits\":13,\"gpa\":2.261108,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":99,\"cumcredits\":126,\"cumgpa\":3.344782,\"semorder\":20},{\"level_0\":99,\"level_1\":799,\"credits\":18,\"gpa\":2.939617,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":100,\"cumcredits\":127,\"cumgpa\":2.889813,\"semorder\":20},{\"level_0\":100,\"level_1\":807,\"credits\":18,\"gpa\":3.890344,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":101,\"cumcredits\":131,\"cumgpa\":3.378858,\"semorder\":20},{\"level_0\":101,\"level_1\":815,\"credits\":15,\"gpa\":2.558806,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":102,\"cumcredits\":124,\"cumgpa\":2.872777,\"semorder\":20},{\"level_0\":102,\"level_1\":823,\"credits\":13,\"gpa\":2.850106,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":103,\"cumcredits\":114,\"cumgpa\":2.89359,\"semorder\":20},{\"level_0\":103,\"level_1\":831,\"credits\":13,\"gpa\":3.083155,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":104,\"cumcredits\":124,\"cumgpa\":2.85328,\"semorder\":20},{\"level_0\":104,\"level_1\":839,\"credits\":13,\"gpa\":2.109867,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":105,\"cumcredits\":117,\"cumgpa\":2.719144,\"semorder\":20},{\"level_0\":105,\"level_1\":847,\"credits\":16,\"gpa\":2.747268,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":106,\"cumcredits\":126,\"cumgpa\":3.129037,\"semorder\":20},{\"level_0\":106,\"level_1\":855,\"credits\":14,\"gpa\":2.109078,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":107,\"cumcredits\":124,\"cumgpa\":2.864962,\"semorder\":20},{\"level_0\":107,\"level_1\":863,\"credits\":12,\"gpa\":2.764012,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":108,\"cumcredits\":118,\"cumgpa\":2.874891,\"semorder\":20},{\"level_0\":108,\"level_1\":871,\"credits\":12,\"gpa\":3.417061,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":109,\"cumcredits\":115,\"cumgpa\":3.125214,\"semorder\":20},{\"level_0\":109,\"level_1\":879,\"credits\":15,\"gpa\":2.838999,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":110,\"cumcredits\":123,\"cumgpa\":3.096635,\"semorder\":20},{\"level_0\":110,\"level_1\":887,\"credits\":12,\"gpa\":3.08855,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":111,\"cumcredits\":125,\"cumgpa\":3.113303,\"semorder\":20},{\"level_0\":111,\"level_1\":895,\"credits\":15,\"gpa\":3.696436,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":112,\"cumcredits\":117,\"cumgpa\":3.172724,\"semorder\":20},{\"level_0\":112,\"level_1\":903,\"credits\":13,\"gpa\":3.630265,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":113,\"cumcredits\":127,\"cumgpa\":3.377531,\"semorder\":20},{\"level_0\":113,\"level_1\":911,\"credits\":13,\"gpa\":2.686112,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":114,\"cumcredits\":112,\"cumgpa\":3.109866,\"semorder\":20},{\"level_0\":114,\"level_1\":919,\"credits\":14,\"gpa\":3.372147,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":115,\"cumcredits\":120,\"cumgpa\":2.905679,\"semorder\":20},{\"level_0\":115,\"level_1\":927,\"credits\":14,\"gpa\":2.849534,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":116,\"cumcredits\":118,\"cumgpa\":2.778849,\"semorder\":20},{\"level_0\":116,\"level_1\":935,\"credits\":12,\"gpa\":3.258974,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":117,\"cumcredits\":114,\"cumgpa\":2.970262,\"semorder\":20},{\"level_0\":117,\"level_1\":943,\"credits\":16,\"gpa\":2.164524,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":118,\"cumcredits\":114,\"cumgpa\":2.833796,\"semorder\":20},{\"level_0\":118,\"level_1\":951,\"credits\":15,\"gpa\":2.605272,\"major\":\"polisci\",\"semester\":\"S13\",\"studentid\":119,\"cumcredits\":123,\"cumgpa\":3.272827,\"semorder\":20},{\"level_0\":119,\"level_1\":959,\"credits\":17,\"gpa\":3.328771,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":120,\"cumcredits\":121,\"cumgpa\":3.02069,\"semorder\":20},{\"level_0\":120,\"level_1\":967,\"credits\":12,\"gpa\":3.270302,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":121,\"cumcredits\":113,\"cumgpa\":3.089691,\"semorder\":20},{\"level_0\":121,\"level_1\":975,\"credits\":15,\"gpa\":2.638259,\"major\":\"biology\",\"semester\":\"S13\",\"studentid\":122,\"cumcredits\":118,\"cumgpa\":3.133315,\"semorder\":20},{\"level_0\":122,\"level_1\":983,\"credits\":14,\"gpa\":3.167668,\"major\":\"engineering\",\"semester\":\"S13\",\"studentid\":123,\"cumcredits\":130,\"cumgpa\":2.914642,\"semorder\":20},{\"level_0\":123,\"level_1\":991,\"credits\":14,\"gpa\":2.857008,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":124,\"cumcredits\":117,\"cumgpa\":2.738367,\"semorder\":20},{\"level_0\":124,\"level_1\":999,\"credits\":18,\"gpa\":3.510772,\"major\":\"geography\",\"semester\":\"S13\",\"studentid\":125,\"cumcredits\":119,\"cumgpa\":3.448526,\"semorder\":20}], [{\"field\": \"level_0\", \"type\": \"Integer\"}, {\"field\": \"level_1\", \"type\": \"Integer\"}, {\"field\": \"credits\", \"type\": \"Integer\"}, {\"field\": \"gpa\", \"type\": \"Float\"}, {\"field\": \"major\"}, {\"field\": \"semester\"}, {\"field\": \"studentid\", \"type\": \"Integer\"}, {\"field\": \"cumcredits\", \"type\": \"Integer\"}, {\"field\": \"cumgpa\", \"type\": \"Float\"}, {\"field\": \"semorder\", \"type\": \"Integer\"}]);\n",
" grid.initialize_slick_grid();\n",
" });\n",
" });\n",
"});"
],
"metadata": {},
"output_type": "display_data"
}
],
"prompt_number": 5
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"I think it is useful to walk through the above code a bit. We are creating a new data frame, `dfmax`, by grouping our primary data frame by `studentid`, but not setting the index as `studentid`. . . \n",
"\n",
"```python\n",
"\n",
"dfmax = df1.groupby('studentid', as_index = False)\n",
"\n",
"```\n",
"\n",
". . . and then __apply__ an expression to our data using the __lambda__ operator, which allows us to specify an inline function. \n",
"\n",
"```python\n",
"\n",
".apply(lambda x: x[x['semorder'] == x['semorder'].max()])\n",
"\n",
"```\n",
"\n",
"In this case, we index the data frame to take those rows where the `semorder` column is equal to the group maximum of that column. \n",
"\n",
"From here, we can take a look at stuff like average GPA by major, etc. Also, as each row now represents the final semester (and in turn final GPA) of each student, it can be merged cleanly with your other data. "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"df1.groupby('major')['cumgpa'].mean()"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 6,
"text": [
"major\n",
"biology 3.019779\n",
"engineering 3.016776\n",
"geography 3.043046\n",
"polisci 3.042790\n",
"Name: cumgpa, dtype: float64"
]
}
],
"prompt_number": 6
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Reshaping your data\n",
"\n",
"It is also possible that you'd want a data frame where the rows represent individual students, not student-semesters. To do this, you'll have to perform a common data wrangling task called _reshaping_. \n",
"\n",
"Right now, your data are in \"long\" or \"tidy\" format, in which each row represents the smallest divisible unit in the table (the student-semester). Given the structure of the data, this makes the most sense for representing all of the information in the data frame. However, what we'll do next is reshape your data into \"wide\" format, in which semesters are columns and the values are the GPA for that semester. In Pandas, this is accomplished with the `pivot_table` function. "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"dfsub = df1[['gpa', 'semester', 'studentid']]\n",
"\n",
"dfwide = pd.pivot_table(df1, values = 'gpa', index = 'studentid', columns = 'semester').reset_index()\n",
"\n",
"show_grid(dfwide, remote_js = True)"
],
"language": "python",
"metadata": {},
"outputs": [
{
"html": [
"<script type=\"text/javascript\">\n",
"if ($(\"#dg-css\").length == 0){\n",
" $(\"head\").append([\n",
" \"<link href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.grid.css' rel='stylesheet'>\",\n",
" \"<link href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick-default-theme.css' rel='stylesheet'>\",\n",
" \"<link href='http://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.10.4/css/jquery-ui.min.css' rel='stylesheet'>\",\n",
" \"<link id='dg-css' href='https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.css' rel='stylesheet'>\"\n",
" ]);\n",
"}\n",
"</script>\n",
"<div class='q-grid-container'>\n",
"<div id='7df7ce2b-9fcd-4289-9973-b93338711ad2' class='q-grid'></div>\n",
"</div>"
],
"metadata": {},
"output_type": "display_data"
},
{
"javascript": [
"var path_dictionary = {\n",
" jquery_drag: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/jquery.event.drag-2.2\",\n",
" slick_core: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.core.2.2\",\n",
" slick_data_view: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.dataview.2.2\",\n",
" slick_grid: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//lib/slick.grid.2.2\",\n",
" data_grid: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid\",\n",
" date_filter: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.datefilter\",\n",
" slider_filter: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.sliderfilter\",\n",
" filter_base: \"https://cdn.rawgit.com/quantopian/qgrid/6988858671b6f80c7d1987e07ebff3dc810d20ce/qgrid/qgridjs//qgrid.filterbase\",\n",
" handlebars: \"https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0/handlebars.min\"\n",
"};\n",
"\n",
"var existing_config = require.s.contexts._.config;\n",
"if (!existing_config.paths['underscore']){\n",
" path_dictionary['underscore'] = \"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min\";\n",
"}\n",
"\n",
"if (!existing_config.paths['moment']){\n",
" path_dictionary['moment'] = \"https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.3/moment.min\";\n",
"}\n",
"\n",
"if (!existing_config.paths['jqueryui']){\n",
" path_dictionary['jqueryui'] = \"https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min\";\n",
"}\n",
"\n",
"require.config({\n",
" paths: path_dictionary\n",
"});\n",
"\n",
"if (typeof jQuery === 'function') {\n",
" define('jquery', function() { return jQuery; });\n",
"}\n",
"\n",
"require([\n",
" 'jquery',\n",
" 'jquery_drag',\n",
" 'slick_core',\n",
" 'slick_data_view'\n",
"],\n",
"function($){\n",
" $('#7df7ce2b-9fcd-4289-9973-b93338711ad2').closest('.rendered_html').removeClass('rendered_html');\n",
" require(['slick_grid'], function(){\n",
" require([\"data_grid\"], function(dgrid){\n",
" var grid = new dgrid.QGrid('#7df7ce2b-9fcd-4289-9973-b93338711ad2', [{\"null\":0.0,\"studentid\":1.0,\"F10\":3.000325,\"F11\":3.960285,\"F12\":3.729988,\"F13\":3.802531,\"S10\":2.098823,\"S11\":2.109119,\"S12\":2.673195,\"S13\":2.738838},{\"null\":1.0,\"studentid\":2.0,\"F10\":3.252868,\"F11\":2.795278,\"F12\":2.621278,\"F13\":3.838631,\"S10\":2.797768,\"S11\":3.252415,\"S12\":2.412247,\"S13\":2.01182},{\"null\":2.0,\"studentid\":3.0,\"F10\":3.934065,\"F11\":3.427276,\"F12\":2.022716,\"F13\":3.54374,\"S10\":3.006804,\"S11\":2.781778,\"S12\":2.017104,\"S13\":3.140741},{\"null\":3.0,\"studentid\":4.0,\"F10\":3.720242,\"F11\":2.567702,\"F12\":3.528087,\"F13\":2.16064,\"S10\":3.624173,\"S11\":3.90262,\"S12\":3.969928,\"S13\":2.18144},{\"null\":4.0,\"studentid\":5.0,\"F10\":2.205424,\"F11\":2.179225,\"F12\":3.411172,\"F13\":3.108719,\"S10\":3.630906,\"S11\":3.716934,\"S12\":3.449017,\"S13\":3.002588},{\"null\":5.0,\"studentid\":6.0,\"F10\":2.502475,\"F11\":2.14011,\"F12\":3.027494,\"F13\":3.290379,\"S10\":2.372734,\"S11\":2.05975,\"S12\":2.324686,\"S13\":3.808112},{\"null\":6.0,\"studentid\":7.0,\"F10\":3.623871,\"F11\":2.813445,\"F12\":2.211705,\"F13\":3.300348,\"S10\":3.205462,\"S11\":2.008465,\"S12\":3.91637,\"S13\":2.108963},{\"null\":7.0,\"studentid\":8.0,\"F10\":3.229197,\"F11\":3.299633,\"F12\":2.07998,\"F13\":3.945564,\"S10\":3.361871,\"S11\":3.538303,\"S12\":3.500842,\"S13\":3.709812},{\"null\":8.0,\"studentid\":9.0,\"F10\":2.222926,\"F11\":2.937381,\"F12\":3.004347,\"F13\":3.018215,\"S10\":3.829217,\"S11\":3.101921,\"S12\":3.39102,\"S13\":2.032442},{\"null\":9.0,\"studentid\":10.0,\"F10\":2.620515,\"F11\":2.627421,\"F12\":2.861393,\"F13\":3.336202,\"S10\":3.246491,\"S11\":2.136314,\"S12\":3.043401,\"S13\":2.400975},{\"null\":10.0,\"studentid\":11.0,\"F10\":2.664177,\"F11\":2.52801,\"F12\":2.077329,\"F13\":3.498751,\"S10\":2.915876,\"S11\":3.150819,\"S12\":3.716005,\"S13\":2.305475},{\"null\":11.0,\"studentid\":12.0,\"F10\":2.219078,\"F11\":3.500225,\"F12\":2.634187,\"F13\":2.169421,\"S10\":2.619026,\"S11\":2.75685,\"S12\":2.340961,\"S13\":3.116521},{\"null\":12.0,\"studentid\":13.0,\"F10\":2.464738,\"F11\":3.988096,\"F12\":3.153869,\"F13\":2.274976,\"S10\":3.853071,\"S11\":3.551157,\"S12\":2.956457,\"S13\":3.975786},{\"null\":13.0,\"studentid\":14.0,\"F10\":2.662644,\"F11\":2.420504,\"F12\":2.123532,\"F13\":2.315493,\"S10\":2.519406,\"S11\":2.638932,\"S12\":3.363737,\"S13\":2.192757},{\"null\":14.0,\"studentid\":15.0,\"F10\":2.344284,\"F11\":3.131995,\"F12\":3.507281,\"F13\":3.201134,\"S10\":2.213452,\"S11\":3.183565,\"S12\":2.010083,\"S13\":2.828075},{\"null\":15.0,\"studentid\":16.0,\"F10\":2.233428,\"F11\":2.298006,\"F12\":3.898172,\"F13\":2.9535,\"S10\":2.167532,\"S11\":2.579019,\"S12\":2.703916,\"S13\":2.33115},{\"null\":16.0,\"studentid\":17.0,\"F10\":3.308571,\"F11\":2.567398,\"F12\":2.011266,\"F13\":3.778985,\"S10\":2.641142,\"S11\":2.896388,\"S12\":2.483199,\"S13\":3.176639},{\"null\":17.0,\"studentid\":18.0,\"F10\":3.215513,\"F11\":3.922082,\"F12\":3.666226,\"F13\":3.392896,\"S10\":3.793567,\"S11\":3.563885,\"S12\":3.206859,\"S13\":3.581762},{\"null\":18.0,\"studentid\":19.0,\"F10\":2.041031,\"F11\":3.192812,\"F12\":2.104483,\"F13\":2.475738,\"S10\":3.156315,\"S11\":2.382413,\"S12\":3.039252,\"S13\":2.998279},{\"null\":19.0,\"studentid\":20.0,\"F10\":3.501074,\"F11\":2.414334,\"F12\":3.657767,\"F13\":2.907991,\"S10\":3.418947,\"S11\":2.482762,\"S12\":2.605151,\"S13\":2.393747},{\"null\":20.0,\"studentid\":21.0,\"F10\":3.25443,\"F11\":3.690392,\"F12\":3.540999,\"F13\":3.743834,\"S10\":2.304713,\"S11\":2.030248,\"S12\":3.043614,\"S13\":3.086025},{\"null\":21.0,\"studentid\":22.0,\"F10\":2.117297,\"F11\":3.740611,\"F12\":3.522869,\"F13\":3.653729,\"S10\":2.816157,\"S11\":2.564632,\"S12\":2.804299,\"S13\":2.762778},{\"null\":22.0,\"studentid\":23.0,\"F10\":3.78891,\"F11\":2.735441,\"F12\":3.39025,\"F13\":3.505668,\"S10\":2.942795,\"S11\":2.345866,\"S12\":3.823959,\"S13\":2.855415},{\"null\":23.0,\"studentid\":24.0,\"F10\":3.752572,\"F11\":3.152196,\"F12\":3.139992,\"F13\":2.186134,\"S10\":3.522546,\"S11\":2.980248,\"S12\":3.300582,\"S13\":2.844689},{\"null\":24.0,\"studentid\":25.0,\"F10\":2.963991,\"F11\":3.58008,\"F12\":3.339119,\"F13\":2.706279,\"S10\":2.357577,\"S11\":2.221723,\"S12\":3.52166,\"S13\":3.707619},{\"null\":25.0,\"studentid\":26.0,\"F10\":3.0538,\"F11\":3.465149,\"F12\":3.020304,\"F13\":2.685002,\"S10\":2.885082,\"S11\":2.429325,\"S12\":2.356466,\"S13\":2.228137},{\"null\":26.0,\"studentid\":27.0,\"F10\":3.99972,\"F11\":2.892188,\"F12\":3.61684,\"F13\":3.724927,\"S10\":2.564704,\"S11\":2.78184,\"S12\":2.394315,\"S13\":2.588353},{\"null\":27.0,\"studentid\":28.0,\"F10\":3.351762,\"F11\":3.18507,\"F12\":2.705353,\"F13\":3.067591,\"S10\":3.246795,\"S11\":3.106387,\"S12\":2.644712,\"S13\":2.177495},{\"null\":28.0,\"studentid\":29.0,\"F10\":3.283523,\"F11\":3.868214,\"F12\":3.457326,\"F13\":3.57411,\"S10\":3.713645,\"S11\":3.197901,\"S12\":2.819933,\"S13\":2.108164},{\"null\":29.0,\"studentid\":30.0,\"F10\":2.370236,\"F11\":2.953668,\"F12\":2.028046,\"F13\":2.883755,\"S10\":3.113721,\"S11\":3.597622,\"S12\":3.765596,\"S13\":3.532662},{\"null\":30.0,\"studentid\":31.0,\"F10\":3.599371,\"F11\":2.601362,\"F12\":3.358292,\"F13\":2.763704,\"S10\":2.280029,\"S11\":3.152725,\"S12\":2.868379,\"S13\":2.795024},{\"null\":31.0,\"studentid\":32.0,\"F10\":3.540857,\"F11\":3.681297,\"F12\":3.274451,\"F13\":2.229049,\"S10\":2.619641,\"S11\":2.472277,\"S12\":3.76593,\"S13\":3.480051},{\"null\":32.0,\"studentid\":33.0,\"F10\":2.832566,\"F11\":3.896235,\"F12\":3.671607,\"F13\":3.275462,\"S10\":2.726147,\"S11\":2.940513,\"S12\":2.242225,\"S13\":3.019487},{\"null\":33.0,\"studentid\":34.0,\"F10\":2.029483,\"F11\":3.514956,\"F12\":3.458008,\"F13\":3.926756,\"S10\":3.293874,\"S11\":3.946259,\"S12\":3.853584,\"S13\":2.14852},{\"null\":34.0,\"studentid\":35.0,\"F10\":2.596714,\"F11\":2.9871,\"F12\":2.705667,\"F13\":3.324397,\"S10\":3.684326,\"S11\":3.46494,\"S12\":2.205771,\"S13\":2.843382},{\"null\":35.0,\"studentid\":36.0,\"F10\":2.423531,\"F11\":3.486189,\"F12\":3.125881,\"F13\":3.284478,\"S10\":3.876437,\"S11\":3.093648,\"S12\":3.476699,\"S13\":2.619855},{\"null\":36.0,\"studentid\":37.0,\"F10\":3.105252,\"F11\":2.271155,\"F12\":2.574577,\"F13\":2.324123,\"S10\":2.046052,\"S11\":3.598407,\"S12\":2.035797,\"S13\":3.329802},{\"null\":37.0,\"studentid\":38.0,\"F10\":3.090761,\"F11\":2.197086,\"F12\":2.403579,\"F13\":3.678959,\"S10\":3.358174,\"S11\":2.608635,\"S12\":3.250375,\"S13\":3.518419},{\"null\":38.0,\"studentid\":39.0,\"F10\":2.596218,\"F11\":3.610893,\"F12\":2.273754,\"F13\":3.242946,\"S10\":2.740172,\"S11\":3.061732,\"S12\":2.022756,\"S13\":3.633335},{\"null\":39.0,\"studentid\":40.0,\"F10\":3.119989,\"F11\":3.794909,\"F12\":3.899482,\"F13\":2.595388,\"S10\":2.847213,\"S11\":3.97813,\"S12\":3.177081,\"S13\":3.525627},{\"null\":40.0,\"studentid\":41.0,\"F10\":3.83562,\"F11\":2.735285,\"F12\":2.28734,\"F13\":3.659634,\"S10\":2.184689,\"S11\":3.952532,\"S12\":3.413432,\"S13\":3.688601},{\"null\":41.0,\"studentid\":42.0,\"F10\":2.906605,\"F11\":3.65076,\"F12\":3.872618,\"F13\":2.763631,\"S10\":3.023581,\"S11\":3.490775,\"S12\":3.175489,\"S13\":3.866482},{\"null\":42.0,\"studentid\":43.0,\"F10\":2.801853,\"F11\":2.036895,\"F12\":2.9248,\"F13\":3.328666,\"S10\":2.413781,\"S11\":2.205738,\"S12\":3.432397,\"S13\":2.321027},{\"null\":43.0,\"studentid\":44.0,\"F10\":2.615456,\"F11\":3.104786,\"F12\":2.139884,\"F13\":2.257687,\"S10\":2.488431,\"S11\":2.864616,\"S12\":3.597241,\"S13\":3.166259},{\"null\":44.0,\"studentid\":45.0,\"F10\":3.11546,\"F11\":2.964768,\"F12\":2.460356,\"F13\":3.024364,\"S10\":2.849547,\"S11\":2.4165,\"S12\":3.253964,\"S13\":2.281046},{\"null\":45.0,\"studentid\":46.0,\"F10\":3.030635,\"F11\":3.210478,\"F12\":2.153591,\"F13\":2.215596,\"S10\":2.271469,\"S11\":3.715532,\"S12\":3.506936,\"S13\":2.485247},{\"null\":46.0,\"studentid\":47.0,\"F10\":2.593732,\"F11\":3.053344,\"F12\":3.435514,\"F13\":3.771485,\"S10\":3.462307,\"S11\":3.903576,\"S12\":2.857784,\"S13\":3.485355},{\"null\":47.0,\"studentid\":48.0,\"F10\":3.624672,\"F11\":2.263285,\"F12\":3.616507,\"F13\":2.511705,\"S10\":3.339806,\"S11\":3.818467,\"S12\":2.290329,\"S13\":3.977165},{\"null\":48.0,\"studentid\":49.0,\"F10\":3.612395,\"F11\":2.181694,\"F12\":3.504718,\"F13\":2.424706,\"S10\":2.122812,\"S11\":2.149403,\"S12\":3.306599,\"S13\":2.09365},{\"null\":49.0,\"studentid\":50.0,\"F10\":2.227567,\"F11\":2.958396,\"F12\":3.396702,\"F13\":2.367259,\"S10\":3.082951,\"S11\":3.041113,\"S12\":3.667104,\"S13\":3.855905},{\"null\":50.0,\"studentid\":51.0,\"F10\":3.903467,\"F11\":3.977924,\"F12\":2.813675,\"F13\":3.286885,\"S10\":2.979954,\"S11\":2.895758,\"S12\":2.386686,\"S13\":3.684605},{\"null\":51.0,\"studentid\":52.0,\"F10\":2.407671,\"F11\":3.610343,\"F12\":2.808549,\"F13\":2.170451,\"S10\":2.666568,\"S11\":3.972472,\"S12\":2.941335,\"S13\":3.535655},{\"null\":52.0,\"studentid\":53.0,\"F10\":2.767224,\"F11\":2.928886,\"F12\":2.37091,\"F13\":3.408854,\"S10\":3.79516,\"S11\":2.537838,\"S12\":3.858403,\"S13\":3.459529},{\"null\":53.0,\"studentid\":54.0,\"F10\":3.057349,\"F11\":3.400207,\"F12\":2.226836,\"F13\":2.743507,\"S10\":2.3847,\"S11\":3.824139,\"S12\":3.447785,\"S13\":3.643885},{\"null\":54.0,\"studentid\":55.0,\"F10\":2.951717,\"F11\":2.067194,\"F12\":3.096032,\"F13\":2.795376,\"S10\":3.424798,\"S11\":3.731983,\"S12\":3.846199,\"S13\":2.928447},{\"null\":55.0,\"studentid\":56.0,\"F10\":3.764687,\"F11\":2.164973,\"F12\":3.235753,\"F13\":2.944934,\"S10\":3.549999,\"S11\":3.594047,\"S12\":2.635408,\"S13\":3.85635},{\"null\":56.0,\"studentid\":57.0,\"F10\":3.313974,\"F11\":2.974047,\"F12\":2.634357,\"F13\":3.3481,\"S10\":2.744709,\"S11\":3.012626,\"S12\":3.110905,\"S13\":2.945505},{\"null\":57.0,\"studentid\":58.0,\"F10\":3.663561,\"F11\":3.785008,\"F12\":3.842996,\"F13\":2.674345,\"S10\":2.372446,\"S11\":3.349873,\"S12\":3.872625,\"S13\":3.261173},{\"null\":58.0,\"studentid\":59.0,\"F10\":3.789791,\"F11\":3.88019,\"F12\":3.314657,\"F13\":3.409733,\"S10\":3.324766,\"S11\":2.711553,\"S12\":3.562812,\"S13\":2.900306},{\"null\":59.0,\"studentid\":60.0,\"F10\":3.888319,\"F11\":3.93952,\"F12\":2.626993,\"F13\":3.47654,\"S10\":3.950753,\"S11\":3.703994,\"S12\":2.95153,\"S13\":3.20177},{\"null\":60.0,\"studentid\":61.0,\"F10\":3.679341,\"F11\":3.032752,\"F12\":2.732967,\"F13\":3.061973,\"S10\":2.754174,\"S11\":3.766679,\"S12\":2.138525,\"S13\":3.917658},{\"null\":61.0,\"studentid\":62.0,\"F10\":2.236651,\"F11\":2.207066,\"F12\":3.990113,\"F13\":2.956591,\"S10\":3.745742,\"S11\":3.575633,\"S12\":3.302338,\"S13\":2.68139},{\"null\":62.0,\"studentid\":63.0,\"F10\":2.605551,\"F11\":2.705579,\"F12\":3.229217,\"F13\":3.835015,\"S10\":2.367803,\"S11\":3.40608,\"S12\":2.27566,\"S13\":2.120638},{\"null\":63.0,\"studentid\":64.0,\"F10\":2.717416,\"F11\":3.964815,\"F12\":3.716288,\"F13\":3.274242,\"S10\":3.955728,\"S11\":3.246435,\"S12\":2.788194,\"S13\":3.715756},{\"null\":64.0,\"studentid\":65.0,\"F10\":2.459016,\"F11\":2.280387,\"F12\":3.706302,\"F13\":3.076411,\"S10\":3.337223,\"S11\":2.997183,\"S12\":2.476015,\"S13\":3.78388},{\"null\":65.0,\"studentid\":66.0,\"F10\":2.763926,\"F11\":3.391092,\"F12\":3.615592,\"F13\":2.837739,\"S10\":3.219777,\"S11\":2.41138,\"S12\":2.931227,\"S13\":3.219912},{\"null\":66.0,\"studentid\":67.0,\"F10\":2.638494,\"F11\":2.218654,\"F12\":3.737011,\"F13\":2.080391,\"S10\":2.50424,\"S11\":3.095526,\"S12\":3.462236,\"S13\":2.989748},{\"null\":67.0,\"studentid\":68.0,\"F10\":2.132593,\"F11\":2.213372,\"F12\":3.66763,\"F13\":2.259959,\"S10\":3.14087,\"S11\":3.450075,\"S12\":3.476673,\"S13\":3.447623},{\"null\":68.0,\"studentid\":69.0,\"F10\":2.908331,\"F11\":3.08475,\"F12\":2.778893,\"F13\":3.246907,\"S10\":2.518686,\"S11\":2.311033,\"S12\":3.550687,\"S13\":3.317239},{\"null\":69.0,\"studentid\":70.0,\"F10\":3.944674,\"F11\":3.793073,\"F12\":3.832068,\"F13\":3.063207,\"S10\":3.737386,\"S11\":3.192447,\"S12\":2.06523,\"S13\":2.209778},{\"null\":70.0,\"studentid\":71.0,\"F10\":3.361504,\"F11\":2.964978,\"F12\":3.697896,\"F13\":3.057192,\"S10\":2.452925,\"S11\":2.652521,\"S12\":2.817865,\"S13\":2.993753},{\"null\":71.0,\"studentid\":72.0,\"F10\":3.40174,\"F11\":2.288365,\"F12\":2.106061,\"F13\":3.383278,\"S10\":3.315495,\"S11\":2.010397,\"S12\":3.063324,\"S13\":3.138018},{\"null\":72.0,\"studentid\":73.0,\"F10\":2.88091,\"F11\":2.003908,\"F12\":3.433595,\"F13\":3.211975,\"S10\":3.872951,\"S11\":3.568027,\"S12\":2.522208,\"S13\":3.643435},{\"null\":73.0,\"studentid\":74.0,\"F10\":3.347098,\"F11\":3.032919,\"F12\":2.835036,\"F13\":2.038531,\"S10\":2.940267,\"S11\":3.527471,\"S12\":3.207247,\"S13\":2.53565},{\"null\":74.0,\"studentid\":75.0,\"F10\":2.164816,\"F11\":3.366188,\"F12\":3.653574,\"F13\":2.861057,\"S10\":2.374,\"S11\":3.515272,\"S12\":2.906782,\"S13\":3.76518},{\"null\":75.0,\"studentid\":76.0,\"F10\":3.404037,\"F11\":2.479511,\"F12\":3.633878,\"F13\":2.756645,\"S10\":2.26828,\"S11\":3.351531,\"S12\":2.249259,\"S13\":3.822392},{\"null\":76.0,\"studentid\":77.0,\"F10\":2.376301,\"F11\":2.69854,\"F12\":2.033067,\"F13\":3.929138,\"S10\":3.132211,\"S11\":2.210269,\"S12\":2.992404,\"S13\":2.612093},{\"null\":77.0,\"studentid\":78.0,\"F10\":2.190491,\"F11\":3.111449,\"F12\":2.445913,\"F13\":3.127898,\"S10\":3.45568,\"S11\":3.358708,\"S12\":3.226832,\"S13\":3.803072},{\"null\":78.0,\"studentid\":79.0,\"F10\":2.421214,\"F11\":3.783728,\"F12\":2.221144,\"F13\":3.903626,\"S10\":3.058673,\"S11\":2.943916,\"S12\":2.524584,\"S13\":2.961519},{\"null\":79.0,\"studentid\":80.0,\"F10\":2.946957,\"F11\":3.432159,\"F12\":3.525776,\"F13\":3.643913,\"S10\":3.726214,\"S11\":3.594452,\"S12\":3.376705,\"S13\":3.048055},{\"null\":80.0,\"studentid\":81.0,\"F10\":3.484351,\"F11\":2.265914,\"F12\":2.097457,\"F13\":2.113763,\"S10\":3.205943,\"S11\":3.076397,\"S12\":2.201878,\"S13\":2.707522},{\"null\":81.0,\"studentid\":82.0,\"F10\":3.166543,\"F11\":3.457118,\"F12\":3.347315,\"F13\":3.742143,\"S10\":2.197387,\"S11\":2.001505,\"S12\":3.098795,\"S13\":2.053418},{\"null\":82.0,\"studentid\":83.0,\"F10\":3.234901,\"F11\":2.791086,\"F12\":2.809017,\"F13\":3.553024,\"S10\":3.792813,\"S11\":2.487622,\"S12\":3.1772,\"S13\":3.668511},{\"null\":83.0,\"studentid\":84.0,\"F10\":2.043561,\"F11\":2.732892,\"F12\":3.437358,\"F13\":2.419299,\"S10\":2.456055,\"S11\":3.372649,\"S12\":2.551255,\"S13\":3.732838},{\"null\":84.0,\"studentid\":85.0,\"F10\":3.564806,\"F11\":2.654711,\"F12\":3.802414,\"F13\":2.79177,\"S10\":3.778918,\"S11\":2.467734,\"S12\":3.976273,\"S13\":2.595065},{\"null\":85.0,\"studentid\":86.0,\"F10\":3.757699,\"F11\":3.745406,\"F12\":3.68435,\"F13\":2.649134,\"S10\":2.448171,\"S11\":2.381275,\"S12\":3.574848,\"S13\":3.180487},{\"null\":86.0,\"studentid\":87.0,\"F10\":2.397047,\"F11\":3.049852,\"F12\":3.456172,\"F13\":3.999589,\"S10\":2.106101,\"S11\":3.437974,\"S12\":3.317198,\"S13\":3.827169},{\"null\":87.0,\"studentid\":88.0,\"F10\":3.120251,\"F11\":2.860355,\"F12\":3.185754,\"F13\":2.647026,\"S10\":3.807302,\"S11\":2.430978,\"S12\":3.228196,\"S13\":2.967361},{\"null\":88.0,\"studentid\":89.0,\"F10\":2.058957,\"F11\":3.292399,\"F12\":3.104988,\"F13\":3.196388,\"S10\":2.870013,\"S11\":3.603733,\"S12\":2.927102,\"S13\":2.59168},{\"null\":89.0,\"studentid\":90.0,\"F10\":3.677491,\"F11\":2.24488,\"F12\":2.956486,\"F13\":3.334193,\"S10\":3.814207,\"S11\":3.49852,\"S12\":3.761712,\"S13\":2.963932},{\"null\":90.0,\"studentid\":91.0,\"F10\":3.383068,\"F11\":3.816876,\"F12\":2.558294,\"F13\":3.590793,\"S10\":2.589949,\"S11\":3.702161,\"S12\":2.547543,\"S13\":2.653418},{\"null\":91.0,\"studentid\":92.0,\"F10\":2.960584,\"F11\":2.547348,\"F12\":3.042922,\"F13\":2.59314,\"S10\":2.518676,\"S11\":3.672137,\"S12\":3.996196,\"S13\":3.781397},{\"null\":92.0,\"studentid\":93.0,\"F10\":3.049193,\"F11\":3.366833,\"F12\":2.058363,\"F13\":3.601257,\"S10\":3.745166,\"S11\":3.996424,\"S12\":2.212877,\"S13\":3.026135},{\"null\":93.0,\"studentid\":94.0,\"F10\":3.807268,\"F11\":3.554524,\"F12\":3.381716,\"F13\":2.946315,\"S10\":2.059897,\"S11\":3.710095,\"S12\":2.415868,\"S13\":3.132032},{\"null\":94.0,\"studentid\":95.0,\"F10\":2.046587,\"F11\":3.607198,\"F12\":2.187871,\"F13\":3.759275,\"S10\":2.395562,\"S11\":3.252519,\"S12\":3.733583,\"S13\":2.217312},{\"null\":95.0,\"studentid\":96.0,\"F10\":3.911596,\"F11\":3.0886,\"F12\":2.948156,\"F13\":2.225525,\"S10\":2.916342,\"S11\":2.833418,\"S12\":3.175077,\"S13\":2.065463},{\"null\":96.0,\"studentid\":97.0,\"F10\":3.229837,\"F11\":2.737301,\"F12\":2.110332,\"F13\":2.585193,\"S10\":3.538505,\"S11\":3.434689,\"S12\":3.364392,\"S13\":3.509282},{\"null\":97.0,\"studentid\":98.0,\"F10\":2.10531,\"F11\":3.243403,\"F12\":2.872525,\"F13\":2.636937,\"S10\":3.901879,\"S11\":3.682319,\"S12\":3.861532,\"S13\":3.377156},{\"null\":98.0,\"studentid\":99.0,\"F10\":3.361648,\"F11\":3.799809,\"F12\":3.764749,\"F13\":2.262771,\"S10\":3.827685,\"S11\":3.363506,\"S12\":3.880683,\"S13\":2.261108},{\"null\":99.0,\"studentid\":100.0,\"F10\":3.517036,\"F11\":2.515105,\"F12\":3.13577,\"F13\":2.210902,\"S10\":3.519151,\"S11\":3.01709,\"S12\":2.284629,\"S13\":2.939617},{\"null\":100.0,\"studentid\":101.0,\"F10\":2.918466,\"F11\":3.69732,\"F12\":2.874197,\"F13\":3.180338,\"S10\":3.968467,\"S11\":3.650975,\"S12\":2.689955,\"S13\":3.890344},{\"null\":101.0,\"studentid\":102.0,\"F10\":3.06046,\"F11\":2.129967,\"F12\":3.149941,\"F13\":2.824668,\"S10\":3.834344,\"S11\":2.727808,\"S12\":2.655146,\"S13\":2.558806},{\"null\":102.0,\"studentid\":103.0,\"F10\":2.708784,\"F11\":3.354618,\"F12\":2.511095,\"F13\":3.934125,\"S10\":2.935778,\"S11\":2.921911,\"S12\":2.209798,\"S13\":2.850106},{\"null\":103.0,\"studentid\":104.0,\"F10\":2.603392,\"F11\":3.199782,\"F12\":2.121604,\"F13\":2.611005,\"S10\":3.803669,\"S11\":3.377743,\"S12\":2.419921,\"S13\":3.083155},{\"null\":104.0,\"studentid\":105.0,\"F10\":3.048579,\"F11\":2.12391,\"F12\":2.161683,\"F13\":2.015275,\"S10\":2.838578,\"S11\":3.601267,\"S12\":3.937948,\"S13\":2.109867},{\"null\":105.0,\"studentid\":106.0,\"F10\":2.898052,\"F11\":2.118776,\"F12\":2.924214,\"F13\":3.564663,\"S10\":3.464781,\"S11\":3.276003,\"S12\":3.708147,\"S13\":2.747268},{\"null\":106.0,\"studentid\":107.0,\"F10\":3.57836,\"F11\":2.595293,\"F12\":2.031801,\"F13\":3.319995,\"S10\":3.949113,\"S11\":2.364492,\"S12\":3.016379,\"S13\":2.109078},{\"null\":107.0,\"studentid\":108.0,\"F10\":2.331842,\"F11\":3.072198,\"F12\":3.088197,\"F13\":2.703767,\"S10\":3.045517,\"S11\":2.782277,\"S12\":3.190194,\"S13\":2.764012},{\"null\":108.0,\"studentid\":109.0,\"F10\":2.465581,\"F11\":2.276606,\"F12\":3.38737,\"F13\":3.382846,\"S10\":3.866721,\"S11\":2.859648,\"S12\":3.630471,\"S13\":3.417061},{\"null\":109.0,\"studentid\":110.0,\"F10\":2.515736,\"F11\":3.149966,\"F12\":2.104064,\"F13\":3.04321,\"S10\":3.721177,\"S11\":3.945992,\"S12\":3.00761,\"S13\":2.838999},{\"null\":110.0,\"studentid\":111.0,\"F10\":2.364318,\"F11\":3.915335,\"F12\":3.772993,\"F13\":2.791756,\"S10\":3.477728,\"S11\":2.516793,\"S12\":3.131551,\"S13\":3.08855},{\"null\":111.0,\"studentid\":112.0,\"F10\":2.134514,\"F11\":3.327141,\"F12\":3.753702,\"F13\":3.041393,\"S10\":3.501243,\"S11\":2.719545,\"S12\":2.91157,\"S13\":3.696436},{\"null\":112.0,\"studentid\":113.0,\"F10\":3.766964,\"F11\":3.94197,\"F12\":2.751779,\"F13\":3.223944,\"S10\":3.968984,\"S11\":3.003473,\"S12\":2.564681,\"S13\":3.630265},{\"null\":113.0,\"studentid\":114.0,\"F10\":2.799382,\"F11\":2.398069,\"F12\":2.600645,\"F13\":3.363814,\"S10\":3.731294,\"S11\":3.934232,\"S12\":3.064218,\"S13\":2.686112},{\"null\":114.0,\"studentid\":115.0,\"F10\":2.402453,\"F11\":2.291974,\"F12\":3.05101,\"F13\":2.993661,\"S10\":3.296338,\"S11\":3.659878,\"S12\":2.489611,\"S13\":3.372147},{\"null\":115.0,\"studentid\":116.0,\"F10\":2.937331,\"F11\":2.557196,\"F12\":3.915183,\"F13\":2.370063,\"S10\":2.619694,\"S11\":2.79606,\"S12\":2.243195,\"S13\":2.849534},{\"null\":116.0,\"studentid\":117.0,\"F10\":2.954072,\"F11\":2.960465,\"F12\":3.922334,\"F13\":2.763447,\"S10\":2.953168,\"S11\":2.85555,\"S12\":2.326868,\"S13\":3.258974},{\"null\":117.0,\"studentid\":118.0,\"F10\":3.161825,\"F11\":3.111789,\"F12\":2.58274,\"F13\":3.242471,\"S10\":3.079699,\"S11\":3.318271,\"S12\":2.039188,\"S13\":2.164524},{\"null\":118.0,\"studentid\":119.0,\"F10\":3.360365,\"F11\":3.418946,\"F12\":2.552756,\"F13\":3.814598,\"S10\":3.939682,\"S11\":2.529788,\"S12\":3.837993,\"S13\":2.605272},{\"null\":119.0,\"studentid\":120.0,\"F10\":3.949361,\"F11\":2.383477,\"F12\":2.829008,\"F13\":2.973742,\"S10\":2.844555,\"S11\":2.854892,\"S12\":3.304443,\"S13\":3.328771},{\"null\":120.0,\"studentid\":121.0,\"F10\":3.224349,\"F11\":3.525413,\"F12\":2.295963,\"F13\":2.843627,\"S10\":3.558427,\"S11\":2.659849,\"S12\":3.187684,\"S13\":3.270302},{\"null\":121.0,\"studentid\":122.0,\"F10\":3.17161,\"F11\":3.618081,\"F12\":2.018866,\"F13\":2.134489,\"S10\":3.982017,\"S11\":3.602699,\"S12\":3.767892,\"S13\":2.638259},{\"null\":122.0,\"studentid\":123.0,\"F10\":2.790437,\"F11\":3.468934,\"F12\":2.057532,\"F13\":3.922899,\"S10\":2.935675,\"S11\":2.507178,\"S12\":2.613808,\"S13\":3.167668},{\"null\":123.0,\"studentid\":124.0,\"F10\":2.53159,\"F11\":3.513941,\"F12\":2.539505,\"F13\":2.387103,\"S10\":2.06198,\"S11\":2.527532,\"S12\":3.539149,\"S13\":2.857008},{\"null\":124.0,\"studentid\":125.0,\"F10\":3.725688,\"F11\":2.434716,\"F12\":3.526858,\"F13\":3.729964,\"S10\":3.525533,\"S11\":3.6273,\"S12\":3.523341,\"S13\":3.510772}], [{\"field\": null, \"type\": \"Integer\"}, {\"field\": \"studentid\", \"type\": \"Integer\"}, {\"field\": \"F10\", \"type\": \"Float\"}, {\"field\": \"F11\", \"type\": \"Float\"}, {\"field\": \"F12\", \"type\": \"Float\"}, {\"field\": \"F13\", \"type\": \"Float\"}, {\"field\": \"S10\", \"type\": \"Float\"}, {\"field\": \"S11\", \"type\": \"Float\"}, {\"field\": \"S12\", \"type\": \"Float\"}, {\"field\": \"S13\", \"type\": \"Float\"}]);\n",
" grid.initialize_slick_grid();\n",
" });\n",
" });\n",
"});"
],
"metadata": {},
"output_type": "display_data"
}
],
"prompt_number": 7
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 7
}
],
"metadata": {}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment