From a868f636a314770c63dbba83bbc865ae07b0f123 Mon Sep 17 00:00:00 2001 From: Giang Pham Date: Tue, 18 Mar 2025 00:12:31 -0500 Subject: [PATCH 01/22] backend for RMP database --- client/src/components/SearchResults.tsx | 42 +- .../src/components/SearchResultsContent.tsx | 8 +- client/src/components/SectionContent.tsx | 50 +- client/src/utils/index.ts | 35 + db/db_schema.sql | 28 + db/src/import/index.ts | 91 + db/src/index.ts | 1 + db/src/search/GradesDatabase.ts | 36 +- db/src/search/utils.ts | 19 + db/src/types/RMPInstructors.ts | 21 + raw_data/matched_professor_data.json | 57871 ++++++++++++++++ 11 files changed, 58193 insertions(+), 9 deletions(-) create mode 100644 db/src/types/RMPInstructors.ts create mode 100644 raw_data/matched_professor_data.json diff --git a/client/src/components/SearchResults.tsx b/client/src/components/SearchResults.tsx index 27908ba..6bb6f80 100644 --- a/client/src/components/SearchResults.tsx +++ b/client/src/components/SearchResults.tsx @@ -1,10 +1,12 @@ +import type { RMPInstructor } from "@utd-grades/db"; import { Col, Row } from "antd"; import type { NextRouter } from "next/router"; -import React, { useEffect, useRef } from "react"; +import React, { useEffect, useRef, useState } from "react"; import { useQuery } from "react-query"; import { animateScroll as scroll } from "react-scroll"; import styled from "styled-components"; import type { SearchQuery } from "../types"; +import { normalizeName } from "../utils/index"; import { useDb } from "../utils/useDb"; import Search from "./Search"; import SearchResultsContent from "./SearchResultsContent"; @@ -53,6 +55,7 @@ export default function Results({ search, sectionId, router }: ResultsProps) { const { data: db } = useDb(); + // this is to get all of the other sections of the same class (for the side bar) const { data: sections, status: sectionsStatus, @@ -64,6 +67,7 @@ export default function Results({ search, sectionId, router }: ResultsProps) { { enabled: !!db } ); + // get the section data const { data: section, status: sectionStatus, @@ -90,6 +94,40 @@ export default function Results({ search, sectionId, router }: ResultsProps) { { enabled: !!section } ); + // some professors will have the same name so we need to get the whole list + const normalName: string = normalizeName( + `${section?.instructor1?.first} ${section?.instructor1?.last}` + ); + + const { data: instructors } = useQuery( + ["instructors", sectionId], + () => db!.getInstructorsByName(normalName), + { enabled: !!section } + ); + + // from that list, we need to find the one that holds the session -> update the instructor and course rating + const [instructor, setInstructor] = useState(); + + const { data: courseRating = null } = useQuery( + ["rating", sectionId], + () => { + if (instructors) { + for (const ins of instructors) { + const rating = db!.getCourseRating( + ins.instructor_id, + `${section!.subject}${section!.catalogNumber}` + ) as number | null; + if (rating) { + setInstructor(ins); + return rating; + } + } + } + return null; + }, + { enabled: !!section && !!instructors } + ); + useEffect(() => { // Automatically select section if there is only one choice if (sections && sections.length == 1) { @@ -158,6 +196,8 @@ export default function Results({ search, sectionId, router }: ResultsProps) { void; @@ -35,6 +37,8 @@ interface SearchResultsContentProps { export default function SearchResultsContent({ section, + instructor, + courseRating, relatedSections, loadingSection, handleRelatedSectionClick, @@ -44,6 +48,8 @@ export default function SearchResultsContent({ return ( diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index 069f6fe..2de0be7 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -1,4 +1,4 @@ -import type { Grades } from "@utd-grades/db"; +import type { Grades, RMPInstructor } from "@utd-grades/db"; import { Row, Spin } from "antd"; import { BarElement, @@ -113,12 +113,16 @@ const Stack = styled.div` interface SectionContentProps { relatedSections: Grades[]; section: Grades; + instructor: RMPInstructor; + courseRating: number | null; handleRelatedSectionClick: (search: string, id: number) => void; } export default function SectionContent({ relatedSections, section, + instructor, + courseRating, handleRelatedSectionClick, }: SectionContentProps) { const renderRelatedSections = () => { @@ -183,10 +187,46 @@ export default function SectionContent({ Total Students {section.totalStudents} - {/* FIXME (median) - - Average Grade {averageLetter} - */} + + + Would take again{" "} + + {instructor?.would_take_again !== undefined && instructor.would_take_again !== -1 + ? `${instructor.would_take_again} %` + : "N/A"} + + + + Quality rating{" "} + + {instructor?.quality_rating ? `${instructor.quality_rating}` : "N/A"} + + + + Difficulty rating{" "} + + {instructor?.difficulty_rating ? `${instructor.difficulty_rating}` : "N/A"} + + + + Course rating{" "} + {courseRating ? `${courseRating}` : "N/A"} + + + Tags:{" "} + {instructor?.tags ? ( + instructor.tags.split(",").map((tag, index) => ( + + {tag} + + )) + ) : ( + N/A + )} + diff --git a/client/src/utils/index.ts b/client/src/utils/index.ts index 11398cd..4de5991 100644 --- a/client/src/utils/index.ts +++ b/client/src/utils/index.ts @@ -92,3 +92,38 @@ export function extractGrades(grades: Grades): UserFriendlyGrades { return ret; } + +// normalize name with RMP standard (from Evan's Python script) +// https://github.com/emw8105/professor-ratings-script/blob/main/aggregator.py +export function normalizeName(name: string): string { + if (name === "Yu Chung Vincent Ng") return "yu chung ng"; + // Trim leading and trailing spaces + name = name.trim(); + + // Standardize comma spacing + name = name.replace(/\s*,\s*/g, ", "); + + // Remove middle initials + // name = name.replace(/\s+[A-Z](\.[A-Z])*\s*$/, ""); + name = name.replace(/(\b[A-Z])\s+(?=[A-Z][a-z]+)/g, ""); + + // Add space between initials (e.g., "J.P." → "J P") + name = name.replace(/([A-Z])\.([A-Z])/g, "$1 $2"); + + // Remove periods and extra spaces + name = name.replace(/[.\s]+/g, " "); + + // Remove different types of apostrophes + name = name.replace(/[’'ʻ`]/g, ""); + + // Replace hyphens with spaces + name = name.replace(/-/g, " "); + + // Handle "Last, First" format by swapping and converting to lowercase + if (name.includes(", ")) { + const [last, first] = name.split(", ", 2); + return `${first?.trim().toLowerCase()} ${last?.trim().toLowerCase()}`; + } else { + return name.trim().toLowerCase(); + } +} diff --git a/db/db_schema.sql b/db/db_schema.sql index b91f135..0b6f66c 100644 --- a/db/db_schema.sql +++ b/db/db_schema.sql @@ -4,6 +4,34 @@ CREATE TABLE strings string VARCHAR NOT NULL ); +CREATE TABLE instructors +( + id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, + rmp_id VARCHAR, + name TEXT NOT NULL, + url TEXT, + instructor_id TEXT NOT NULL, + quality_rating FLOAT, + difficulty_rating FLOAT, + would_take_again FLOAT, + ratings_count INTEGER, + tags TEXT, + overall_grade_rating FLOAT, + total_grade_count INTEGER +); + + +CREATE TABLE course_ratings +( + id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, + instructor_id TEXT REFERENCES instructors(instructor_id), + instructor_name TEXT, + course_code VARCHAR, + rating TEXT +); + + + CREATE TABLE grades ( id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, diff --git a/db/src/import/index.ts b/db/src/import/index.ts index a71c14b..41270ce 100644 --- a/db/src/import/index.ts +++ b/db/src/import/index.ts @@ -3,6 +3,7 @@ import * as fs from "fs/promises"; import * as path from "path"; import initSqlJs, { Database } from "sql.js"; import type { GradesRow } from "../types/GradesRow"; +import type { RMPCourseRating, RMPInstructor } from "../types/RMPInstructors"; function reorderName(name: string): string { const parts = name.split(", "); @@ -91,6 +92,7 @@ async function parseCsv(filePath: string): Promise[]> { }) as Record[]; // csv.parse returns `any` for some reason. This should be safe } +// Parse CSV raw data files async function parseDataDir(dataDir: string): Promise<[Map, GradesRow[]]> { const strings = new Map(); @@ -108,6 +110,10 @@ async function parseDataDir(dataDir: string): Promise<[Map, Grad const grades: GradesRow[] = []; for (const fileName of await fs.readdir(dataDir)) { + if (!fileName.endsWith(".csv")) { + continue; + } + const semester = path.parse(fileName).name; add(semester); @@ -138,6 +144,88 @@ function insertStrings(db: Database, strings: Map) { stmt.free(); } +async function insertInstructors(db: Database, jsonFilePath: string) { + const fileContents = await fs.readFile(jsonFilePath, "utf-8"); + + const parsedData: Record = JSON.parse(fileContents); + + const instructors: RMPInstructor[] = []; + // insert instructors (but not the course ratings, they will be another table) + + Object.entries(parsedData).forEach(([name, allData]) => { + allData.forEach((instructor: RMPInstructor) => { + if (instructor.tags) { + instructor.tags = Object.values(instructor?.tags) + .map((tag) => tag.trim()) + .join(","); + } + + instructors.push({ + name: name ?? null, + rmp_id: instructor.rmp_id ?? null, + url: instructor.url ?? null, + instructor_id: instructor.instructor_id, + quality_rating: instructor.quality_rating ?? null, + difficulty_rating: instructor.difficulty_rating ?? null, + would_take_again: instructor.would_take_again ?? null, + ratings_count: instructor.ratings_count ?? null, + tags: instructor.tags ?? null, + overall_grade_rating: instructor.overall_grade_rating ?? null, + total_grade_count: instructor.total_grade_count ?? null, + } as RMPInstructor); + }); + }); + + const stmt = db.prepare(` + INSERT INTO instructors(name, rmp_id, url, instructor_id, quality_rating, difficulty_rating,would_take_again, ratings_count, tags, overall_grade_rating,total_grade_count) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) + `); + + for (const instructor of instructors) { + stmt.run([ + instructor.name, + instructor.rmp_id, + instructor.url, + instructor.instructor_id, + instructor.quality_rating, + instructor.difficulty_rating, + instructor.would_take_again, + instructor.ratings_count, + instructor.tags, + instructor.overall_grade_rating, + instructor.total_grade_count, + ]); + } + + stmt.free(); + + const courseRatings: RMPCourseRating[] = []; + Object.entries(parsedData).forEach(([name, allData]) => { + allData.forEach((instructor: RMPInstructor) => { + if (instructor.course_ratings) { + Object.entries(instructor.course_ratings).forEach(([course_code, rating]) => { + courseRatings.push({ + instructor_name: name, + instructor_id: instructor.instructor_id, + course_code, + rating, + }); + }); + } + }); + }); + + // insert course ratings + const stmt1 = db.prepare(` + INSERT INTO course_ratings(instructor_name, instructor_id, course_code, rating) VALUES (?, ?, ?, ?)`); + + for (const course of courseRatings) { + stmt1.run([course.instructor_name, course.instructor_id, course.course_code, course.rating]); + } + + stmt1.free(); +} + async function createDb(): Promise { const SQL = await initSqlJs(); const db = new SQL.Database(); @@ -149,8 +237,11 @@ async function createDb(): Promise { db.exec("BEGIN"); + await insertInstructors(db, "../raw_data/matched_professor_data.json"); + insertStrings(db, strings); + // insert instructors const stmt = db.prepare(` INSERT INTO grades(id, aPlus, a, aMinus, bPlus, b, bMinus, cPlus, c, cMinus, dPlus, d, dMinus, f, cr, nc, p, w, i, nf, semesterId, subjectId, catalogNumberId, sectionId, instructor1Id, instructor2Id, instructor3Id, instructor4Id, instructor5Id, instructor6Id) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`); diff --git a/db/src/index.ts b/db/src/index.ts index fcd26a0..ece03d7 100644 --- a/db/src/index.ts +++ b/db/src/index.ts @@ -2,3 +2,4 @@ export * from "./search/GradesDatabase"; export * from "./types/Grades"; +export * from "./types/RMPInstructors"; diff --git a/db/src/search/GradesDatabase.ts b/db/src/search/GradesDatabase.ts index 30a787a..fb8c6bb 100644 --- a/db/src/search/GradesDatabase.ts +++ b/db/src/search/GradesDatabase.ts @@ -1,6 +1,7 @@ +import type { RMPInstructor } from "@utd-grades/db"; import type { Database } from "sql.js"; import type { Grades } from "../types/Grades"; -import { createWhereString, rowToGrades, SEASONS } from "./utils"; +import { createWhereString, rowToGrades, rowToInstructor, SEASONS } from "./utils"; export class GradesDatabase { protected db: Database; @@ -55,6 +56,35 @@ export class GradesDatabase { return grades; } + getInstructorsByName(name: string): RMPInstructor[] { + const instructors: RMPInstructor[] = []; + const stmt = this.db.prepare(`SELECT * FROM instructors WHERE name LIKE ?`); + stmt.bind([name]); // Bind the value properly with wildcards + + while (stmt.step()) { + const instructor = rowToInstructor(stmt.getAsObject()); + if (instructor) { + instructors.push(instructor); + } + } + + stmt.free(); + + return instructors; + } + + getCourseRating(instructor_id: string, course_code: string): number | null { + const stmt = this.db.prepare( + `SELECT * FROM course_ratings WHERE instructor_id LIKE ? AND course_code LIKE ?` + ); + stmt.bind([instructor_id, course_code]); + + const result = stmt.step() ? (stmt.getAsObject()["rating"] as number) : null; + + stmt.free(); + return result; + } + /** * Provide options for autocomplete (partial) queries * @param partialQuery @@ -65,7 +95,9 @@ export class GradesDatabase { const strings: string[] = []; const stmt = this.db.prepare( - `SELECT string FROM autocomplete_strings WHERE ${createWhereString(partialQuery)} ORDER BY priority` + `SELECT string FROM autocomplete_strings WHERE ${createWhereString( + partialQuery + )} ORDER BY priority` ); while (stmt.step()) { diff --git a/db/src/search/utils.ts b/db/src/search/utils.ts index f71f011..3e8b6fd 100644 --- a/db/src/search/utils.ts +++ b/db/src/search/utils.ts @@ -1,3 +1,4 @@ +import type { RMPInstructor } from "@utd-grades/db"; import type { ParamsObject } from "sql.js"; import type { Grades, Season } from "../types/Grades"; @@ -99,6 +100,24 @@ export function rowToGrades(row: ParamsObject): Grades | null { }; } +export function rowToInstructor(row: ParamsObject): RMPInstructor | null { + return { + name: row["name"] as string, + rmp_id: row["rmp_id"] as string, + url: row["url"] as string, + instructor_id: row["instructor_id"] as string, + quality_rating: row["quality_rating"] as number, + + difficulty_rating: row["difficulty_rating"] as number, + would_take_again: row["would_take_again"] as number, + ratings_count: row["ratings_count"] as number, + tags: row["tags"] as string, + course_ratings: row["course_ratings"] as string, + overall_grade_rating: row["overall_grade_rating"] as number, + total_grade_count: row["total_grade_count"] as number, + }; +} + export function parseSeason(s: string): Season { if (s !== "Spring" && s !== "Summer" && s !== "Fall") { throw new Error(`"${s}" is not a season.`); diff --git a/db/src/types/RMPInstructors.ts b/db/src/types/RMPInstructors.ts new file mode 100644 index 0000000..550a5d1 --- /dev/null +++ b/db/src/types/RMPInstructors.ts @@ -0,0 +1,21 @@ +export interface RMPInstructor { + name: string; + rmp_id: string | null; + url: string | null; + instructor_id: string; + quality_rating: number | null; + difficulty_rating: number | null; + would_take_again: number | null; + ratings_count: number | null; + tags: string | null; + course_ratings: string | null; + overall_grade_rating: number | null; + total_grade_count: number | null; +} + +export interface RMPCourseRating { + instructor_name: string; + instructor_id: string; + course_code: string; + rating: string; +} diff --git a/raw_data/matched_professor_data.json b/raw_data/matched_professor_data.json new file mode 100644 index 0000000..e0bb386 --- /dev/null +++ b/raw_data/matched_professor_data.json @@ -0,0 +1,57871 @@ +{ + "yu chung ng": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/505677", + "quality_rating": 3.7, + "difficulty_rating": 4.5, + "would_take_again": 57, + "original_rmp_format": "Vincent Ng", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 34, + "tags": [ + "Lots of homework", + "Respected", + "Tough grader", + "Skip class? You won't pass.", + "Amazing lectures " + ], + "rmp_id": "505677", + "instructor_id": "ycn041000", + "overall_grade_rating": 3.25, + "total_grade_count": 339, + "course_ratings": { + "CS4375": 3.14, + "CS4365": 3.41 + } + } + ], + "jing pan": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2034343", + "quality_rating": 2.8, + "difficulty_rating": 3.9, + "would_take_again": 41, + "original_rmp_format": "Jing Pan", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 23, + "tags": [ + "Tough grader", + "Gives good feedback", + "Test heavy", + "Accessible outside class", + "Get ready to read" + ], + "rmp_id": "2034343", + "instructor_id": "jxp134330", + "overall_grade_rating": 3.78, + "total_grade_count": 767, + "course_ratings": { + "BIOL3102": 3.57, + "BIOL3380": 3.71, + "BIOL5375": 4.37 + } + } + ], + "amena khan": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2233269", + "quality_rating": 3.5, + "difficulty_rating": 3.1, + "would_take_again": 57, + "original_rmp_format": "Amena Khan", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 61, + "tags": [ + "Beware of pop quizzes", + "EXTRA CREDIT", + "Caring", + "Participation matters", + "Get ready to read" + ], + "rmp_id": "2233269", + "instructor_id": "axk140130", + "overall_grade_rating": 4.42, + "total_grade_count": 3648, + "course_ratings": { + "PHYS2303": 3.53, + "PHYS2125": 4.58, + "PHYS1101": 4.79, + "ISNS3373": 3.72, + "PHYS1301": 4.02 + } + } + ], + "ramesh padmanabhan": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2632234", + "quality_rating": 2.7, + "difficulty_rating": 3.2, + "would_take_again": 50, + "original_rmp_format": "Ramesh Padmanabhan", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 58, + "tags": ["Get ready to read", "Lecture heavy", "Tough grader", "Test heavy", "EXTRA CREDIT"], + "rmp_id": "2632234", + "instructor_id": "rxp104120", + "overall_grade_rating": 3.92, + "total_grade_count": 2524, + "course_ratings": { + "BIOL3455": 2.44, + "BIOL2111": 4.48, + "BIOL2311": 4.47, + "BIOL2112": 3.96, + "BIOL2312": 3.95 + } + } + ], + "floyd dorsey": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1711252", + "quality_rating": 4.5, + "difficulty_rating": 2.4, + "would_take_again": 82, + "original_rmp_format": "Floyd Dorsey", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 13, + "tags": [ + "Get ready to read", + "Clear grading criteria", + "Gives good feedback", + "So many papers", + "Respected" + ], + "rmp_id": "1711252", + "instructor_id": "fzd110020", + "overall_grade_rating": 4.41, + "total_grade_count": 342, + "course_ratings": { + "NATS1141": 3.86, + "NATS3343": 4.28, + "NATS3341": 4.44, + "NATS1143": 3.61, + "NATS4141": 4.98, + "NATS4694": 4.93 + } + } + ], + "sandhya gavva": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/185981", + "quality_rating": 2.8, + "difficulty_rating": 3.1, + "would_take_again": 41, + "original_rmp_format": "Sandhya Gavva", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 158, + "tags": [ + "Skip class? You won't pass.", + "Test heavy", + "Accessible outside class", + "Lecture heavy", + "Participation matters" + ], + "rmp_id": "185981", + "instructor_id": "sgavva", + "overall_grade_rating": 3.75, + "total_grade_count": 4129, + "course_ratings": { + "CHEM1111": 3.92, + "CHEM1112": 4.43, + "CHEM1311": 3.01, + "BIOL3161": 3.73, + "BIOL3361": 3.72, + "CHEM3361": 3.7, + "BIOL3461": 4.31, + "CHEM3461": 4.35, + "CHEM1312": 2.28 + } + } + ], + "octavious smiley": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2941177", + "quality_rating": 3.3, + "difficulty_rating": 3.9, + "would_take_again": 54, + "original_rmp_format": "Octavious Smiley", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 59, + "tags": [ + "Beware of pop quizzes", + "Tough grader", + "Accessible outside class", + "Lecture heavy", + "Caring" + ], + "rmp_id": "2941177", + "instructor_id": "oxs230011", + "overall_grade_rating": 3.54, + "total_grade_count": 756, + "course_ratings": { + "CS3341": 3.12, + "STAT3355": 4.37, + "SE3341": 2.9 + } + } + ], + "kathleen byrnes": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/1443345", + "quality_rating": 2.7, + "difficulty_rating": 3.4, + "would_take_again": 27, + "original_rmp_format": "Kathleen Byrnes", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 59, + "tags": [ + "Tough grader", + "Lecture heavy", + "Test heavy", + "Graded by few things", + "Participation matters" + ], + "rmp_id": "1443345", + "instructor_id": "kab019000", + "overall_grade_rating": 3.81, + "total_grade_count": 3210, + "course_ratings": { + "HLTH3300": 3.81, + "HLTH3305": 3.14, + "HLTH3315": 3.83, + "HLTH4304": 4.65, + "HLTH1100": 3.84, + "HLTH3301": 3.17 + } + } + ], + "sean cotter": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2800284", + "quality_rating": 2.6, + "difficulty_rating": 4.1, + "would_take_again": 11, + "original_rmp_format": "Sean Cotter", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 51, + "tags": [ + "Graded by few things", + "Tough grader", + "Lecture heavy", + "Get ready to read", + "Accessible outside class" + ], + "rmp_id": "2800284", + "instructor_id": "sjc010100", + "overall_grade_rating": 3.52, + "total_grade_count": 187, + "course_ratings": { + "LIT3312": 3.27, + "LIT3337": 3.43, + "LIT6319": 4.49, + "LIT3319": 3.32, + "LIT6326": 3.9, + "LIT3310": 3.55, + "LIT1301": 3.1, + "LIT4390": 3.98, + "LIT2350": 3.65 + } + } + ], + "sarmann kennedyd": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2862292", + "quality_rating": 4.1, + "difficulty_rating": 2.6, + "would_take_again": 85, + "original_rmp_format": "Sarmann Kennedyd", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 42, + "tags": [ + "Group projects", + "Participation matters", + "Amazing lectures ", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "2862292", + "instructor_id": "sik220001", + "overall_grade_rating": 3.82, + "total_grade_count": 1369, + "course_ratings": { + "OPRE3330": 3.67, + "OPRE3360": 3.78, + "OPRE6362": 4.35, + "SYSM6311": 4.31, + "OPRE3310": 3.77 + } + } + ], + "shengjie jiang": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/2838300", + "quality_rating": 2, + "difficulty_rating": 4, + "would_take_again": 26, + "original_rmp_format": "Shengjie Jiang", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 39, + "tags": [ + "Beware of pop quizzes", + "Lecture heavy", + "Tough grader", + "EXTRA CREDIT", + "Lots of homework" + ], + "rmp_id": "2838300", + "instructor_id": "sxj220069", + "overall_grade_rating": 3.54, + "total_grade_count": 1477, + "course_ratings": { + "CS3341": 3.54, + "SE3341": 3.23, + "STAT2332": 3.56, + "STAT4354": 3.98 + } + } + ], + "john gooch": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1415007", + "quality_rating": 1.7, + "difficulty_rating": 4.2, + "would_take_again": 24, + "original_rmp_format": "John Gooch", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 22, + "tags": [ + "Graded by few things", + "Tough grader", + "Participation matters", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "1415007", + "instructor_id": "jcg053000", + "overall_grade_rating": 4.25, + "total_grade_count": 404, + "course_ratings": { + "HONS3199": 4.38, + "RHET2302": 3.72, + "ATCM2340": 4.28, + "HUMA1301": 4.08, + "COMM3321": 3.79, + "RHET4303": 3.62, + "COMM3342": 4.88 + } + } + ], + "sergey bereg": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/462041", + "quality_rating": 3.9, + "difficulty_rating": 2.8, + "would_take_again": 65, + "original_rmp_format": "Sergey Bereg", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 138, + "tags": [ + "Respected", + "Test heavy", + "Graded by few things", + "Get ready to read", + "Lots of homework" + ], + "rmp_id": "462041", + "instructor_id": "sxb027100", + "overall_grade_rating": 4.21, + "total_grade_count": 768, + "course_ratings": { + "CS6363": 4.39, + "CS2305": 4.17, + "CE2305": 4.07, + "CS4349": 4.01, + "CS3345": 3.49, + "SE3345": 2.88 + } + } + ], + "jeyakesavan veerasamy": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1490925", + "quality_rating": 3.4, + "difficulty_rating": 3.6, + "would_take_again": 67, + "original_rmp_format": "Jeyakesavan Veerasamy", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 135, + "tags": [ + "Caring", + "Lots of homework", + "Accessible outside class", + "Participation matters", + "Lecture heavy" + ], + "rmp_id": "1490925", + "instructor_id": "veerasam", + "overall_grade_rating": 3.95, + "total_grade_count": 1865, + "course_ratings": { + "CS1336": 3.92, + "CS1334": 3.84, + "CS4485": 4.72, + "CS2336": 4.01, + "CS3377": 3.92, + "CS1335": 3.71, + "CS2337": 4.26, + "CS1436": 3.5, + "CS1337": 3.56, + "SE3377": 3.98, + "CS3354": 4.61, + "CS1134": 4.44 + } + } + ], + "khatereh ahadi": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/2412703", + "quality_rating": 4.2, + "difficulty_rating": 3.1, + "would_take_again": 82, + "original_rmp_format": "Khatereh Ahadi", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 77, + "tags": [ + "Caring", + "Clear grading criteria", + "Test heavy", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "2412703", + "instructor_id": "kxa180010", + "overall_grade_rating": 4.0, + "total_grade_count": 2190, + "course_ratings": { + "OPRE3333": 3.89, + "OPRE3360": 4.01, + "OPRE6301": 4.07, + "BUAN6359": 3.91, + "OPRE6359": 4.17 + } + } + ], + "p l stephan thamban": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2017860", + "quality_rating": 2.6, + "difficulty_rating": 4.2, + "would_take_again": 39, + "original_rmp_format": "P.L. Stephan Thamban", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 67, + "tags": ["Tough grader", "Lecture heavy", "Respected", "Test heavy", "Lots of homework"], + "rmp_id": "2017860", + "instructor_id": "stephan", + "overall_grade_rating": 3.54, + "total_grade_count": 1404, + "course_ratings": { + "MECH2310": 3.44, + "MECH2330": 3.45, + "MECH7392": 3.98, + "MECH1208": 4.1, + "ENGR3300": 2.9, + "MECH7393": 3.82 + } + } + ], + "divakar rajamani": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1423904", + "quality_rating": 3.8, + "difficulty_rating": 3, + "would_take_again": 60, + "original_rmp_format": "Divakar Rajamani", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 16, + "tags": [ + "Lots of homework", + "Amazing lectures ", + "Tough grader", + "Respected", + "Accessible outside class" + ], + "rmp_id": "1423904", + "instructor_id": "dxr020100", + "overall_grade_rating": 4.25, + "total_grade_count": 698, + "course_ratings": { + "OPRE6379": 4.22, + "OPRE6302": 4.24, + "OPRE6364": 4.52 + } + } + ], + "maria loumioti": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2363390", + "quality_rating": 3.8, + "difficulty_rating": 3.3, + "would_take_again": 67, + "original_rmp_format": "Maria Loumioti", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 12, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Gives good feedback", + "Get ready to read", + "Clear grading criteria" + ], + "rmp_id": "2363390", + "instructor_id": "mxl175830", + "overall_grade_rating": 4.3, + "total_grade_count": 346, + "course_ratings": { + "ACCT6305": 4.3 + } + } + ], + "maria albrecht": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2960873", + "quality_rating": 5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Maria Albrecht", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 12, + "tags": [ + "Group projects", + "Accessible outside class", + "Gives good feedback", + "Amazing lectures ", + "Inspirational" + ], + "rmp_id": "2960873", + "instructor_id": "mxa180037", + "overall_grade_rating": 4.53, + "total_grade_count": 300, + "course_ratings": { + "BPS4396": 4.51, + "MKT4360": 4.55 + } + } + ], + "lidong wu": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2869150", + "quality_rating": 2.3, + "difficulty_rating": 3.4, + "would_take_again": 30, + "original_rmp_format": "Lidong Wu", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 10, + "tags": [ + "Group projects", + "Lecture heavy", + "Test heavy", + "Graded by few things", + "Participation matters" + ], + "rmp_id": "2869150", + "instructor_id": "lxw097120", + "overall_grade_rating": 4.57, + "total_grade_count": 804, + "course_ratings": { + "BUAN6320": 4.52, + "BUAN6341": 4.59, + "BUAN6342": 4.55, + "ITSS4312": 4.74, + "ITSS4382": 4.53, + "ITSS4380": 4.58 + } + } + ], + "soraya fatehi": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2613221", + "quality_rating": 3.8, + "difficulty_rating": 4, + "would_take_again": 57, + "original_rmp_format": "Soraya Fatehi", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 8, + "tags": ["Lots of homework", "Lecture heavy", "Tough grader", "Amazing lectures ", "Caring"], + "rmp_id": "2613221", + "instructor_id": "sxf200005", + "overall_grade_rating": 3.16, + "total_grade_count": 270, + "course_ratings": { + "OPRE3320": 3.11, + "OPRE4345": 3.61, + "MKT4333": 2.79 + } + } + ], + "neda mirzaeian": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2892161", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 67, + "original_rmp_format": "Neda Mirzaeian", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 3, + "tags": [ + "Lots of homework", + "Lecture heavy", + "Group projects", + "Clear grading criteria", + "So many papers" + ], + "rmp_id": "2892161", + "instructor_id": "nxm220040", + "overall_grade_rating": 3.98, + "total_grade_count": 342, + "course_ratings": { + "OPRE3310": 3.77, + "OPRE6302": 4.25 + } + } + ], + "stefanie boyd": [ + { + "department": "Biochemistry", + "url": "https://www.ratemyprofessors.com/professor/2730513", + "quality_rating": 2.4, + "difficulty_rating": 3.8, + "would_take_again": 34, + "original_rmp_format": "Stefanie Boyd", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 68, + "tags": ["Test heavy", "Graded by few things", "EXTRA CREDIT", "Lecture heavy", "Caring"], + "rmp_id": "2730513", + "instructor_id": "sdb074000", + "overall_grade_rating": 3.88, + "total_grade_count": 1916, + "course_ratings": { + "BIOL3361": 3.71, + "CHEM3361": 3.61, + "BIOL3161": 4.03, + "BIOL3203": 4.45, + "BIOL3461": 3.92, + "CHEM3461": 3.85, + "BIOL3303": 3.9, + "BIOL4461": 3.88, + "BIOL3362": 3.71 + } + } + ], + "ashwin venkataraman": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2576540", + "quality_rating": 2.4, + "difficulty_rating": 3.1, + "would_take_again": 43, + "original_rmp_format": "ashwin Venkataraman", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 14, + "tags": [ + "Test heavy", + "Clear grading criteria", + "Lots of homework", + "Lecture heavy", + "Tough grader" + ], + "rmp_id": "2576540", + "instructor_id": "axv190029", + "overall_grade_rating": 3.83, + "total_grade_count": 435, + "course_ratings": { + "OPRE3310": 3.78, + "OPRE7343": 4.4 + } + } + ], + "john flippen": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/2994929", + "quality_rating": 4.7, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "John Flippen", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Inspirational", + "Hilarious", + "Beware of pop quizzes" + ], + "rmp_id": "2994929", + "instructor_id": "jbf230002", + "overall_grade_rating": 3.34, + "total_grade_count": 236, + "course_ratings": { + "HIST2330": 3.34 + } + } + ], + "thomas lavastida": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2869143", + "quality_rating": 1, + "difficulty_rating": 4.3, + "would_take_again": 0, + "original_rmp_format": "Thomas Lavastida", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 3, + "tags": ["Tough grader", "So many papers", "Test heavy"], + "rmp_id": "2869143", + "instructor_id": "txl220018", + "overall_grade_rating": 4.3, + "total_grade_count": 179, + "course_ratings": { + "BUAN6340": 4.3 + } + } + ], + "nam nguyen": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2892879", + "quality_rating": 5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Nam Nguyen", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 2, + "tags": [ + "Caring", + "Participation matters", + "Clear grading criteria", + "Accessible outside class" + ], + "rmp_id": "2892879", + "instructor_id": "nhn150030", + "overall_grade_rating": 4.09, + "total_grade_count": 161, + "course_ratings": { + "FIN4300": 4.41, + "FIN3320": 3.88 + } + } + ], + "uma srikanth": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1192135", + "quality_rating": 3.7, + "difficulty_rating": 3.2, + "would_take_again": 66, + "original_rmp_format": "Uma Srikanth", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 169, + "tags": [ + "Lecture heavy", + "Amazing lectures ", + "Caring", + "Test heavy", + "Accessible outside class" + ], + "rmp_id": "1192135", + "instructor_id": "ukrish", + "overall_grade_rating": 4.07, + "total_grade_count": 8571, + "course_ratings": { + "BIOL2111": 4.04, + "BIOL2311": 4.03, + "BIOL3102": 4.11, + "BIOL4356": 4.42, + "BIOL6343": 4.7, + "BIOL3402": 4.17, + "BIOL3302": 3.87, + "BIOL4357": 4.83, + "BIOL3101": 4.16, + "BIOL3301": 4.16 + } + } + ], + "zygmunt haas": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2346600", + "quality_rating": 2.4, + "difficulty_rating": 4.1, + "would_take_again": 26, + "original_rmp_format": "Zygmunt Haas", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 31, + "tags": [ + "Lecture heavy", + "Test heavy", + "Tough grader", + "Lots of homework", + "Get ready to read" + ], + "rmp_id": "2346600", + "instructor_id": "zjh130030", + "overall_grade_rating": 3.71, + "total_grade_count": 601, + "course_ratings": { + "CS6301": 4.39, + "CS3341": 3.75, + "SE3341": 2.82, + "CS4390": 3.58, + "CS6390": 4.27, + "CE4390": 3.47, + "CS6340": 4.42 + } + } + ], + "wade crowder": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/1998923", + "quality_rating": 1.4, + "difficulty_rating": 4.3, + "would_take_again": 4, + "original_rmp_format": "Wade Crowder", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 30, + "tags": [ + "Tough grader", + "Participation matters", + "So many papers", + "Group projects", + "Graded by few things" + ], + "rmp_id": "1998923", + "instructor_id": "wac010100", + "overall_grade_rating": 3.43, + "total_grade_count": 453, + "course_ratings": { + "ECS3390": 3.45, + "ECS2390": 3.35 + } + } + ], + "kyle hammonds": [ + { + "department": "Interdisciplinary Studies", + "url": "https://www.ratemyprofessors.com/professor/3056052", + "quality_rating": 2, + "difficulty_rating": 3.7, + "would_take_again": 14, + "original_rmp_format": "Kyle Hammonds", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 7, + "tags": [ + "Tough grader", + "So many papers", + "EXTRA CREDIT", + "Get ready to read", + "Lots of homework" + ], + "rmp_id": "3056052", + "instructor_id": "kxh230016", + "overall_grade_rating": 4.28, + "total_grade_count": 257, + "course_ratings": { + "BIS1100": 4.77, + "BIS3320": 4.27, + "AMS2300": 4.07 + } + } + ], + "scott dollinger": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2523207", + "quality_rating": 3.9, + "difficulty_rating": 2.4, + "would_take_again": 74, + "original_rmp_format": "Scott Dollinger", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 186, + "tags": [ + "Clear grading criteria", + "EXTRA CREDIT", + "Respected", + "Caring", + "Graded by few things" + ], + "rmp_id": "2523207", + "instructor_id": "smd013000", + "overall_grade_rating": 4.28, + "total_grade_count": 1939, + "course_ratings": { + "CS1336": 4.16, + "CS1337": 4.1, + "CS2337": 4.53, + "CS1334": 3.9, + "CS1436": 4.4, + "CS3377": 4.56, + "SE3377": 4.36 + } + } + ], + "barbara baker": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1996241", + "quality_rating": 2.4, + "difficulty_rating": 3.8, + "would_take_again": 27, + "original_rmp_format": "Barbara Baker", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 57, + "tags": [ + "Tough grader", + "Participation matters", + "Gives good feedback", + "Lots of homework", + "Skip class? You won't pass." + ], + "rmp_id": "1996241", + "instructor_id": "blb140430", + "overall_grade_rating": 3.62, + "total_grade_count": 620, + "course_ratings": { + "COMM1311": 3.61, + "COMM3351": 3.5, + "VPAS3340": 3.69, + "VPAS4389": 3.9, + "COMM1320": 3.79 + } + } + ], + "william grover": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2446594", + "quality_rating": 3.1, + "difficulty_rating": 3.9, + "would_take_again": 53, + "original_rmp_format": "William Grover", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 32, + "tags": [ + "Tough grader", + "Participation matters", + "Beware of pop quizzes", + "Lecture heavy", + "Get ready to read" + ], + "rmp_id": "2446594", + "instructor_id": "wcg071000", + "overall_grade_rating": 3.86, + "total_grade_count": 970, + "course_ratings": { + "ECON6306": 4.74, + "ECON3381": 3.82, + "ECON4396": 4.07, + "PPPE6352": 4.45, + "ECON3311": 4.19, + "ECON4351": 3.91, + "ECON6305": 4.03, + "ECON2302": 3.12, + "EPPS6313": 4.08, + "ECON5322": 4.93, + "IPEC3349": 4.05, + "ECON4381": 4.02, + "PSCI4396": 3.57 + } + } + ], + "arun kumar": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/3079684", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Arun Kumar", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 1, + "tags": ["Group projects"], + "rmp_id": "3079684", + "instructor_id": "dal340664", + "overall_grade_rating": 4.79, + "total_grade_count": 46, + "course_ratings": { + "BPS4395": 4.79 + } + } + ], + "mohammad akbar": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1577575", + "quality_rating": 4.5, + "difficulty_rating": 2.7, + "would_take_again": 81, + "original_rmp_format": "Mohammad Akbar", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 76, + "tags": ["Amazing lectures ", "Hilarious", "Inspirational", "Respected", "Caring"], + "rmp_id": "1577575", + "instructor_id": "mma110020", + "overall_grade_rating": 3.28, + "total_grade_count": 911, + "course_ratings": { + "MATH2413": 2.85, + "MATH1326": 3.22, + "PHYS6300": 4.49, + "MATH3321": 3.94, + "MATH2415": 3.65, + "PHYS2326": 3.16, + "MATH2312": 4.46 + } + } + ], + "keith dickinson": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1165792", + "quality_rating": 3.7, + "difficulty_rating": 2.6, + "would_take_again": 55, + "original_rmp_format": "Keith Dickinson", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 49, + "tags": [ + "Tough grader", + "Group projects", + "Clear grading criteria", + "Gives good feedback", + "Beware of pop quizzes" + ], + "rmp_id": "1165792", + "instructor_id": "kxd084000", + "overall_grade_rating": 4.38, + "total_grade_count": 342, + "course_ratings": { + "MKT4338": 4.44, + "MKT3300": 4.07 + } + } + ], + "magdalena grohman": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/1892913", + "quality_rating": 2.4, + "difficulty_rating": 4.1, + "would_take_again": 40, + "original_rmp_format": "Magdalena Grohman", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 8, + "tags": [ + "Lots of homework", + "Get ready to read", + "Tough grader", + "Participation matters", + "Tests are tough" + ], + "rmp_id": "1892913", + "instructor_id": "mgg092000", + "overall_grade_rating": 3.78, + "total_grade_count": 182, + "course_ratings": { + "PSY3355": 3.66, + "ARHM2340": 3.86 + } + } + ], + "swati anwesha": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/3048147", + "quality_rating": 4, + "difficulty_rating": 2.5, + "would_take_again": 50, + "original_rmp_format": "Swati Anwesha", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 2, + "tags": [ + "Get ready to read", + "Participation matters", + "Gives good feedback", + "Lots of homework", + "Caring" + ], + "rmp_id": "3048147", + "instructor_id": "sax210000", + "overall_grade_rating": 3.99, + "total_grade_count": 165, + "course_ratings": { + "RHET1302": 3.99, + "LIT2331": 3.99 + } + } + ], + "trey egan": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2131258", + "quality_rating": 4.5, + "difficulty_rating": 3.2, + "would_take_again": 87, + "original_rmp_format": "Trey Egan", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 47, + "tags": [ + "Gives good feedback", + "Respected", + "Inspirational", + "Caring", + "Participation matters" + ], + "rmp_id": "2131258", + "instructor_id": "tte150130", + "overall_grade_rating": 4.25, + "total_grade_count": 283, + "course_ratings": { + "ARTS2316": 4.51, + "ARTS2380": 3.98 + } + } + ], + "karl sengupta": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/2155948", + "quality_rating": 5, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "Karl Sengupta", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 22, + "tags": [ + "Gives good feedback", + "Caring", + "Respected", + "Accessible outside class", + "Inspirational" + ], + "rmp_id": "2155948", + "instructor_id": "kss140330", + "overall_grade_rating": 4.67, + "total_grade_count": 258, + "course_ratings": { + "RHET1302": 4.81, + "ATCM4384": 4.59 + } + } + ], + "holly kosiewicz": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2620458", + "quality_rating": 2.1, + "difficulty_rating": 4.2, + "would_take_again": 28, + "original_rmp_format": "Holly Kosiewicz", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 18, + "tags": [ + "Tough grader", + "EXTRA CREDIT", + "Lecture heavy", + "Accessible outside class", + "Get ready to read" + ], + "rmp_id": "2620458", + "instructor_id": "hxk200027", + "overall_grade_rating": 3.23, + "total_grade_count": 424, + "course_ratings": { + "EPPS2301": 3.23 + } + } + ], + "audra heaslip": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2758739", + "quality_rating": 3.7, + "difficulty_rating": 2.8, + "would_take_again": 56, + "original_rmp_format": "Audra Heaslip", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 9, + "tags": [ + "Caring", + "So many papers", + "Get ready to read", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "2758739", + "instructor_id": "axh027000", + "overall_grade_rating": 4.06, + "total_grade_count": 419, + "course_ratings": { + "ATCM3301": 4.05, + "ATCM4326": 4.19 + } + } + ], + "john cole": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/983152", + "quality_rating": 3.1, + "difficulty_rating": 3.5, + "would_take_again": 46, + "original_rmp_format": "John Cole", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 188, + "tags": ["Tough grader", "Get ready to read", "Test heavy", "Lots of homework", "Respected"], + "rmp_id": "983152", + "instructor_id": "jxc064000", + "overall_grade_rating": 3.9, + "total_grade_count": 2024, + "course_ratings": { + "CS6360": 4.06, + "CS1200": 4.26, + "CS6326": 4.31, + "CE2336": 3.94, + "CS2336": 3.63, + "CS2340": 2.25, + "CS3162": 4.55, + "SE2340": 2.04, + "SE3162": 4.37, + "CS1337": 3.68, + "CS4301": 4.18 + } + } + ], + "lamya saleh": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2583057", + "quality_rating": 3, + "difficulty_rating": 3.3, + "would_take_again": 56, + "original_rmp_format": "Lamya Saleh", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 126, + "tags": [ + "EXTRA CREDIT", + "Caring", + "Lots of homework", + "Test heavy", + "Accessible outside class" + ], + "rmp_id": "2583057", + "instructor_id": "lxs190019", + "overall_grade_rating": 4.54, + "total_grade_count": 4622, + "course_ratings": { + "PHYS2126": 4.71, + "PHYS2326": 3.91, + "PHYS1302": 4.35, + "PHYS2303": 3.21, + "PHYS1102": 4.77, + "PHYS2325": 4.36 + } + } + ], + "rukhsana sultana": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2316561", + "quality_rating": 3.5, + "difficulty_rating": 3.7, + "would_take_again": 57, + "original_rmp_format": "Rukhsana Sultana", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 89, + "tags": ["Lecture heavy", "Accessible outside class", "Test heavy", "Caring", "Tough grader"], + "rmp_id": "2316561", + "instructor_id": "rxs170431", + "overall_grade_rating": 4.08, + "total_grade_count": 1446, + "course_ratings": { + "NSC3361": 3.77, + "NSC4353": 4.5, + "NSC4356": 4.15, + "NSC4352": 4.27, + "NSC4362": 3.86, + "ACN6338": 4.38, + "ACN6346": 4.35, + "NSC4354": 3.85 + } + } + ], + "mary beth goodrich": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/911407", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 44, + "original_rmp_format": "Mary Beth Goodrich", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 83, + "tags": [ + "Lots of homework", + "Participation matters", + "EXTRA CREDIT", + "Group projects", + "Gives good feedback" + ], + "rmp_id": "911407", + "instructor_id": "goodrich", + "overall_grade_rating": 4.03, + "total_grade_count": 1446, + "course_ratings": { + "ACCT6338": 4.13, + "ACCT6388": 4.72, + "ACCT3322": 3.5, + "ACCT3341": 2.95, + "ACCT6341": 4.43, + "BPS4395": 4.18, + "ACCT6330": 4.19, + "ACCT6202": 4.45, + "ENTP4340": 4.65, + "IMS4335": 4.36 + } + } + ], + "yvo desmedt": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1803857", + "quality_rating": 1.8, + "difficulty_rating": 4.4, + "would_take_again": 15, + "original_rmp_format": "Yvo Desmedt", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 50, + "tags": [ + "Tough grader", + "Test heavy", + "Lots of homework", + "Graded by few things", + "Get ready to read" + ], + "rmp_id": "1803857", + "instructor_id": "ygd120030", + "overall_grade_rating": 3.35, + "total_grade_count": 448, + "course_ratings": { + "CS5333": 3.51, + "CS6377": 3.35, + "CS2305": 4.76, + "CS4301": 3.55, + "CS3305": 2.19 + } + } + ], + "shivika mathur": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2534092", + "quality_rating": 2.1, + "difficulty_rating": 3.6, + "would_take_again": 12, + "original_rmp_format": "Shivika Mathur", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 8, + "tags": [ + "Tough grader", + "Participation matters", + "Get ready to read", + "Group projects", + "Caring" + ], + "rmp_id": "2534092", + "instructor_id": "sxm170012", + "overall_grade_rating": 3.93, + "total_grade_count": 230, + "course_ratings": { + "RHET1302": 3.99, + "ECS2390": 3.65 + } + } + ], + "marjan heidari": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/3045724", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Marjan Heidari", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Caring", + "Get ready to read", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "3045724", + "instructor_id": "mxh200009", + "overall_grade_rating": 4.27, + "total_grade_count": 84, + "course_ratings": { + "RHET1302": 4.27 + } + } + ], + "neeraj mittal": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/182843", + "quality_rating": 3.3, + "difficulty_rating": 4.1, + "would_take_again": 50, + "original_rmp_format": "Neeraj Mittal", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 43, + "tags": ["Tough grader", "Group projects", "Test heavy", "Beware of pop quizzes", "Caring"], + "rmp_id": "182843", + "instructor_id": "nxm020100", + "overall_grade_rating": 4.05, + "total_grade_count": 562, + "course_ratings": { + "CS6301": 4.66, + "CS6378": 4.08, + "CS6380": 4.23, + "CS4348": 3.78, + "CS6346": 4.6 + } + } + ], + "roger kadala": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2787773", + "quality_rating": 1.9, + "difficulty_rating": 4.3, + "would_take_again": 30, + "original_rmp_format": "Roger Kadala", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 27, + "tags": [ + "Test heavy", + "EXTRA CREDIT", + "Get ready to read", + "Tough grader", + "Graded by few things" + ], + "rmp_id": "2787773", + "instructor_id": "rxk220001", + "overall_grade_rating": 4.28, + "total_grade_count": 1887, + "course_ratings": { + "PHYS3380": 3.95, + "PHYS5322": 4.61, + "PHYS1302": 4.15, + "PHYS2325": 3.41, + "PHYS2125": 4.77 + } + } + ], + "christian rivera": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2782992", + "quality_rating": 5, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Christian Rivera", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 7, + "tags": [ + "Caring", + "Accessible outside class", + "Amazing lectures ", + "EXTRA CREDIT", + "Respected" + ], + "rmp_id": "2782992", + "instructor_id": "cxr210008", + "overall_grade_rating": 4.38, + "total_grade_count": 628, + "course_ratings": { + "BMEN2320": 3.71, + "BMEN3200": 4.78, + "BMEN3310": 3.96, + "BMEN7088": 4.9, + "BMEN7188": 4.92, + "BMEN3399": 3.99 + } + } + ], + "john gamino": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2014628", + "quality_rating": 3.6, + "difficulty_rating": 3.3, + "would_take_again": 65, + "original_rmp_format": "John Gamino", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 84, + "tags": [ + "Get ready to read", + "Test heavy", + "Lecture heavy", + "Lots of homework", + "Clear grading criteria" + ], + "rmp_id": "2014628", + "instructor_id": "jpg140630", + "overall_grade_rating": 3.92, + "total_grade_count": 2244, + "course_ratings": { + "ACCT6356": 4.51, + "ACCT3350": 3.63, + "ACCT6350": 4.11, + "ACCT6353": 3.99, + "BLAW2301": 3.71, + "ACCT6367": 4.68, + "BA4090": 0.84 + } + } + ], + "mustapha ishak boushaki": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1011121", + "quality_rating": 4.9, + "difficulty_rating": 2.2, + "would_take_again": 99, + "original_rmp_format": "Mustapha Ishak-Boushaki", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 78, + "tags": ["Amazing lectures ", "Caring", "Respected", "Hilarious", "Inspirational"], + "rmp_id": "1011121", + "instructor_id": "mxi054000", + "overall_grade_rating": 3.87, + "total_grade_count": 1517, + "course_ratings": { + "PHYS2325": 3.86, + "PHYS5392": 4.32 + } + } + ], + "peter lewin": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/825139", + "quality_rating": 2.5, + "difficulty_rating": 3.1, + "would_take_again": 31, + "original_rmp_format": "Peter Lewin", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 70, + "tags": [ + "Test heavy", + "Graded by few things", + "Lecture heavy", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "825139", + "instructor_id": "plewin", + "overall_grade_rating": 4.22, + "total_grade_count": 2088, + "course_ratings": { + "FIN6308": 4.23, + "MECO6303": 4.27, + "FIN3340": 4.0, + "BA1320": 4.14, + "FIN6325": 4.97, + "SYSM6319": 4.47, + "MECO3360": 4.77 + } + } + ], + "jennifer johnson": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1361048", + "quality_rating": 4.8, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Jennifer Johnson", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 50, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Lots of homework", + "Caring", + "Respected" + ], + "rmp_id": "1361048", + "instructor_id": "jxj091000", + "overall_grade_rating": 4.08, + "total_grade_count": 1913, + "course_ratings": { + "ACCT4342": 3.91, + "ACCT6343": 4.26, + "ACCT4340": 4.19, + "ACCT3312": 4.34, + "ACCT6194": 4.28, + "ACCT3341": 3.53 + } + } + ], + "christopher ryan": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1446155", + "quality_rating": 3.2, + "difficulty_rating": 3.4, + "would_take_again": 57, + "original_rmp_format": "Christopher Ryan", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 41, + "tags": [ + "Tough grader", + "Group projects", + "Participation matters", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "1446155", + "instructor_id": "cxr088000", + "overall_grade_rating": 4.05, + "total_grade_count": 1204, + "course_ratings": { + "ECS3390": 4.01, + "LIT7383": 4.96, + "LIT6332": 4.92, + "ECS2390": 4.14, + "COMM3342": 3.78 + } + } + ], + "dani fadda": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2140279", + "quality_rating": 5, + "difficulty_rating": 2.1, + "would_take_again": 100, + "original_rmp_format": "Dani Fadda", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 40, + "tags": [ + "Caring", + "Respected", + "Gives good feedback", + "Inspirational", + "Accessible outside class" + ], + "rmp_id": "2140279", + "instructor_id": "dzf091000", + "overall_grade_rating": 4.0, + "total_grade_count": 2357, + "course_ratings": { + "MECH3305": 3.85, + "MECH1208": 4.08, + "MECH1100": 4.03, + "MECH3320": 3.65, + "MECH3315": 3.68, + "MECH3370": 3.7, + "ECS1100": 4.51, + "MECH4380": 3.89 + } + } + ], + "sean owens": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2161349", + "quality_rating": 4.8, + "difficulty_rating": 2, + "would_take_again": 94, + "original_rmp_format": "Sean Owens", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 31, + "tags": [ + "Respected", + "Amazing lectures ", + "Gives good feedback", + "Hilarious", + "Clear grading criteria" + ], + "rmp_id": "2161349", + "instructor_id": "smo150330", + "overall_grade_rating": 4.31, + "total_grade_count": 770, + "course_ratings": { + "ITSS3300": 4.31 + } + } + ], + "mohamed amine belkoura": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2526433", + "quality_rating": 2.4, + "difficulty_rating": 3.8, + "would_take_again": 38, + "original_rmp_format": "Mohamed Amine Belkoura", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 21, + "tags": [ + "Tough grader", + "Get ready to read", + "Lecture heavy", + "Participation matters", + "Lots of homework" + ], + "rmp_id": "2526433", + "instructor_id": "mxb135330", + "overall_grade_rating": 3.55, + "total_grade_count": 798, + "course_ratings": { + "CS1337": 3.71, + "CS3377": 3.48, + "CS2336": 3.36, + "CS1436": 3.2, + "SE3377": 3.23, + "CS3345": 4.28, + "CE3345": 3.61, + "SE3345": 3.23 + } + } + ], + "megan harrison": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2739381", + "quality_rating": 4.7, + "difficulty_rating": 1.9, + "would_take_again": 94, + "original_rmp_format": "Megan Harrison", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 17, + "tags": [ + "Group projects", + "Gives good feedback", + "Caring", + "Clear grading criteria", + "Accessible outside class" + ], + "rmp_id": "2739381", + "instructor_id": "mkh160330", + "overall_grade_rating": 3.61, + "total_grade_count": 535, + "course_ratings": { + "BCOM3310": 4.27, + "BCOM1300": 4.05, + "BCOM3300": 2.69, + "BCOM4300": 3.35, + "BPS4395": 4.38 + } + } + ], + "juveria baig": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2783318", + "quality_rating": 4.3, + "difficulty_rating": 2.6, + "would_take_again": 82, + "original_rmp_format": "Juveria Baig", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 11, + "tags": [ + "Group projects", + "Participation matters", + "Amazing lectures ", + "Caring", + "Clear grading criteria" + ], + "rmp_id": "2783318", + "instructor_id": "jxb129230", + "overall_grade_rating": 4.51, + "total_grade_count": 294, + "course_ratings": { + "ITSS4395": 4.8, + "ITSS4351": 4.25, + "ITSS4355": 4.09 + } + } + ], + "daniel gibney": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2927806", + "quality_rating": 3.6, + "difficulty_rating": 3.2, + "would_take_again": 70, + "original_rmp_format": "Daniel Gibney", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 10, + "tags": [ + "Lots of homework", + "Get ready to read", + "Graded by few things", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "2927806", + "instructor_id": "djg230002", + "overall_grade_rating": 3.97, + "total_grade_count": 214, + "course_ratings": { + "CS4349": 3.43, + "CS2305": 4.03, + "CS6301": 4.97 + } + } + ], + "jennifer cranfill": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2846814", + "quality_rating": 3.2, + "difficulty_rating": 2.2, + "would_take_again": 50, + "original_rmp_format": "Jennifer Cranfill", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 6, + "tags": [ + "Respected", + "Accessible outside class", + "Participation matters", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "2846814", + "instructor_id": "jec090020", + "overall_grade_rating": 3.54, + "total_grade_count": 156, + "course_ratings": { + "RHET1302": 3.59, + "LIT2331": 3.33 + } + } + ], + "elena katok": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2457574", + "quality_rating": 2.5, + "difficulty_rating": 3.5, + "would_take_again": 33, + "original_rmp_format": "Elena Katok", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Group projects", + "Test heavy", + "Get ready to read", + "Amazing lectures " + ], + "rmp_id": "2457574", + "instructor_id": "emk120030", + "overall_grade_rating": 4.31, + "total_grade_count": 310, + "course_ratings": { + "OPRE6371": 4.3, + "OPRE6332": 4.33 + } + } + ], + "christopher bhatti": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2746075", + "quality_rating": 5, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "christopher bhatti", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 6, + "tags": [ + "Amazing lectures ", + "Group projects", + "Participation matters", + "Accessible outside class", + "Clear grading criteria" + ], + "rmp_id": "2746075", + "instructor_id": "cbhatti", + "overall_grade_rating": 3.86, + "total_grade_count": 192, + "course_ratings": { + "ENTP3301": 3.86 + } + } + ], + "ingrid huisman": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/2798960", + "quality_rating": 1, + "difficulty_rating": 4.5, + "would_take_again": 0, + "original_rmp_format": "Ingrid Huisman", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 2, + "tags": ["Lecture heavy", "Test heavy", "Tough grader", "Participation matters"], + "rmp_id": "2798960", + "instructor_id": "ibh013000", + "overall_grade_rating": 4.31, + "total_grade_count": 153, + "course_ratings": { + "ED4344": 4.31 + } + } + ], + "omar hamdy": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2727867", + "quality_rating": 3.7, + "difficulty_rating": 3.5, + "would_take_again": 71, + "original_rmp_format": "Omar Hamdy", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 115, + "tags": ["Amazing lectures ", "Caring", "Tough grader", "Lecture heavy", "Test heavy"], + "rmp_id": "2727867", + "instructor_id": "oxh210004", + "overall_grade_rating": 4.01, + "total_grade_count": 324, + "course_ratings": { + "CS3345": 4.28, + "CS4341": 3.89 + } + } + ], + "james willson": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1984439", + "quality_rating": 3.8, + "difficulty_rating": 3, + "would_take_again": 71, + "original_rmp_format": "James Willson", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 99, + "tags": [ + "Test heavy", + "Hilarious", + "Amazing lectures ", + "Graded by few things", + "Lecture heavy" + ], + "rmp_id": "1984439", + "instructor_id": "jkw053000", + "overall_grade_rating": 3.54, + "total_grade_count": 2232, + "course_ratings": { + "CS3305": 3.67, + "CS2305": 3.37, + "CS4349": 3.95, + "CE2305": 3.31, + "CS1436": 3.44, + "CS4384": 3.75 + } + } + ], + "amal el ashmawi": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/871195", + "quality_rating": 3.4, + "difficulty_rating": 3.2, + "would_take_again": 64, + "original_rmp_format": "Amal El-Ashmawi", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 84, + "tags": [ + "Lecture heavy", + "Test heavy", + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Clear grading criteria" + ], + "rmp_id": "871195", + "instructor_id": "ahe013000", + "overall_grade_rating": 3.82, + "total_grade_count": 1418, + "course_ratings": { + "FIN3390": 3.55, + "FIN6301": 4.66, + "FIN3320": 3.09 + } + } + ], + "tiffany bortz": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/962604", + "quality_rating": 4, + "difficulty_rating": 4, + "would_take_again": 78, + "original_rmp_format": "Tiffany Bortz", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 83, + "tags": ["Skip class? You won't pass.", "Test heavy", "Tough grader", "Caring", "Respected"], + "rmp_id": "962604", + "instructor_id": "tabortz", + "overall_grade_rating": 3.58, + "total_grade_count": 1819, + "course_ratings": { + "ACCT3332": 3.07, + "ACCT6335": 4.36, + "ACCT2301": 4.05, + "ACCT6332": 3.57 + } + } + ], + "ali yekkehkhany": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2984003", + "quality_rating": 4.2, + "difficulty_rating": 3.1, + "would_take_again": 79, + "original_rmp_format": "Ali Yekkehkhany", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 14, + "tags": ["Caring", "Respected", "Inspirational", "Amazing lectures ", "Test heavy"], + "rmp_id": "2984003", + "instructor_id": "axy230042", + "overall_grade_rating": 3.47, + "total_grade_count": 49, + "course_ratings": { + "EE2301": 3.47 + } + } + ], + "dalton cooper": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/2921681", + "quality_rating": 5, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Dalton Cooper", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 3, + "tags": [ + "Hilarious", + "Participation matters", + "Lots of homework", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "2921681", + "instructor_id": "dwc200005", + "overall_grade_rating": 4.42, + "total_grade_count": 146, + "course_ratings": { + "FILM2332": 4.42 + } + } + ], + "gity karami": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2398089", + "quality_rating": 2.7, + "difficulty_rating": 3.6, + "would_take_again": 45, + "original_rmp_format": "Gity Karami", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 130, + "tags": [ + "Lots of homework", + "Tough grader", + "Beware of pop quizzes", + "EXTRA CREDIT", + "Caring" + ], + "rmp_id": "2398089", + "instructor_id": "gxk180009", + "overall_grade_rating": 4.13, + "total_grade_count": 2612, + "course_ratings": { + "CE4337": 4.16, + "CS3345": 4.14, + "CS4337": 4.05, + "CS2340": 3.91, + "CS5343": 4.65, + "CS3377": 4.14, + "CS6314": 4.66, + "CS4375": 4.18, + "CS4341": 3.87, + "CS3340": 4.16, + "CS4301": 4.19 + } + } + ], + "rabih neouchi": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2709320", + "quality_rating": 4.6, + "difficulty_rating": 2.2, + "would_take_again": 85, + "original_rmp_format": "Rabih Neouchi", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 55, + "tags": [ + "Clear grading criteria", + "Amazing lectures ", + "Group projects", + "Gives good feedback", + "Participation matters" + ], + "rmp_id": "2709320", + "instructor_id": "rxn200012", + "overall_grade_rating": 4.23, + "total_grade_count": 711, + "course_ratings": { + "MIS6382": 4.22, + "BUAN6333": 4.43 + } + } + ], + "matthew goeckner": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1566848", + "quality_rating": 3, + "difficulty_rating": 3.4, + "would_take_again": 24, + "original_rmp_format": "Matthew Goeckner", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 36, + "tags": [ + "Lots of homework", + "Get ready to read", + "Hilarious", + "Caring", + "Participation matters" + ], + "rmp_id": "1566848", + "instructor_id": "goeckner", + "overall_grade_rating": 3.33, + "total_grade_count": 367, + "course_ratings": { + "NATS1101": 4.64, + "PHYS1100": 0.84, + "PHYS2325": 2.83, + "PHYS3427": 4.58 + } + } + ], + "neeraj gupta": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1916155", + "quality_rating": 2.6, + "difficulty_rating": 3.5, + "would_take_again": 34, + "original_rmp_format": "Neeraj Gupta", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 100, + "tags": [ + "Tough grader", + "Lecture heavy", + "Graded by few things", + "Test heavy", + "Participation matters" + ], + "rmp_id": "1916155", + "instructor_id": "nkg140130", + "overall_grade_rating": 3.71, + "total_grade_count": 2041, + "course_ratings": { + "CS4398": 3.38, + "CS5343": 4.1, + "CS6353": 4.81, + "CS4390": 3.26, + "CS4384": 3.37, + "CS6306": 4.21, + "CS2336": 3.62, + "CS4348": 3.18, + "CS4386": 3.35, + "CE4390": 3.74, + "SE6387": 5.0, + "CS1337": 3.26, + "CS1336": 3.35, + "CS6385": 4.58, + "CS1136": 3.93 + } + } + ], + "khiem le": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1916982", + "quality_rating": 3.2, + "difficulty_rating": 3.5, + "would_take_again": 56, + "original_rmp_format": "Khiem Le", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 97, + "tags": [ + "Tough grader", + "Lots of homework", + "Clear grading criteria", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "1916982", + "instructor_id": "kvl140030", + "overall_grade_rating": 3.25, + "total_grade_count": 1309, + "course_ratings": { + "CS1336": 3.38, + "CS1325": 3.18, + "CE4390": 2.97, + "CS4390": 3.36, + "CS1337": 3.07, + "CS1436": 3.34 + } + } + ], + "mehmet candas": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1645591", + "quality_rating": 2.9, + "difficulty_rating": 3.6, + "would_take_again": 44, + "original_rmp_format": "Mehmet Candas", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 91, + "tags": ["Test heavy", "Get ready to read", "Lecture heavy", "Tough grader", "Caring"], + "rmp_id": "1645591", + "instructor_id": "candas", + "overall_grade_rating": 3.68, + "total_grade_count": 4857, + "course_ratings": { + "BIOL3162": 3.52, + "NATS1101": 5.0, + "BIOL3362": 3.54, + "BIOL4325": 3.94, + "CHEM3362": 3.52, + "BIOL2111": 3.87, + "BIOL2311": 3.68, + "BIOL3462": 3.62, + "BIOL4310": 3.95, + "BIOL2112": 3.88, + "BIOL3161": 3.76, + "BIOL2312": 3.88, + "BIOL3361": 3.75, + "CHEM3361": 3.39 + } + } + ], + "john cakerice": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2860297", + "quality_rating": 3.2, + "difficulty_rating": 2.8, + "would_take_again": 60, + "original_rmp_format": "John Cakerice", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 5, + "tags": [ + "Participation matters", + "EXTRA CREDIT", + "Tough grader", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "2860297", + "instructor_id": "jhc150430", + "overall_grade_rating": 3.1, + "total_grade_count": 144, + "course_ratings": { + "RHET1302": 2.92, + "LIT2331": 3.92 + } + } + ], + "rebecca mcclain": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/3063633", + "quality_rating": 4.6, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Rebecca McClain", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 5, + "tags": [ + "Participation matters", + "Clear grading criteria", + "Caring", + "Group projects", + "Respected" + ], + "rmp_id": "3063633", + "instructor_id": "rxm220007", + "overall_grade_rating": 4.55, + "total_grade_count": 547, + "course_ratings": { + "CHEM3341": 2.99, + "ECS1100": 4.68 + } + } + ], + "jeffrey schulze": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/1040339", + "quality_rating": 3.4, + "difficulty_rating": 3.1, + "would_take_again": 38, + "original_rmp_format": "Jeffrey Schulze", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 183, + "tags": [ + "Get ready to read", + "Tough grader", + "Skip class? You won't pass.", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "1040339", + "instructor_id": "jxs072200", + "overall_grade_rating": 3.39, + "total_grade_count": 4386, + "course_ratings": { + "HIST1301": 3.19, + "HIST1302": 3.6, + "HIST3368": 3.32, + "HIST3394": 3.19, + "HIST2301": 3.11, + "HIST3392": 3.55, + "HIST4368": 3.58, + "HIST3395": 3.58, + "HIST3396": 3.47, + "HIST3379": 3.65, + "HIST6325": 4.46 + } + } + ], + "dung huynh": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/194919", + "quality_rating": 3.7, + "difficulty_rating": 3.4, + "would_take_again": 73, + "original_rmp_format": "Dung Huynh", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 26, + "tags": [ + "Test heavy", + "Get ready to read", + "Clear grading criteria", + "Respected", + "EXTRA CREDIT" + ], + "rmp_id": "194919", + "instructor_id": "huynh", + "overall_grade_rating": 4.11, + "total_grade_count": 635, + "course_ratings": { + "CS6363": 4.29, + "CS4384": 3.97 + } + } + ], + "kyle hyndman": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2254591", + "quality_rating": 1.7, + "difficulty_rating": 3.3, + "would_take_again": 16, + "original_rmp_format": "Kyle Hyndman", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 19, + "tags": [ + "Get ready to read", + "Lots of homework", + "Test heavy", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "2254591", + "instructor_id": "tdp062000", + "overall_grade_rating": 3.58, + "total_grade_count": 401, + "course_ratings": { + "MECO6345": 4.22, + "FIN4315": 3.75, + "FIN6330": 4.36, + "BA1310": 3.39, + "MECO6350": 3.91 + } + } + ], + "maryam ashkaboosi": [ + { + "department": "Design", + "url": "https://www.ratemyprofessors.com/professor/2884190", + "quality_rating": 3, + "difficulty_rating": 2.7, + "would_take_again": 57, + "original_rmp_format": "Maryam Ashkaboosi", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 7, + "tags": [ + "Lots of homework", + "So many papers", + "Tough grader", + "Participation matters", + "EXTRA CREDIT" + ], + "rmp_id": "2884190", + "instructor_id": "mxa190061", + "overall_grade_rating": 4.13, + "total_grade_count": 231, + "course_ratings": { + "ATCM2302": 4.15, + "ATCM2301": 4.11 + } + } + ], + "tatiana erekhinskaya": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/3077846", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Tatiana Erekhinskaya", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 1, + "tags": ["Inspirational"], + "rmp_id": "3077846", + "instructor_id": "txe110230", + "overall_grade_rating": 4.76, + "total_grade_count": 77, + "course_ratings": { + "CS6320": 4.76 + } + } + ], + "shawn alborz": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1362128", + "quality_rating": 4.7, + "difficulty_rating": 2.7, + "would_take_again": 96, + "original_rmp_format": "Shawn Alborz", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 651, + "tags": [ + "Gives good feedback", + "Group projects", + "Hilarious", + "Respected", + "Amazing lectures " + ], + "rmp_id": "1362128", + "instructor_id": "sxa063000", + "overall_grade_rating": 4.28, + "total_grade_count": 1761, + "course_ratings": { + "SYSM6311": 4.46, + "OPRE6362": 4.47, + "OPRE3330": 4.17, + "ITSS3300": 4.2, + "OPRE3310": 4.36 + } + } + ], + "denise cordova": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2976585", + "quality_rating": 4.6, + "difficulty_rating": 2.2, + "would_take_again": 96, + "original_rmp_format": "Denise Cordova", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 25, + "tags": [ + "Amazing lectures ", + "Caring", + "Group projects", + "Inspirational", + "Gives good feedback" + ], + "rmp_id": "2976585", + "instructor_id": "dxc230038", + "overall_grade_rating": 4.12, + "total_grade_count": 598, + "course_ratings": { + "BCOM1300": 4.36, + "BCOM4300": 3.94, + "BCOM3300": 4.04 + } + } + ], + "reza sajjadi": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2527938", + "quality_rating": 2.5, + "difficulty_rating": 3.6, + "would_take_again": 47, + "original_rmp_format": "Reza Sajjadi", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 19, + "tags": [ + "Get ready to read", + "Test heavy", + "Tough grader", + "Graded by few things", + "EXTRA CREDIT" + ], + "rmp_id": "2527938", + "instructor_id": "rxs179730", + "overall_grade_rating": 3.36, + "total_grade_count": 141, + "course_ratings": { + "OPRE3360": 3.85, + "OPRE3333": 3.3 + } + } + ], + "yining wang": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2836428", + "quality_rating": 2, + "difficulty_rating": 4.5, + "would_take_again": 25, + "original_rmp_format": "Yining Wang", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 4, + "tags": [ + "Test heavy", + "Tough grader", + "Group projects", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2836428", + "instructor_id": "yxw220006", + "overall_grade_rating": 3.83, + "total_grade_count": 377, + "course_ratings": { + "BUAN6398": 4.24, + "OPRE3360": 3.11, + "OPRE7353": 4.46 + } + } + ], + "john young": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2536522", + "quality_rating": 3.8, + "difficulty_rating": 3.1, + "would_take_again": 74, + "original_rmp_format": "John Young", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 42, + "tags": [ + "Lecture heavy", + "Gives good feedback", + "EXTRA CREDIT", + "Clear grading criteria", + "Accessible outside class" + ], + "rmp_id": "2536522", + "instructor_id": "jgy190000", + "overall_grade_rating": 3.7, + "total_grade_count": 901, + "course_ratings": { + "ITSS3300": 3.65, + "ITSS4371": 3.67, + "ITSS4370": 3.83 + } + } + ], + "keith volanto": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/985917", + "quality_rating": 4.2, + "difficulty_rating": 3, + "would_take_again": 82, + "original_rmp_format": "Keith Volanto", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 28, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Tough grader", + "Hilarious", + "Inspirational" + ], + "rmp_id": "985917", + "instructor_id": "kjv062000", + "overall_grade_rating": 3.13, + "total_grade_count": 283, + "course_ratings": { + "HIST1301": 2.91, + "HIST2301": 3.23 + } + } + ], + "farah siddiqui": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2538089", + "quality_rating": 3.8, + "difficulty_rating": 2.8, + "would_take_again": 67, + "original_rmp_format": "Farah Siddiqui", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 12, + "tags": [ + "Participation matters", + "Gives good feedback", + "Get ready to read", + "Lots of homework", + "Accessible outside class" + ], + "rmp_id": "2538089", + "instructor_id": "fxs121830", + "overall_grade_rating": 3.88, + "total_grade_count": 455, + "course_ratings": { + "RHET1302": 4.45, + "BCOM3300": 3.58, + "BCOM4300": 3.72, + "ECS3390": 4.63 + } + } + ], + "janelle gray": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2764781", + "quality_rating": 1.4, + "difficulty_rating": 4.5, + "would_take_again": 9, + "original_rmp_format": "Janelle Gray", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 11, + "tags": [ + "Lots of homework", + "Tough grader", + "So many papers", + "Participation matters", + "Gives good feedback" + ], + "rmp_id": "2764781", + "instructor_id": "jxg210011", + "overall_grade_rating": 3.47, + "total_grade_count": 91, + "course_ratings": { + "RHET1302": 3.47, + "LIT2331": 3.5 + } + } + ], + "mike bromberg": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2758331", + "quality_rating": 1.9, + "difficulty_rating": 3.4, + "would_take_again": 22, + "original_rmp_format": "Mike Bromberg", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 9, + "tags": [ + "Lots of homework", + "Gives good feedback", + "Tough grader", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "2758331", + "instructor_id": "mxb210046", + "overall_grade_rating": 3.28, + "total_grade_count": 237, + "course_ratings": { + "COMM1315": 3.28 + } + } + ], + "michael christiansen": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1208870", + "quality_rating": 2.8, + "difficulty_rating": 2, + "would_take_again": 42, + "original_rmp_format": "Michael Christiansen", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 130, + "tags": [ + "Group projects", + "Lecture heavy", + "Graded by few things", + "Clear grading criteria", + "Participation matters" + ], + "rmp_id": "1208870", + "instructor_id": "mgc013000", + "overall_grade_rating": 4.34, + "total_grade_count": 3179, + "course_ratings": { + "CS4347": 4.11, + "SE4347": 4.04, + "CS5348": 4.51, + "CS1200": 4.69, + "CS3354": 4.07, + "CS4348": 3.74, + "SE4348": 4.08, + "SE4352": 3.99, + "CE4348": 3.93, + "CE3354": 4.17, + "SE3354": 3.95, + "CS1335": 3.23 + } + } + ], + "mohammad ahsan": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1880840", + "quality_rating": 3.3, + "difficulty_rating": 3.4, + "would_take_again": 62, + "original_rmp_format": "Mohammad Ahsan", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 63, + "tags": [ + "Lots of homework", + "Skip class? You won't pass.", + "Lecture heavy", + "Tough grader", + "Accessible outside class" + ], + "rmp_id": "1880840", + "instructor_id": "mka120030", + "overall_grade_rating": 2.72, + "total_grade_count": 1626, + "course_ratings": { + "MATH2417": 2.75, + "MATH2414": 2.58, + "MATH1325": 3.1, + "MATH2312": 2.72, + "MATH2415": 2.94, + "MATH2419": 2.92 + } + } + ], + "nidhiben solanki": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2648929", + "quality_rating": 3.2, + "difficulty_rating": 3.4, + "would_take_again": 57, + "original_rmp_format": "Nidhiben Solanki", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 44, + "tags": [ + "Tough grader", + "Lecture heavy", + "Test heavy", + "Amazing lectures ", + "Get ready to read" + ], + "rmp_id": "2648929", + "instructor_id": "nxs121130", + "overall_grade_rating": 3.69, + "total_grade_count": 1635, + "course_ratings": { + "CE3354": 4.33, + "CE4390": 4.36, + "CS3354": 4.01, + "CS4347": 3.76, + "CS4390": 3.88, + "CS1336": 3.25, + "SE4347": 3.33, + "CS1436": 3.89, + "CS1325": 3.32, + "CS1335": 2.9 + } + } + ], + "ajaya paudel": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1583227", + "quality_rating": 4.3, + "difficulty_rating": 2.8, + "would_take_again": 85, + "original_rmp_format": "Ajaya Paudel", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 41, + "tags": [ + "Amazing lectures ", + "Lots of homework", + "Accessible outside class", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "1583227", + "instructor_id": "abp062000", + "overall_grade_rating": 3.0, + "total_grade_count": 1427, + "course_ratings": { + "MATH1325": 3.23, + "MATH2420": 3.49, + "MATH2413": 2.6, + "MATH2417": 2.96, + "STAT1342": 3.6, + "MATH2414": 2.52, + "MATH2418": 2.65 + } + } + ], + "benjamin porter": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2600941", + "quality_rating": 4.8, + "difficulty_rating": 1.6, + "would_take_again": 96, + "original_rmp_format": "Benjamin Porter", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 26, + "tags": ["Hilarious", "Caring", "Respected", "EXTRA CREDIT", "Clear grading criteria"], + "rmp_id": "2600941", + "instructor_id": "bap061000", + "overall_grade_rating": 4.63, + "total_grade_count": 1787, + "course_ratings": { + "BMEN1100": 4.12, + "BMEN3130": 4.47, + "BMEN6330": 4.92, + "ECS1100": 4.66, + "BMEN4301": 4.76, + "BMEN6329": 4.96, + "BMEN6338": 4.74 + } + } + ], + "harold wood": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1556341", + "quality_rating": 4.2, + "difficulty_rating": 1.6, + "would_take_again": 69, + "original_rmp_format": "Harold Wood", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 22, + "tags": [ + "Participation matters", + "Respected", + "Clear grading criteria", + "Caring", + "Lecture heavy" + ], + "rmp_id": "1556341", + "instructor_id": "hgw021000", + "overall_grade_rating": 4.52, + "total_grade_count": 1111, + "course_ratings": { + "ATCM1100": 4.7, + "ATCM2302": 4.72, + "ATCM3337": 4.47, + "ATCM4397": 4.34, + "ATCM4337": 4.54 + } + } + ], + "elizabeth winstead": [ + { + "department": "Interdisciplinary Studies", + "url": "https://www.ratemyprofessors.com/professor/2556789", + "quality_rating": 2.3, + "difficulty_rating": 2.4, + "would_take_again": 38, + "original_rmp_format": "Elizabeth Winstead", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 17, + "tags": [ + "So many papers", + "Lots of homework", + "Accessible outside class", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "2556789", + "instructor_id": "lwm061000", + "overall_grade_rating": 4.28, + "total_grade_count": 1198, + "course_ratings": { + "AMS3316": 4.33, + "AMS4304": 4.29, + "AMS4385": 4.24, + "AMS4327": 4.35, + "AMS4379": 4.13, + "AMS3350": 4.22 + } + } + ], + "rosemond cates": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2854134", + "quality_rating": 3, + "difficulty_rating": 3.3, + "would_take_again": 33, + "original_rmp_format": "Rosemond Cates", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 3, + "tags": [ + "Tough grader", + "Get ready to read", + "Clear grading criteria", + "Lots of homework", + "So many papers" + ], + "rmp_id": "2854134", + "instructor_id": "rtc210000", + "overall_grade_rating": 3.24, + "total_grade_count": 135, + "course_ratings": { + "RHET1302": 3.26, + "LIT2331": 3.11 + } + } + ], + "meenakshi maitra": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2323356", + "quality_rating": 3.6, + "difficulty_rating": 3.5, + "would_take_again": 75, + "original_rmp_format": "Meenakshi Maitra", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 28, + "tags": [ + "Clear grading criteria", + "Gives good feedback", + "Lecture heavy", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "2323356", + "instructor_id": "mxm172731", + "overall_grade_rating": 3.02, + "total_grade_count": 1266, + "course_ratings": { + "BIOL3455": 2.68, + "BIOL1318": 3.06, + "BIOL2111": 4.02, + "BIOL2311": 4.02 + } + } + ], + "julie lynch": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2590883", + "quality_rating": 2.1, + "difficulty_rating": 3.5, + "would_take_again": 22, + "original_rmp_format": "Julie Lynch", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 23, + "tags": [ + "Get ready to read", + "Lots of homework", + "Participation matters", + "Test heavy", + "Tough grader" + ], + "rmp_id": "2590883", + "instructor_id": "jxl180030", + "overall_grade_rating": 3.82, + "total_grade_count": 854, + "course_ratings": { + "FIN3300": 3.88, + "FIN3305": 3.18, + "FIN4328": 3.77, + "REAL3305": 2.64, + "REAL4328": 3.26, + "FIN3365": 2.95, + "FIN6321": 4.73, + "REAL6321": 4.66, + "FIN3330": 3.73 + } + } + ], + "lawrence amato": [ + { + "department": "Philosophy", + "url": "https://www.ratemyprofessors.com/professor/1833348", + "quality_rating": 4.1, + "difficulty_rating": 2.8, + "would_take_again": 78, + "original_rmp_format": "Lawrence Amato", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 98, + "tags": [ + "Get ready to read", + "Skip class? You won't pass.", + "Amazing lectures ", + "Participation matters", + "Lecture heavy" + ], + "rmp_id": "1833348", + "instructor_id": "laa062000", + "overall_grade_rating": 3.84, + "total_grade_count": 2607, + "course_ratings": { + "PHIL1301": 3.77, + "PHIL2316": 3.85, + "PHIL4340": 3.93, + "PHIL3321": 4.61, + "PHIL3322": 4.38, + "PHIL1307": 3.73, + "PHIL3324": 4.64, + "PHIL2317": 3.47, + "HIST3337": 4.15, + "PHIL1305": 4.06, + "PHIL3309": 4.46, + "HONS3199": 4.17, + "PHIL4322": 4.58 + } + } + ], + "kathy zolton": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1737123", + "quality_rating": 3.1, + "difficulty_rating": 3.8, + "would_take_again": 51, + "original_rmp_format": "Kathy Zolton", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 60, + "tags": [ + "Get ready to read", + "Skip class? You won't pass.", + "Tough grader", + "Gives good feedback", + "Amazing lectures " + ], + "rmp_id": "1737123", + "instructor_id": "kxz121730", + "overall_grade_rating": 3.72, + "total_grade_count": 2267, + "course_ratings": { + "ACCT6332": 3.68, + "ACCT2302": 3.29, + "ACCT6333": 3.9, + "ACCT6291": 4.3, + "ACCT6389": 4.97, + "ACCT6202": 4.17 + } + } + ], + "aysegul toptal": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2688296", + "quality_rating": 2.1, + "difficulty_rating": 3.8, + "would_take_again": 30, + "original_rmp_format": "Aysegul Toptal", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 20, + "tags": [ + "Tough grader", + "Test heavy", + "Lecture heavy", + "Lots of homework", + "Get ready to read" + ], + "rmp_id": "2688296", + "instructor_id": "axt083100", + "overall_grade_rating": 3.63, + "total_grade_count": 1355, + "course_ratings": { + "OPRE3360": 3.32, + "BUAN6359": 3.73, + "OPRE6301": 3.64, + "OPRE6359": 3.99 + } + } + ], + "aditya srivastava": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/3033839", + "quality_rating": 4.9, + "difficulty_rating": 1.1, + "would_take_again": 100, + "original_rmp_format": "Aditya Srivastava", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 8, + "tags": [ + "Clear grading criteria", + "Caring", + "Respected", + "Accessible outside class", + "EXTRA CREDIT" + ], + "rmp_id": "3033839", + "instructor_id": "axs142531", + "overall_grade_rating": 4.43, + "total_grade_count": 536, + "course_ratings": { + "CS1200": 4.39, + "CS3162": 4.49, + "SE3162": 4.34 + } + } + ], + "constance an": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2823666", + "quality_rating": 2.3, + "difficulty_rating": 4.5, + "would_take_again": 33, + "original_rmp_format": "Constance An", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Participation matters", + "Group projects", + "Amazing lectures ", + "Graded by few things" + ], + "rmp_id": "2823666", + "instructor_id": "cfa220003", + "overall_grade_rating": 4.45, + "total_grade_count": 283, + "course_ratings": { + "BPS4395": 4.32, + "MAS6102": 4.82 + } + } + ], + "hongda zhong": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/3008457", + "quality_rating": 1.5, + "difficulty_rating": 4.5, + "would_take_again": 0, + "original_rmp_format": "Hongda Zhong", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 2, + "tags": ["Tough grader", "Get ready to read", "Test heavy", "Graded by few things"], + "rmp_id": "3008457", + "instructor_id": "hxz230006", + "overall_grade_rating": 2.9, + "total_grade_count": 55, + "course_ratings": { + "FIN4310": 2.9 + } + } + ], + "gordon arnold": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1976371", + "quality_rating": 3.2, + "difficulty_rating": 3.3, + "would_take_again": 51, + "original_rmp_format": "Gordon Arnold", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 111, + "tags": [ + "Test heavy", + "Skip class? You won't pass.", + "Get ready to read", + "Hilarious", + "Graded by few things" + ], + "rmp_id": "1976371", + "instructor_id": "gxa120930", + "overall_grade_rating": 3.71, + "total_grade_count": 2115, + "course_ratings": { + "CS4384": 3.69, + "CS3162": 4.62, + "CS1334": 3.67, + "CS1200": 4.16, + "CS1336": 3.37, + "CS1436": 3.79, + "CS2336": 3.93, + "CS1337": 3.0, + "CS2337": 3.2, + "CS3360": 3.34, + "CS1134": 4.32, + "CS1136": 3.46 + } + } + ], + "srimathi srinivasan": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2424646", + "quality_rating": 2.3, + "difficulty_rating": 3.6, + "would_take_again": 31, + "original_rmp_format": "Srimathi Srinivasan", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 111, + "tags": [ + "Lots of homework", + "Lecture heavy", + "EXTRA CREDIT", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2424646", + "instructor_id": "sxs180206", + "overall_grade_rating": 3.67, + "total_grade_count": 1483, + "course_ratings": { + "CS1334": 3.12, + "CS1336": 3.56, + "CS3354": 4.49, + "CS1436": 3.87, + "SE3354": 4.38, + "CS1337": 3.07, + "CS1325": 3.28, + "CS1136": 3.58 + } + } + ], + "nimanka panapitiya": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2042600", + "quality_rating": 4.6, + "difficulty_rating": 3.3, + "would_take_again": 93, + "original_rmp_format": "Nimanka Panapitiya", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 111, + "tags": [ + "Caring", + "Accessible outside class", + "Amazing lectures ", + "Respected", + "Gives good feedback" + ], + "rmp_id": "2042600", + "instructor_id": "npp081000", + "overall_grade_rating": 4.13, + "total_grade_count": 2419, + "course_ratings": { + "CHEM2323": 3.96, + "CHEM2401": 4.73, + "CHEM2123": 4.17, + "CHEM1111": 4.21, + "CHEM2233": 4.9, + "CHEM2325": 3.84, + "CHEM2125": 4.75, + "CHEM1112": 4.18 + } + } + ], + "kashmiri medhi": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/3027714", + "quality_rating": 3.4, + "difficulty_rating": 3, + "would_take_again": 55, + "original_rmp_format": "Kashmiri Medhi ", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 67, + "tags": [ + "Get ready to read", + "Lecture heavy", + "Participation matters", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "3027714", + "instructor_id": "kxm190003", + "overall_grade_rating": 4.44, + "total_grade_count": 925, + "course_ratings": { + "GOVT2305": 4.38, + "GOVT2306": 4.65 + } + } + ], + "kristin atchison": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2650056", + "quality_rating": 3.2, + "difficulty_rating": 3.2, + "would_take_again": 53, + "original_rmp_format": "Kristin Atchison", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 59, + "tags": [ + "Lots of homework", + "Participation matters", + "Lecture heavy", + "Tough grader", + "Amazing lectures " + ], + "rmp_id": "2650056", + "instructor_id": "kja042000", + "overall_grade_rating": 3.6, + "total_grade_count": 1855, + "course_ratings": { + "CLDP3336": 3.8, + "PSY2314": 3.72, + "PSY3336": 3.7, + "CLDP2314": 3.4, + "CLDP3362": 4.06, + "PSY3362": 3.81, + "PSY2317": 3.48, + "HDCD6319": 4.67, + "PSY2301": 3.14 + } + } + ], + "julie sutton": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2043760", + "quality_rating": 3.1, + "difficulty_rating": 2.7, + "would_take_again": 43, + "original_rmp_format": "Julie Sutton", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 45, + "tags": [ + "Lots of homework", + "Caring", + "Accessible outside class", + "Gives good feedback", + "Test heavy" + ], + "rmp_id": "2043760", + "instructor_id": "jxs158030", + "overall_grade_rating": 3.61, + "total_grade_count": 861, + "course_ratings": { + "MATH1306": 3.88, + "MATH1316": 3.14 + } + } + ], + "marc hairston": [ + { + "department": "Science", + "url": "https://www.ratemyprofessors.com/professor/964854", + "quality_rating": 4.7, + "difficulty_rating": 2.9, + "would_take_again": 91, + "original_rmp_format": "Marc Hairston", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 26, + "tags": [ + "Caring", + "Inspirational", + "Amazing lectures ", + "EXTRA CREDIT", + "Beware of pop quizzes" + ], + "rmp_id": "964854", + "instructor_id": "hairston", + "overall_grade_rating": 3.78, + "total_grade_count": 450, + "course_ratings": { + "NATS1311": 3.78 + } + } + ], + "hyejeong jeong": [ + { + "department": "Languages", + "url": "https://www.ratemyprofessors.com/professor/2983703", + "quality_rating": 4.7, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Hyejeong Jeong", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 3, + "tags": [ + "Gives good feedback", + "Participation matters", + "Clear grading criteria", + "Lots of homework", + "Respected" + ], + "rmp_id": "2983703", + "instructor_id": "hxj210002", + "overall_grade_rating": 4.42, + "total_grade_count": 174, + "course_ratings": { + "KORE1311": 4.42 + } + } + ], + "ramesh subramoniam": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2430659", + "quality_rating": 2.8, + "difficulty_rating": 3.4, + "would_take_again": 39, + "original_rmp_format": "Ramesh Subramoniam", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 67, + "tags": [ + "Participation matters", + "Test heavy", + "Graded by few things", + "Get ready to read", + "Lots of homework" + ], + "rmp_id": "2430659", + "instructor_id": "rxs179630", + "overall_grade_rating": 3.86, + "total_grade_count": 1811, + "course_ratings": { + "OPRE3333": 3.61, + "ITSS4343": 3.04, + "MIS6369": 4.25, + "OPRE3310": 3.56, + "OPRE4320": 3.46, + "OPRE6369": 4.49, + "ITSS3370": 4.17, + "OPRE6302": 4.6 + } + } + ], + "fadwa anka": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2541908", + "quality_rating": 4.5, + "difficulty_rating": 1.8, + "would_take_again": 91, + "original_rmp_format": "Fadwa Anka", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 32, + "tags": [ + "Caring", + "Clear grading criteria", + "Accessible outside class", + "Participation matters", + "Gives good feedback" + ], + "rmp_id": "2541908", + "instructor_id": "fha041000", + "overall_grade_rating": 4.3, + "total_grade_count": 1367, + "course_ratings": { + "CHEM1111": 4.51, + "CHEM1112": 4.61, + "CHEM1311": 3.19, + "CHEM4473": 4.17 + } + } + ], + "jacquelyn mcdonald": [ + { + "department": "Art History", + "url": "https://www.ratemyprofessors.com/professor/2958158", + "quality_rating": 4.5, + "difficulty_rating": 2.7, + "would_take_again": 83, + "original_rmp_format": "Jacquelyn McDonald ", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 12, + "tags": [ + "EXTRA CREDIT", + "Test heavy", + "Participation matters", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2958158", + "instructor_id": "jmd074000", + "overall_grade_rating": 4.14, + "total_grade_count": 1138, + "course_ratings": { + "AHST1304": 4.19, + "AHST1303": 4.07 + } + } + ], + "sridhar alagar": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2299173", + "quality_rating": 3.4, + "difficulty_rating": 3.8, + "would_take_again": 57, + "original_rmp_format": "Sridhar Alagar", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 94, + "tags": ["Lots of homework", "Group projects", "Tough grader", "Caring", "Amazing lectures "], + "rmp_id": "2299173", + "instructor_id": "sxa173731", + "overall_grade_rating": 3.71, + "total_grade_count": 1776, + "course_ratings": { + "CS6378": 3.9, + "CS4348": 3.17, + "CS1336": 3.12, + "CE3345": 2.59, + "CS3345": 3.01, + "CS4394": 2.98, + "CS3377": 3.8, + "CS5348": 4.56, + "SE3377": 4.17, + "CS6314": 4.97, + "SE4348": 2.92, + "CS6301": 4.95, + "CS5343": 3.7 + } + } + ], + "steven mcwilliams": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/1748273", + "quality_rating": 3.2, + "difficulty_rating": 3.6, + "would_take_again": 62, + "original_rmp_format": "Steven McWilliams", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 68, + "tags": [ + "Test heavy", + "Tough grader", + "Graded by few things", + "Caring", + "Skip class? You won't pass." + ], + "rmp_id": "1748273", + "instructor_id": "sxm127330", + "overall_grade_rating": 3.63, + "total_grade_count": 1355, + "course_ratings": { + "ACN6340": 3.87, + "NSC3361": 3.43, + "NSC4353": 4.01, + "NSC4352": 4.22, + "NSC4388": 4.69, + "NSC4354": 3.9 + } + } + ], + "lev gelb": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1493653", + "quality_rating": 3.3, + "difficulty_rating": 4, + "would_take_again": 48, + "original_rmp_format": "Lev Gelb", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 43, + "tags": [ + "Lots of homework", + "Tough grader", + "Skip class? You won't pass.", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "1493653", + "instructor_id": "ldg102020", + "overall_grade_rating": 3.17, + "total_grade_count": 306, + "course_ratings": { + "ENGR3341": 3.12, + "MECH5300": 3.62, + "ENGR3300": 3.36 + } + } + ], + "anjum chida": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2048078", + "quality_rating": 3.9, + "difficulty_rating": 3.6, + "would_take_again": 81, + "original_rmp_format": "Anjum Chida", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 95, + "tags": [ + "Clear grading criteria", + "Accessible outside class", + "Lots of homework", + "Lecture heavy", + "Caring" + ], + "rmp_id": "2048078", + "instructor_id": "axc157030", + "overall_grade_rating": 4.46, + "total_grade_count": 1774, + "course_ratings": { + "CS3345": 4.36, + "CS6375": 4.85, + "CS4349": 4.39, + "CE2336": 3.75, + "CS2336": 4.37, + "CE3345": 4.7, + "CS4375": 3.87, + "CS4365": 4.37 + } + } + ], + "sriraam natarajan": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2331194", + "quality_rating": 3.9, + "difficulty_rating": 3.4, + "would_take_again": 68, + "original_rmp_format": "Sriraam Natarajan", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 22, + "tags": [ + "Amazing lectures ", + "Hilarious", + "Tough grader", + "Skip class? You won't pass.", + "Inspirational" + ], + "rmp_id": "2331194", + "instructor_id": "sxn177430", + "overall_grade_rating": 4.39, + "total_grade_count": 446, + "course_ratings": { + "CS6364": 4.42, + "CS7301": 4.93, + "CS6375": 4.4, + "CS4365": 3.96 + } + } + ], + "judd bradbury": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1520448", + "quality_rating": 2.5, + "difficulty_rating": 3.8, + "would_take_again": 26, + "original_rmp_format": "Judd Bradbury", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 92, + "tags": [ + "Lots of homework", + "Tough grader", + "Get ready to read", + "Beware of pop quizzes", + "Test heavy" + ], + "rmp_id": "1520448", + "instructor_id": "jdb101000", + "overall_grade_rating": 4.08, + "total_grade_count": 1883, + "course_ratings": { + "MIS6378": 4.65, + "MIS6309": 4.21, + "MIS6380": 4.04, + "MKT6338": 4.25, + "ITSS4351": 3.73, + "BUAN6346": 4.47, + "ITSS4355": 4.04, + "ITSS4354": 4.05, + "MIS6347": 4.4, + "BUAN6358": 4.09, + "ITSS4352": 3.96, + "ACCT6309": 3.69 + } + } + ], + "adannah duruoha": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2473787", + "quality_rating": 5, + "difficulty_rating": 2.6, + "would_take_again": 98, + "original_rmp_format": "Adannah Duruoha", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 63, + "tags": [ + "Amazing lectures ", + "Caring", + "Respected", + "Accessible outside class", + "Lots of homework" + ], + "rmp_id": "2473787", + "instructor_id": "axd180037", + "overall_grade_rating": 3.64, + "total_grade_count": 1220, + "course_ratings": { + "MATH1325": 4.02, + "MATH2413": 3.25, + "MATH1316": 3.75, + "MATH1314": 3.77, + "MATH1326": 3.87, + "MATH2414": 3.48, + "MATH1306": 4.45, + "MATH2312": 3.96 + } + } + ], + "adrian murza": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2818509", + "quality_rating": 4.6, + "difficulty_rating": 2.7, + "would_take_again": 88, + "original_rmp_format": "Adrian Murza", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 49, + "tags": [ + "Caring", + "Accessible outside class", + "Amazing lectures ", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "2818509", + "instructor_id": "acm170730", + "overall_grade_rating": 2.89, + "total_grade_count": 1035, + "course_ratings": { + "MATH2413": 1.93, + "MATH2418": 3.22, + "CHEM3321": 3.99, + "MATH1326": 2.24, + "CHEM3322": 3.91, + "MATH2312": 3.03, + "MATH1325": 2.45 + } + } + ], + "moran blueshtein": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1869661", + "quality_rating": 2.5, + "difficulty_rating": 3.7, + "would_take_again": 33, + "original_rmp_format": "Moran Blueshtein", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 72, + "tags": [ + "Lecture heavy", + "Lots of homework", + "Tough grader", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "1869661", + "instructor_id": "mxb135230", + "overall_grade_rating": 3.85, + "total_grade_count": 1764, + "course_ratings": { + "MECO6303": 3.93, + "BUAN6312": 3.93, + "MECO6312": 3.79, + "BA1320": 3.64 + } + } + ], + "eric becker": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2324103", + "quality_rating": 4.3, + "difficulty_rating": 2.8, + "would_take_again": 85, + "original_rmp_format": "Eric Becker", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 52, + "tags": [ + "Group projects", + "EXTRA CREDIT", + "Hilarious", + "Clear grading criteria", + "Amazing lectures " + ], + "rmp_id": "2324103", + "instructor_id": "ewb160130", + "overall_grade_rating": 4.53, + "total_grade_count": 5599, + "course_ratings": { + "CS4141": 4.57, + "CS4341": 4.22, + "CS5303": 4.5, + "CS3162": 4.72, + "CS1337": 3.93, + "CS4347": 4.68, + "CS6313": 4.8, + "SE4347": 4.43 + } + } + ], + "forouz shirvani": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2367097", + "quality_rating": 4.5, + "difficulty_rating": 2.7, + "would_take_again": 88, + "original_rmp_format": "Forouz Shirvani", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 24, + "tags": [ + "Group projects", + "Gives good feedback", + "Caring", + "Accessible outside class", + "Get ready to read" + ], + "rmp_id": "2367097", + "instructor_id": "fxk024000", + "overall_grade_rating": 4.42, + "total_grade_count": 781, + "course_ratings": { + "PSY3393": 4.26, + "PSY3331": 4.55 + } + } + ], + "rajiv shah": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1778219", + "quality_rating": 2.8, + "difficulty_rating": 3.4, + "would_take_again": 44, + "original_rmp_format": "Rajiv Shah", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 21, + "tags": [ + "Participation matters", + "Group projects", + "Lecture heavy", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "1778219", + "instructor_id": "rxs079000", + "overall_grade_rating": 4.16, + "total_grade_count": 565, + "course_ratings": { + "ENTP6388": 4.03, + "ENTP4350": 3.9, + "FIN6315": 4.28, + "ENTP6315": 3.71, + "ENTP6375": 4.07, + "MIS6375": 4.26, + "ENTP4311": 3.86, + "ENTP6398": 4.59 + } + } + ], + "maxim arnold": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2210457", + "quality_rating": 2.9, + "difficulty_rating": 3.7, + "would_take_again": 45, + "original_rmp_format": "Maxim Arnold", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 20, + "tags": [ + "Lots of homework", + "Tough grader", + "Amazing lectures ", + "Accessible outside class", + "Skip class? You won't pass." + ], + "rmp_id": "2210457", + "instructor_id": "mxa149530", + "overall_grade_rating": 2.93, + "total_grade_count": 664, + "course_ratings": { + "MATH2418": 2.76, + "MATH5301": 4.05, + "MATH6315": 4.1, + "MATH2419": 4.69 + } + } + ], + "yeon soo park": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/3055484", + "quality_rating": 3.9, + "difficulty_rating": 1.6, + "would_take_again": 77, + "original_rmp_format": "Yeon Soo Park", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 13, + "tags": [ + "Clear grading criteria", + "Caring", + "Test heavy", + "Graded by few things", + "Lecture heavy" + ], + "rmp_id": "3055484", + "instructor_id": "dal602778", + "overall_grade_rating": 4.59, + "total_grade_count": 766, + "course_ratings": { + "GOVT2305": 4.68, + "GOVT2306": 4.56 + } + } + ], + "yi huang": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2996616", + "quality_rating": 2, + "difficulty_rating": 3.4, + "would_take_again": 22, + "original_rmp_format": "Yi Huang", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 9, + "tags": ["Tough grader", "Participation matters", "Graded by few things", "Test heavy"], + "rmp_id": "2996616", + "instructor_id": "yxh220019", + "overall_grade_rating": 3.91, + "total_grade_count": 554, + "course_ratings": { + "BIOL2281": 3.84, + "BIOL4380": 4.74, + "BIOL3455": 2.73 + } + } + ], + "pamela kirkland": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/2182237", + "quality_rating": 2.6, + "difficulty_rating": 3, + "would_take_again": 33, + "original_rmp_format": "Pamela Kirkland", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 9, + "tags": [ + "Group projects", + "Lots of homework", + "Caring", + "Participation matters", + "Gives good feedback" + ], + "rmp_id": "2182237", + "instructor_id": "pik140130", + "overall_grade_rating": 4.62, + "total_grade_count": 115, + "course_ratings": { + "NATS1142": 4.71, + "NATS1143": 4.43 + } + } + ], + "maiza hixson": [ + { + "department": "Theater", + "url": "https://www.ratemyprofessors.com/professor/3036463", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Maiza Hixson", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 3, + "tags": [ + "Caring", + "Group projects", + "Participation matters", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "3036463", + "instructor_id": "dal853117", + "overall_grade_rating": 4.7, + "total_grade_count": 75, + "course_ratings": { + "THEA1310": 4.7 + } + } + ], + "ndackyssa oyima antseleve": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/3013972", + "quality_rating": 2, + "difficulty_rating": 4.3, + "would_take_again": 0, + "original_rmp_format": "Ndackyssa Oyima-Antseleve", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 3, + "tags": [ + "Tough grader", + "Get ready to read", + "Lots of homework", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "3013972", + "instructor_id": "nxo160430", + "overall_grade_rating": 3.52, + "total_grade_count": 131, + "course_ratings": { + "FIN4310": 4.06, + "FIN3300": 3.68, + "FIN3320": 3.07, + "FIN4300": 3.64 + } + } + ], + "william swartz": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1935336", + "quality_rating": 3.8, + "difficulty_rating": 2.8, + "would_take_again": 62, + "original_rmp_format": "William Swartz", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 33, + "tags": ["Caring", "Respected", "Inspirational", "EXTRA CREDIT", "Amazing lectures "], + "rmp_id": "1935336", + "instructor_id": "wps100020", + "overall_grade_rating": 4.4, + "total_grade_count": 1388, + "course_ratings": { + "EE4304": 3.99, + "CE4304": 4.15, + "EEDG6302": 4.49, + "EEDG5325": 4.77, + "CE4370": 4.53, + "CE6301": 4.53, + "EE4370": 4.24, + "EEDG6301": 4.62, + "CE5325": 4.7 + } + } + ], + "charles bambach": [ + { + "department": "Philosophy", + "url": "https://www.ratemyprofessors.com/professor/587244", + "quality_rating": 4, + "difficulty_rating": 4.2, + "would_take_again": 50, + "original_rmp_format": "Charles Bambach", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 37, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Inspirational", + "Lecture heavy", + "Tough grader" + ], + "rmp_id": "587244", + "instructor_id": "cbambach", + "overall_grade_rating": 3.81, + "total_grade_count": 281, + "course_ratings": { + "HUHI6395": 4.71, + "PHIL3321": 3.86, + "PHIL4327": 4.36, + "PHIL4331": 4.19, + "PHIL4322": 4.1, + "PHIL4330": 4.01, + "PHIL1301": 3.42 + } + } + ], + "tonja wissinger": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/411514", + "quality_rating": 3.1, + "difficulty_rating": 3.5, + "would_take_again": 48, + "original_rmp_format": "Tonja Wissinger", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 60, + "tags": [ + "Get ready to read", + "Tough grader", + "Participation matters", + "Gives good feedback", + "Skip class? You won't pass." + ], + "rmp_id": "411514", + "instructor_id": "twissin", + "overall_grade_rating": 3.52, + "total_grade_count": 481, + "course_ratings": { + "BIS3320": 2.92, + "ISIS3310": 3.37, + "BIS1100": 4.76, + "ISIS3312": 3.1, + "AMS4360": 2.58, + "GST4360": 3.58 + } + } + ], + "priya narayanasami": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2337456", + "quality_rating": 2.5, + "difficulty_rating": 3.3, + "would_take_again": 44, + "original_rmp_format": "Priya Narayanasami", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 48, + "tags": [ + "Participation matters", + "Lots of homework", + "Tough grader", + "Caring", + "Group projects" + ], + "rmp_id": "2337456", + "instructor_id": "pxn173330", + "overall_grade_rating": 3.89, + "total_grade_count": 1357, + "course_ratings": { + "ITSS3311": 3.92, + "CS1335": 3.77, + "CS1336": 3.53, + "CS3354": 4.32, + "CS1337": 3.18, + "CS1436": 3.71, + "SE3354": 4.17 + } + } + ], + "carol lanham": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/1717030", + "quality_rating": 3.8, + "difficulty_rating": 2.2, + "would_take_again": 68, + "original_rmp_format": "Carol Lanham", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 46, + "tags": [ + "Caring", + "Group projects", + "Respected", + "Clear grading criteria", + "Amazing lectures " + ], + "rmp_id": "1717030", + "instructor_id": "ccl054000", + "overall_grade_rating": 4.08, + "total_grade_count": 1153, + "course_ratings": { + "SOC3321": 4.1, + "EPPS1110": 4.09, + "SOC3343": 3.74, + "SOC3352": 3.76, + "SOC4357": 3.83, + "SOC3303": 3.92, + "SOC1301": 4.78, + "SOC2320": 4.99, + "SOC1306": 4.83 + } + } + ], + "jin liu": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1628521", + "quality_rating": 2.4, + "difficulty_rating": 3.4, + "would_take_again": 38, + "original_rmp_format": "Jin Liu", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 16, + "tags": [ + "Tough grader", + "Test heavy", + "Graded by few things", + "Get ready to read", + "Lecture heavy" + ], + "rmp_id": "1628521", + "instructor_id": "jinliu", + "overall_grade_rating": 4.09, + "total_grade_count": 387, + "course_ratings": { + "EECT6326": 4.41, + "EE3311": 3.81, + "CE3311": 3.84, + "EECT7327": 4.51, + "EE4340": 3.8, + "CE3101": 4.92, + "EE3101": 4.47 + } + } + ], + "hoi lee": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1747794", + "quality_rating": 3.1, + "difficulty_rating": 3.4, + "would_take_again": 25, + "original_rmp_format": "Hoi Lee", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 14, + "tags": [ + "Tough grader", + "Get ready to read", + "Would take again", + "Respected", + "Group projects" + ], + "rmp_id": "1747794", + "instructor_id": "hxl054000", + "overall_grade_rating": 4.12, + "total_grade_count": 299, + "course_ratings": { + "EECT6378": 4.33, + "CE3311": 3.88, + "EE3311": 4.09, + "EECT6326": 4.11, + "EE3111": 5.0 + } + } + ], + "amandeep sra": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1634051", + "quality_rating": 4.1, + "difficulty_rating": 3.3, + "would_take_again": 82, + "original_rmp_format": "Amandeep Sra", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 100, + "tags": [ + "Accessible outside class", + "Caring", + "Skip class? You won't pass.", + "Hilarious", + "Lots of homework" + ], + "rmp_id": "1634051", + "instructor_id": "aks057000", + "overall_grade_rating": 2.92, + "total_grade_count": 2723, + "course_ratings": { + "CHEM1312": 2.64, + "CHEM2401": 3.42, + "CHEM1111": 4.2, + "CHEM1112": 3.88, + "CHEM1311": 2.84 + } + } + ], + "john zweck": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1930619", + "quality_rating": 2.9, + "difficulty_rating": 4.1, + "would_take_again": 59, + "original_rmp_format": "John Zweck", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 80, + "tags": [ + "Lots of homework", + "Tough grader", + "Skip class? You won't pass.", + "Amazing lectures ", + "Lecture heavy" + ], + "rmp_id": "1930619", + "instructor_id": "jwz120030", + "overall_grade_rating": 3.28, + "total_grade_count": 670, + "course_ratings": { + "MATH2415": 3.21, + "MATH6301": 3.58, + "MATH5302": 4.04, + "MATH4362": 3.45, + "MATH4355": 3.75 + } + } + ], + "kendra seaman": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/2574808", + "quality_rating": 2.1, + "difficulty_rating": 3.6, + "would_take_again": 22, + "original_rmp_format": "Kendra Seaman", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 18, + "tags": [ + "Lots of homework", + "So many papers", + "Tough grader", + "Participation matters", + "Accessible outside class" + ], + "rmp_id": "2574808", + "instructor_id": "kls190004", + "overall_grade_rating": 3.92, + "total_grade_count": 337, + "course_ratings": { + "PSY3361": 3.86, + "ACN6330": 4.23 + } + } + ], + "dennis kratz": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1158547", + "quality_rating": 2.7, + "difficulty_rating": 3.4, + "would_take_again": 44, + "original_rmp_format": "Dennis Kratz", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 10, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Inspirational", + "Caring", + "Get ready to read" + ], + "rmp_id": "1158547", + "instructor_id": "dkratz", + "overall_grade_rating": 4.46, + "total_grade_count": 157, + "course_ratings": { + "HONS3199": 5.0, + "LIT3300": 4.29, + "LIT3337": 4.84, + "LIT3316": 3.87 + } + } + ], + "david patterson": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/2545341", + "quality_rating": 3, + "difficulty_rating": 4, + "would_take_again": 50, + "original_rmp_format": "David Patterson", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 2, + "tags": ["Get ready to read", "Gives good feedback", "Caring"], + "rmp_id": "2545341", + "instructor_id": "dxp103120", + "overall_grade_rating": 4.63, + "total_grade_count": 144, + "course_ratings": { + "HUHI7314": 4.27, + "HIST6342": 4.6, + "LIT6388": 4.89, + "HIST6384": 4.86, + "HUHI7315": 4.88, + "HUHI6313": 4.22, + "HIST2370": 4.36, + "LIT6378": 4.93, + "HIST6344": 4.89 + } + } + ], + "rabin dahal": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2057295", + "quality_rating": 4.8, + "difficulty_rating": 3.1, + "would_take_again": 96, + "original_rmp_format": "Rabin Dahal", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 87, + "tags": [ + "Amazing lectures ", + "Caring", + "Respected", + "Accessible outside class", + "Gives good feedback" + ], + "rmp_id": "2057295", + "instructor_id": "rxd153030", + "overall_grade_rating": 3.12, + "total_grade_count": 1718, + "course_ratings": { + "MATH2417": 2.89, + "MATH2418": 3.23, + "MATH2413": 3.2, + "MATH2414": 2.23, + "MATH2415": 3.25, + "MATH3379": 3.25, + "MATH1326": 3.49, + "MATH2419": 3.53 + } + } + ], + "jalal omer": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2712933", + "quality_rating": 3.7, + "difficulty_rating": 3.5, + "would_take_again": 61, + "original_rmp_format": "Jalal Omer", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 41, + "tags": [ + "Participation matters", + "Group projects", + "Tough grader", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2712933", + "instructor_id": "jso016000", + "overall_grade_rating": 3.85, + "total_grade_count": 1516, + "course_ratings": { + "CS4337": 3.55, + "CS4347": 3.69, + "CS6360": 4.26, + "SE4347": 3.27 + } + } + ], + "rami el youssef": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2798733", + "quality_rating": 5, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "Rami El-Youssef", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 21, + "tags": ["Amazing lectures ", "Caring", "Respected", "Inspirational", "Group projects"], + "rmp_id": "2798733", + "instructor_id": "rxe200001", + "overall_grade_rating": 4.54, + "total_grade_count": 901, + "course_ratings": { + "BUAN6346": 4.54, + "MIS6346": 4.53, + "BUAN6382": 4.58 + } + } + ], + "neetha devdas": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2420722", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Neetha Devdas", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 21, + "tags": [ + "Caring", + "Amazing lectures ", + "Clear grading criteria", + "Participation matters", + "Gives good feedback" + ], + "rmp_id": "2420722", + "instructor_id": "nrd120030", + "overall_grade_rating": 4.8, + "total_grade_count": 422, + "course_ratings": { + "PSY2301": 4.72, + "PSY4343": 4.88, + "HONS3199": 4.96 + } + } + ], + "joshua summers": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2707403", + "quality_rating": 2.7, + "difficulty_rating": 4, + "would_take_again": 33, + "original_rmp_format": "Joshua Summers", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Group projects", + "Tough grader", + "Get ready to read", + "So many papers" + ], + "rmp_id": "2707403", + "instructor_id": "jxs200065", + "overall_grade_rating": 5.0, + "total_grade_count": 10, + "course_ratings": { + "ECS4392": 5.0 + } + } + ], + "ryan boyd": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/3033733", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Ryan Boyd", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 2, + "tags": ["Amazing lectures ", "Hilarious", "Clear grading criteria", "Gives good feedback"], + "rmp_id": "3033733", + "instructor_id": "rlb240002", + "overall_grade_rating": 3.7, + "total_grade_count": 51, + "course_ratings": { + "PSY4331": 3.7 + } + } + ], + "gregg dieckmann": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/298289", + "quality_rating": 3.7, + "difficulty_rating": 3.4, + "would_take_again": 56, + "original_rmp_format": "Gregg Dieckmann", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 194, + "tags": [ + "Test heavy", + "Amazing lectures ", + "Lecture heavy", + "Accessible outside class", + "Skip class? You won't pass." + ], + "rmp_id": "298289", + "instructor_id": "dieckgr", + "overall_grade_rating": 2.83, + "total_grade_count": 3616, + "course_ratings": { + "CHEM1311": 2.89, + "CHEM1301": 2.87, + "CHEM1312": 2.75, + "HONS3199": 5.0 + } + } + ], + "richard min": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1875394", + "quality_rating": 1.8, + "difficulty_rating": 3.6, + "would_take_again": 20, + "original_rmp_format": "Richard Min", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 145, + "tags": [ + "Lots of homework", + "Get ready to read", + "Tough grader", + "Test heavy", + "EXTRA CREDIT" + ], + "rmp_id": "1875394", + "instructor_id": "rkm010300", + "overall_grade_rating": 3.92, + "total_grade_count": 2689, + "course_ratings": { + "CS3377": 3.52, + "CS4337": 3.46, + "CS6364": 4.54, + "CS4365": 3.63, + "SE3377": 3.38, + "CS6314": 4.63, + "CS3162": 4.66, + "CS1134": 4.48, + "CS1136": 4.17, + "CS2336": 3.72 + } + } + ], + "nasrin sultana": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2537500", + "quality_rating": 3, + "difficulty_rating": 3.3, + "would_take_again": 49, + "original_rmp_format": "Nasrin Sultana", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 55, + "tags": [ + "Lots of homework", + "Caring", + "Participation matters", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "2537500", + "instructor_id": "nxs190039", + "overall_grade_rating": 3.14, + "total_grade_count": 1224, + "course_ratings": { + "MATH2413": 3.09, + "MATH2414": 3.18, + "MATH1314": 3.17, + "MATH1326": 3.39, + "MATH2417": 2.95 + } + } + ], + "hui ding": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2170419", + "quality_rating": 2, + "difficulty_rating": 3.6, + "would_take_again": 25, + "original_rmp_format": "Hui Ding", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 36, + "tags": [ + "Lots of homework", + "Lecture heavy", + "Clear grading criteria", + "Tough grader", + "Test heavy" + ], + "rmp_id": "2170419", + "instructor_id": "hxd162130", + "overall_grade_rating": 2.96, + "total_grade_count": 1229, + "course_ratings": { + "MATH1325": 3.64, + "MATH2413": 2.76, + "MATH2418": 2.96, + "MATH2312": 2.68, + "MATH2414": 2.43 + } + } + ], + "christine postolos": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2911658", + "quality_rating": 4.2, + "difficulty_rating": 2.6, + "would_take_again": 80, + "original_rmp_format": "Christine Postolos", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 5, + "tags": [ + "Group projects", + "Gives good feedback", + "Get ready to read", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2911658", + "instructor_id": "cxp220036", + "overall_grade_rating": 3.7, + "total_grade_count": 277, + "course_ratings": { + "BCOM1300": 3.75, + "BCOM3300": 3.35, + "BCOM4300": 4.58 + } + } + ], + "clara burghelea": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/3029512", + "quality_rating": 1, + "difficulty_rating": 1.5, + "would_take_again": 0, + "original_rmp_format": "Clara Burghelea", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 2, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Graded by few things" + ], + "rmp_id": "3029512", + "instructor_id": "cib220000", + "overall_grade_rating": 4.47, + "total_grade_count": 141, + "course_ratings": { + "RHET1302": 4.42, + "CRWT2301": 4.58 + } + } + ], + "bentley garrett": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1335386", + "quality_rating": 4.2, + "difficulty_rating": 3.3, + "would_take_again": 95, + "original_rmp_format": "Bentley Garrett", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 127, + "tags": [ + "Amazing lectures ", + "Lots of homework", + "Hilarious", + "Gives good feedback", + "Caring" + ], + "rmp_id": "1335386", + "instructor_id": "btg032000", + "overall_grade_rating": 2.9, + "total_grade_count": 1341, + "course_ratings": { + "MATH4334": 3.21, + "MATH2414": 2.82, + "MATH2370": 3.05 + } + } + ], + "euel elliott": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/400247", + "quality_rating": 3.4, + "difficulty_rating": 2.8, + "would_take_again": 56, + "original_rmp_format": "Euel Elliott", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 114, + "tags": [ + "Test heavy", + "Lecture heavy", + "Get ready to read", + "Graded by few things", + "Clear grading criteria" + ], + "rmp_id": "400247", + "instructor_id": "eelliott", + "overall_grade_rating": 4.34, + "total_grade_count": 3709, + "course_ratings": { + "GOVT2306": 4.34, + "PPPE6347": 3.75, + "PSCI6347": 4.77 + } + } + ], + "jung mo ahn": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/752166", + "quality_rating": 2.3, + "difficulty_rating": 4, + "would_take_again": 19, + "original_rmp_format": "Jung-Mo Ahn", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 51, + "tags": [ + "Tough grader", + "Lecture heavy", + "Test heavy", + "Graded by few things", + "Get ready to read" + ], + "rmp_id": "752166", + "instructor_id": "jxa041100", + "overall_grade_rating": 3.17, + "total_grade_count": 863, + "course_ratings": { + "CHEM2323": 3.1, + "CHEM5333": 4.88, + "CHEM2325": 3.21 + } + } + ], + "william marks": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2920749", + "quality_rating": 4.1, + "difficulty_rating": 3.7, + "would_take_again": 78, + "original_rmp_format": "William Marks", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 18, + "tags": ["Caring", "Test heavy", "Amazing lectures ", "Lecture heavy", "EXTRA CREDIT"], + "rmp_id": "2920749", + "instructor_id": "wxm180005", + "overall_grade_rating": 4.36, + "total_grade_count": 635, + "course_ratings": { + "NSC3361": 4.37, + "NSC4354": 4.2, + "NSC4373": 4.51, + "NSC4353": 4.47, + "NSC4352": 4.68 + } + } + ], + "heidi cooley": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2573436", + "quality_rating": 1.1, + "difficulty_rating": 3.5, + "would_take_again": 0, + "original_rmp_format": "Heidi Cooley", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 18, + "tags": [ + "Get ready to read", + "Group projects", + "Lots of homework", + "Participation matters", + "Tough grader" + ], + "rmp_id": "2573436", + "instructor_id": "hxc176430", + "overall_grade_rating": 3.7, + "total_grade_count": 650, + "course_ratings": { + "ATCM7331": 4.77, + "ATCM3320": 3.49, + "ATCM4326": 3.9, + "ATCM6300": 4.21, + "ATCM2300": 3.66 + } + } + ], + "bo kyung park": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2680140", + "quality_rating": 2.6, + "difficulty_rating": 4.2, + "would_take_again": 44, + "original_rmp_format": "Bo Kyung Park", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 16, + "tags": [ + "Lecture heavy", + "Test heavy", + "Graded by few things", + "Tough grader", + "Clear grading criteria" + ], + "rmp_id": "2680140", + "instructor_id": "bxp200011", + "overall_grade_rating": 3.88, + "total_grade_count": 616, + "course_ratings": { + "HCS7355": 4.88, + "PSY3331": 3.84, + "HCS6376": 4.92 + } + } + ], + "alexandre pinheiro": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/3037379", + "quality_rating": 4.7, + "difficulty_rating": 1.3, + "would_take_again": 89, + "original_rmp_format": "Alexandre Pinheiro", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 9, + "tags": [ + "Caring", + "Amazing lectures ", + "Clear grading criteria", + "Accessible outside class", + "Respected" + ], + "rmp_id": "3037379", + "instructor_id": "agp240000", + "overall_grade_rating": 4.53, + "total_grade_count": 22, + "course_ratings": { + "PHYS3427": 4.53 + } + } + ], + "matthew baker": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2638656", + "quality_rating": 4.9, + "difficulty_rating": 2.1, + "would_take_again": 100, + "original_rmp_format": "Matthew Baker", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 7, + "tags": [ + "Gives good feedback", + "Participation matters", + "Caring", + "Accessible outside class", + "Amazing lectures " + ], + "rmp_id": "2638656", + "instructor_id": "mwb190002", + "overall_grade_rating": 4.35, + "total_grade_count": 192, + "course_ratings": { + "RHET1302": 4.17, + "CRWT2301": 4.42, + "LIT2331": 4.04 + } + } + ], + "meghna sabharwal": [ + { + "department": "Public Policy", + "url": "https://www.ratemyprofessors.com/professor/2458602", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Meghna Sabharwal", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 2, + "tags": ["Caring", "Group projects", "Amazing lectures ", "Inspirational", "Respected"], + "rmp_id": "2458602", + "instructor_id": "mxs095000", + "overall_grade_rating": 4.66, + "total_grade_count": 248, + "course_ratings": { + "PA6320": 4.75, + "PA2325": 3.95, + "PA6345": 4.85, + "PA7320": 5.0, + "PA6311": 4.7, + "PA6386": 4.69 + } + } + ], + "caitlin drott": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/2937661", + "quality_rating": 4.5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Caitlin Drott", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 2, + "tags": ["Clear grading criteria", "Caring", "Get ready to read", "Gives good feedback"], + "rmp_id": "2937661", + "instructor_id": "cxd230009", + "overall_grade_rating": 4.4, + "total_grade_count": 75, + "course_ratings": { + "RHET1302": 4.4 + } + } + ], + "laurie thompson": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/191259", + "quality_rating": 2.3, + "difficulty_rating": 4, + "would_take_again": 17, + "original_rmp_format": "Laurie Thompson", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 182, + "tags": [ + "Tough grader", + "Lecture heavy", + "Test heavy", + "Skip class? You won't pass.", + "Lots of homework" + ], + "rmp_id": "191259", + "instructor_id": "lthomp", + "overall_grade_rating": 2.63, + "total_grade_count": 914, + "course_ratings": { + "CS1336": 2.56, + "CS1436": 2.6, + "CS1325": 2.61, + "CS1136": 3.32 + } + } + ], + "marilyn kaplan": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/495809", + "quality_rating": 1.9, + "difficulty_rating": 3.1, + "would_take_again": 14, + "original_rmp_format": "Marilyn Kaplan", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 101, + "tags": [ + "Tough grader", + "Participation matters", + "Skip class? You won't pass.", + "Lots of homework", + "Clear grading criteria" + ], + "rmp_id": "495809", + "instructor_id": "mkaplan", + "overall_grade_rating": 4.14, + "total_grade_count": 498, + "course_ratings": { + "BPS4305": 3.42, + "HONS3112": 4.11, + "HMGT3301": 3.15, + "HMGT4395": 4.01, + "BPS6310": 4.58, + "OBHR4310": 3.63, + "HONS3199": 4.88 + } + } + ], + "sumudu wijenayake": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2133125", + "quality_rating": 4.7, + "difficulty_rating": 2.7, + "would_take_again": 96, + "original_rmp_format": "Sumudu Wijenayake", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 53, + "tags": [ + "Caring", + "Accessible outside class", + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2133125", + "instructor_id": "snw081000", + "overall_grade_rating": 4.53, + "total_grade_count": 2532, + "course_ratings": { + "CHEM2323": 4.16, + "CHEM2123": 4.78, + "CHEM2125": 4.77, + "CHEM1111": 4.55, + "CHEM2233": 4.96, + "CHEM2325": 4.11, + "CHEM2324": 4.36 + } + } + ], + "jorge cobb": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1194698", + "quality_rating": 3, + "difficulty_rating": 3.8, + "would_take_again": 33, + "original_rmp_format": "Jorge Cobb", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 41, + "tags": ["Test heavy", "Tough grader", "Respected", "Get ready to read", "Amazing lectures "], + "rmp_id": "1194698", + "instructor_id": "jcobb", + "overall_grade_rating": 3.92, + "total_grade_count": 652, + "course_ratings": { + "CS5333": 4.15, + "CS6390": 4.03, + "CS5390": 4.19, + "CS4390": 3.02 + } + } + ], + "peter park": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/1057583", + "quality_rating": 3, + "difficulty_rating": 4, + "would_take_again": 38, + "original_rmp_format": "Peter Park", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 23, + "tags": [ + "Tough grader", + "Get ready to read", + "Graded by few things", + "Amazing lectures ", + "Inspirational" + ], + "rmp_id": "1057583", + "instructor_id": "pkp073000", + "overall_grade_rating": 3.53, + "total_grade_count": 51, + "course_ratings": { + "PHIL4332": 3.37, + "HIST3319": 3.37, + "PHIL4324": 3.88 + } + } + ], + "ayfer gurun": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1614800", + "quality_rating": 2.3, + "difficulty_rating": 3.7, + "would_take_again": 30, + "original_rmp_format": "Ayfer Gurun", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 66, + "tags": [ + "Test heavy", + "Lots of homework", + "Tough grader", + "Get ready to read", + "Lecture heavy" + ], + "rmp_id": "1614800", + "instructor_id": "axg119030", + "overall_grade_rating": 3.15, + "total_grade_count": 1061, + "course_ratings": { + "FIN3380": 3.47, + "FIN3320": 2.79, + "FIN6366": 4.9 + } + } + ], + "shaheen ahmed": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2491058", + "quality_rating": 2.5, + "difficulty_rating": 3, + "would_take_again": 32, + "original_rmp_format": "Shaheen Ahmed", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 28, + "tags": [ + "Tough grader", + "Group projects", + "Lecture heavy", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "2491058", + "instructor_id": "sxa176730", + "overall_grade_rating": 3.81, + "total_grade_count": 1056, + "course_ratings": { + "ENGR2300": 4.03, + "CE1100": 4.43, + "CE2310": 2.98, + "EE1100": 4.48, + "EE2310": 3.2, + "CE3202": 3.65, + "EE3202": 3.28 + } + } + ], + "daniel rajaratnam": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/1975092", + "quality_rating": 2.7, + "difficulty_rating": 3.8, + "would_take_again": 34, + "original_rmp_format": "Daniel Rajaratnam", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 108, + "tags": [ + "Group projects", + "Tough grader", + "Test heavy", + "Graded by few things", + "Skip class? You won't pass." + ], + "rmp_id": "1975092", + "instructor_id": "dxr143430", + "overall_grade_rating": 3.9, + "total_grade_count": 2156, + "course_ratings": { + "MKT3340": 3.72, + "MKT6301": 4.1, + "MKT3300": 3.37, + "MKT6309": 4.23, + "MKT6339": 4.11 + } + } + ], + "karen mazidi": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2190788", + "quality_rating": 3.4, + "difficulty_rating": 3.3, + "would_take_again": 67, + "original_rmp_format": "Karen Mazidi", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 101, + "tags": [ + "Clear grading criteria", + "Lots of homework", + "Get ready to read", + "Tough grader", + "Caring" + ], + "rmp_id": "2190788", + "instructor_id": "kjm160430", + "overall_grade_rating": 3.88, + "total_grade_count": 1743, + "course_ratings": { + "CS3340": 3.7, + "CS4301": 4.07, + "CS2340": 3.77, + "CS4395": 4.15, + "SE2340": 3.9, + "CS4375": 3.82, + "SE3340": 3.13, + "CS6320": 4.54 + } + } + ], + "ningzhong li": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1845673", + "quality_rating": 3.3, + "difficulty_rating": 3.2, + "would_take_again": 62, + "original_rmp_format": "Ningzhong Li", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 37, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Lots of homework", + "Tests are tough", + "Lecture heavy" + ], + "rmp_id": "1845673", + "instructor_id": "nxl124130", + "overall_grade_rating": 4.25, + "total_grade_count": 557, + "course_ratings": { + "ACCT6305": 4.25, + "ACCT6301": 4.3 + } + } + ], + "jason smith": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1833058", + "quality_rating": 3.4, + "difficulty_rating": 4.3, + "would_take_again": 57, + "original_rmp_format": "Jason Smith", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 282, + "tags": [ + "Lots of homework", + "Tough grader", + "Accessible outside class", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "1833058", + "instructor_id": "jws130830", + "overall_grade_rating": 2.94, + "total_grade_count": 1670, + "course_ratings": { + "CS1336": 3.24, + "CS1337": 2.41, + "CS2336": 3.12, + "CS2337": 3.81, + "CE2336": 2.24 + } + } + ], + "meghana satpute": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2519346", + "quality_rating": 3.3, + "difficulty_rating": 2.7, + "would_take_again": 62, + "original_rmp_format": "Meghana Satpute", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 82, + "tags": [ + "Caring", + "Lecture heavy", + "Beware of pop quizzes", + "Accessible outside class", + "Clear grading criteria" + ], + "rmp_id": "2519346", + "instructor_id": "mns086000", + "overall_grade_rating": 4.03, + "total_grade_count": 2102, + "course_ratings": { + "CS3305": 3.98, + "CS3377": 4.14, + "CS2336": 4.37, + "SE3306": 3.93, + "SE3377": 3.75, + "CS3345": 4.12 + } + } + ], + "syed naqvi": [ + { + "department": "Interdisciplinary Studies", + "url": "https://www.ratemyprofessors.com/professor/2421588", + "quality_rating": 4.4, + "difficulty_rating": 2.3, + "would_take_again": 85, + "original_rmp_format": "Syed Naqvi", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 46, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Gives good feedback", + "Participation matters", + "Caring" + ], + "rmp_id": "2421588", + "instructor_id": "skn180000", + "overall_grade_rating": 4.21, + "total_grade_count": 1046, + "course_ratings": { + "AMS2341": 3.95, + "AMS2390": 4.0, + "BIS1100": 4.67, + "BIS3320": 4.36, + "AMS3322": 3.33 + } + } + ], + "bruce novak": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2181682", + "quality_rating": 4.9, + "difficulty_rating": 3, + "would_take_again": 98, + "original_rmp_format": "Bruce Novak", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 45, + "tags": ["Amazing lectures ", "Hilarious", "Caring", "Accessible outside class", "Respected"], + "rmp_id": "2181682", + "instructor_id": "bxn111230", + "overall_grade_rating": 3.15, + "total_grade_count": 1487, + "course_ratings": { + "CHEM2323": 2.74, + "CHEM2325": 3.39 + } + } + ], + "babak fahimi": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1612398", + "quality_rating": 3.1, + "difficulty_rating": 4.2, + "would_take_again": 59, + "original_rmp_format": "Babak Fahimi", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 39, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Get ready to read", + "Lots of homework", + "Respected" + ], + "rmp_id": "1612398", + "instructor_id": "bxf102000", + "overall_grade_rating": 3.6, + "total_grade_count": 270, + "course_ratings": { + "EE3301": 3.4, + "CE3301": 2.93, + "CE2301": 3.56, + "EE2301": 3.33, + "EEPE7356": 4.93, + "EEPE6357": 4.66 + } + } + ], + "carie king": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1334602", + "quality_rating": 4, + "difficulty_rating": 3.7, + "would_take_again": 74, + "original_rmp_format": "Carie King", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 33, + "tags": [ + "Tough grader", + "Accessible outside class", + "Gives good feedback", + "Lots of homework", + "Group projects" + ], + "rmp_id": "1334602", + "instructor_id": "cxl085200", + "overall_grade_rating": 4.2, + "total_grade_count": 682, + "course_ratings": { + "COMM4375": 4.49, + "COMM4314": 4.0, + "COMM3342": 3.77, + "ECS3390": 4.24, + "COMM4360": 4.41, + "VPAS3340": 3.98, + "VPAS4389": 4.69, + "ECS2390": 4.91, + "RHET1302": 4.19, + "AMS4304": 4.06, + "CHEM6389": 4.34, + "COMM4371": 3.81, + "RHET4302": 4.44, + "COMM4380": 3.9 + } + } + ], + "richard scotch": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/136508", + "quality_rating": 4.3, + "difficulty_rating": 1.9, + "would_take_again": 76, + "original_rmp_format": "Richard Scotch", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 23, + "tags": [ + "Clear grading criteria", + "Caring", + "Lecture heavy", + "Respected", + "Get ready to read" + ], + "rmp_id": "136508", + "instructor_id": "scotch", + "overall_grade_rating": 4.39, + "total_grade_count": 393, + "course_ratings": { + "SOC6350": 4.17, + "SOC4372": 4.25, + "PPPE6350": 4.88, + "PPPE6340": 4.91, + "SOC4302": 4.12, + "SOC6340": 4.74, + "PPPE6341": 4.45, + "SOC6357": 4.7, + "HONS3199": 5.0, + "PPPE6329": 4.9 + } + } + ], + "alice wang": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2942062", + "quality_rating": 3.6, + "difficulty_rating": 3.3, + "would_take_again": 69, + "original_rmp_format": "Alice Wang", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 16, + "tags": [ + "Caring", + "Accessible outside class", + "Tough grader", + "Amazing lectures ", + "Lots of homework" + ], + "rmp_id": "2942062", + "instructor_id": "axw230018", + "overall_grade_rating": 3.41, + "total_grade_count": 530, + "course_ratings": { + "CS4341": 3.35, + "CS2340": 3.21, + "SE2340": 3.57, + "CE6306": 5.0, + "EEDG6306": 5.0 + } + } + ], + "rosemary admiral": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/2435488", + "quality_rating": 4.9, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Rosemary Admiral", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 10, + "tags": [ + "Get ready to read", + "Caring", + "Accessible outside class", + "Participation matters", + "Tough grader" + ], + "rmp_id": "2435488", + "instructor_id": "rxa170011", + "overall_grade_rating": 4.26, + "total_grade_count": 321, + "course_ratings": { + "HIST2340": 4.28, + "HIST6370": 4.97, + "HIST4342": 4.58, + "HIST4376": 4.25, + "HIST3301": 4.11, + "HIST3346": 4.51, + "HIST3325": 4.57, + "HIST3350": 3.41 + } + } + ], + "bahareh momeniabdolabadi": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2924126", + "quality_rating": 5, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Bahareh Momeniabdolabadi", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 4, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Gives good feedback", + "Inspirational", + "Caring" + ], + "rmp_id": "2924126", + "instructor_id": "bxm180023", + "overall_grade_rating": 4.06, + "total_grade_count": 157, + "course_ratings": { + "CRWT2301": 4.17, + "LIT2331": 3.81, + "RHET1302": 4.08 + } + } + ], + "saba khan": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/3062965", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Saba Khan", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 1, + "tags": [], + "rmp_id": "3062965", + "instructor_id": "sxk240061", + "overall_grade_rating": 4.66, + "total_grade_count": 118, + "course_ratings": { + "CHEM1111": 4.66 + } + } + ], + "june jones": [ + { + "department": "Interdisciplinary Studies", + "url": "https://www.ratemyprofessors.com/professor/3046150", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "June Jones", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 1, + "tags": ["Participation matters", "Amazing lectures ", "Caring"], + "rmp_id": "3046150", + "instructor_id": "jaj230010", + "overall_grade_rating": 4.24, + "total_grade_count": 129, + "course_ratings": { + "BIS3320": 3.21, + "ISIS3334": 4.09, + "PSCI3301": 4.72, + "PSCI4354": 4.66 + } + } + ], + "daniel arce": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1519561", + "quality_rating": 4.7, + "difficulty_rating": 3.1, + "would_take_again": 93, + "original_rmp_format": "Daniel Arce", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 56, + "tags": [ + "Amazing lectures ", + "Respected", + "Skip class? You won't pass.", + "Lecture heavy", + "Gives good feedback" + ], + "rmp_id": "1519561", + "instructor_id": "dga071000", + "overall_grade_rating": 2.92, + "total_grade_count": 1092, + "course_ratings": { + "ECON2302": 2.69, + "ECON4310": 4.13 + } + } + ], + "ziaullah khan": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1636344", + "quality_rating": 3, + "difficulty_rating": 3.3, + "would_take_again": 43, + "original_rmp_format": "Ziaullah Khan", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 116, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Hilarious", + "Caring", + "Lots of homework" + ], + "rmp_id": "1636344", + "instructor_id": "kkhan", + "overall_grade_rating": 4.15, + "total_grade_count": 1587, + "course_ratings": { + "CS2336": 4.21, + "CS3345": 4.05, + "CE3345": 3.1, + "SE3345": 3.79, + "CS4347": 4.35, + "SE4347": 4.55, + "CE2336": 3.5, + "CS4375": 4.33 + } + } + ], + "mark paulk": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1897357", + "quality_rating": 3.3, + "difficulty_rating": 2.9, + "would_take_again": 56, + "original_rmp_format": "Mark Paulk", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 85, + "tags": [ + "Beware of pop quizzes", + "Tough grader", + "Clear grading criteria", + "Group projects", + "Test heavy" + ], + "rmp_id": "1897357", + "instructor_id": "mcp130030", + "overall_grade_rating": 3.82, + "total_grade_count": 2810, + "course_ratings": { + "CS3354": 3.86, + "SE4367": 3.55, + "CS1336": 3.52, + "CE3354": 3.82, + "CS1325": 3.85, + "SE3354": 3.38, + "CS4376": 3.94, + "SE4381": 3.79, + "SE6329": 4.39, + "SE6388": 4.53, + "CS1324": 4.21, + "SE4376": 3.82, + "SE6316": 4.62 + } + } + ], + "serdar erbatur": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2585193", + "quality_rating": 3.8, + "difficulty_rating": 3, + "would_take_again": 73, + "original_rmp_format": "Serdar Erbatur", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 83, + "tags": [ + "Test heavy", + "Graded by few things", + "Amazing lectures ", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "2585193", + "instructor_id": "sxe190003", + "overall_grade_rating": 4.17, + "total_grade_count": 2297, + "course_ratings": { + "CE2305": 4.26, + "CS2305": 4.19, + "CS4349": 4.13, + "CS6363": 4.64, + "CE3345": 4.28, + "CS3345": 4.24, + "CS4384": 4.08, + "CS1335": 4.17 + } + } + ], + "lloyd lumata": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2055639", + "quality_rating": 3.9, + "difficulty_rating": 2.4, + "would_take_again": 84, + "original_rmp_format": "Lloyd Lumata", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 70, + "tags": ["Hilarious", "Lots of homework", "Caring", "Beware of pop quizzes", "Test heavy"], + "rmp_id": "2055639", + "instructor_id": "lxl143230", + "overall_grade_rating": 4.14, + "total_grade_count": 1673, + "course_ratings": { + "PHYS2326": 4.15, + "PHYS2325": 4.13 + } + } + ], + "paul macalevey": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/710748", + "quality_rating": 2.8, + "difficulty_rating": 3.7, + "would_take_again": 54, + "original_rmp_format": "Paul MacAlevey", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 46, + "tags": [ + "Lots of homework", + "Tough grader", + "Caring", + "Clear grading criteria", + "Get ready to read" + ], + "rmp_id": "710748", + "instructor_id": "paulmac", + "overall_grade_rating": 4.49, + "total_grade_count": 3140, + "course_ratings": { + "PHYS2126": 4.5, + "PHYS3411": 4.05, + "PHYS5301": 4.63, + "PHYS5302": 4.44 + } + } + ], + "eric schlereth": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/1528707", + "quality_rating": 4.5, + "difficulty_rating": 2.2, + "would_take_again": 90, + "original_rmp_format": "Eric Schlereth", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 34, + "tags": [ + "Amazing lectures ", + "Graded by few things", + "Get ready to read", + "Respected", + "Clear grading criteria" + ], + "rmp_id": "1528707", + "instructor_id": "exs082000", + "overall_grade_rating": 4.22, + "total_grade_count": 1191, + "course_ratings": { + "HIST1301": 4.21, + "HIST6301": 5.0, + "HIST4377": 3.86, + "HIST4390": 4.79 + } + } + ], + "james wilder": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2324359", + "quality_rating": 4.8, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "James Wilder", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 15, + "tags": [ + "Caring", + "EXTRA CREDIT", + "Gives good feedback", + "Group projects", + "Amazing lectures " + ], + "rmp_id": "2324359", + "instructor_id": "jew042000", + "overall_grade_rating": 4.67, + "total_grade_count": 1084, + "course_ratings": { + "MUSI3316": 3.38, + "MUSI1306": 4.28, + "MUSI2315": 4.67, + "ARTS1301": 4.75 + } + } + ], + "ram rao": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/1899108", + "quality_rating": 2.4, + "difficulty_rating": 4, + "would_take_again": 43, + "original_rmp_format": "Ram Rao", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 9, + "tags": [ + "Participation matters", + "Get ready to read", + "Group projects", + "Amazing lectures ", + "Lots of homework" + ], + "rmp_id": "1899108", + "instructor_id": "rrao", + "overall_grade_rating": 4.3, + "total_grade_count": 175, + "course_ratings": { + "MKT6350": 4.27, + "MKT6336": 4.38 + } + } + ], + "nikita dmonte": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/3027695", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Nikita DMonte", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 6, + "tags": [ + "Clear grading criteria", + "Hilarious", + "Caring", + "Accessible outside class", + "Amazing lectures " + ], + "rmp_id": "3027695", + "instructor_id": "nxd162730", + "overall_grade_rating": 4.37, + "total_grade_count": 63, + "course_ratings": { + "LIT2331": 4.15, + "RHET1302": 4.53 + } + } + ], + "brian ricks": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2822326", + "quality_rating": 4.7, + "difficulty_rating": 2.4, + "would_take_again": 90, + "original_rmp_format": "Brian Ricks", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 72, + "tags": [ + "Caring", + "Amazing lectures ", + "Accessible outside class", + "Hilarious", + "Gives good feedback" + ], + "rmp_id": "2822326", + "instructor_id": "bwr031000", + "overall_grade_rating": 4.1, + "total_grade_count": 1126, + "course_ratings": { + "CS1325": 3.59, + "CS1336": 4.03, + "CS2336": 4.0, + "CS6301": 5.0, + "CS1436": 3.91, + "CS6306": 4.86, + "CS6308": 4.66, + "CE2336": 3.72, + "CS2340": 3.76 + } + } + ], + "victoria mccrady": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1814735", + "quality_rating": 3.7, + "difficulty_rating": 2.5, + "would_take_again": 57, + "original_rmp_format": "Victoria McCrady", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 93, + "tags": ["Caring", "Gives good feedback", "Group projects", "Lots of homework", "Hilarious"], + "rmp_id": "1814735", + "instructor_id": "vdm130030", + "overall_grade_rating": 4.11, + "total_grade_count": 1659, + "course_ratings": { + "BCOM4350": 4.41, + "BA1100": 3.34, + "BA3200": 4.35, + "ACCT3200": 4.39, + "BCOM1300": 4.17, + "BCOM4300": 3.85, + "BCOM3300": 4.2, + "BCOM3310": 4.34, + "MKT3100": 4.41, + "BCOM3200": 4.55 + } + } + ], + "adrienne mclean": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/188183", + "quality_rating": 3.4, + "difficulty_rating": 3.5, + "would_take_again": 45, + "original_rmp_format": "Adrienne McLean", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 54, + "tags": [ + "Get ready to read", + "Tough grader", + "Gives good feedback", + "Lots of homework", + "Amazing lectures " + ], + "rmp_id": "188183", + "instructor_id": "amclean", + "overall_grade_rating": 4.2, + "total_grade_count": 357, + "course_ratings": { + "FILM2332": 4.33, + "VPAS6310": 4.42, + "FILM3325": 4.02, + "FILM3321": 4.07, + "HUAS7360": 4.94, + "VPAS7360": 5.0, + "VPAS6373": 3.54 + } + } + ], + "theresa towner": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/488019", + "quality_rating": 4.9, + "difficulty_rating": 2.5, + "would_take_again": 97, + "original_rmp_format": "Theresa Towner", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 51, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Hilarious", + "Respected", + "Participation matters" + ], + "rmp_id": "488019", + "instructor_id": "tmtowner", + "overall_grade_rating": 4.54, + "total_grade_count": 493, + "course_ratings": { + "HUMA6300": 4.61, + "LIT3300": 4.25, + "HONS3199": 4.77, + "LIT3317": 4.46, + "LIT4329": 4.67, + "HONS3102": 4.66, + "HUMA1301": 4.67, + "LIT2320": 4.58, + "LIT6312": 4.93, + "LIT6308": 4.02 + } + } + ], + "jigarkumar patel": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2358061", + "quality_rating": 4.2, + "difficulty_rating": 3, + "would_take_again": 77, + "original_rmp_format": "Jigarkumar Patel", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 26, + "tags": [ + "Amazing lectures ", + "Respected", + "Accessible outside class", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "2358061", + "instructor_id": "jsp061000", + "overall_grade_rating": 3.34, + "total_grade_count": 1258, + "course_ratings": { + "MATH1325": 3.54, + "MATH2418": 3.09, + "MATH1326": 2.72, + "MATH2420": 3.27, + "MATH2419": 3.31, + "MATH2413": 2.2 + } + } + ], + "david widdifield": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2446194", + "quality_rating": 4.6, + "difficulty_rating": 1.8, + "would_take_again": 91, + "original_rmp_format": "David Widdifield", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 22, + "tags": [ + "Caring", + "Clear grading criteria", + "Gives good feedback", + "Respected", + "EXTRA CREDIT" + ], + "rmp_id": "2446194", + "instructor_id": "dsw180001", + "overall_grade_rating": 4.64, + "total_grade_count": 1171, + "course_ratings": { + "OPRE3310": 4.73, + "OPRE6378": 4.62, + "OPRE4362": 4.34, + "OPRE4330": 4.72, + "OPRE4340": 4.46, + "OPRE6341": 4.71 + } + } + ], + "wieslaw krawcewicz": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1446156", + "quality_rating": 2.8, + "difficulty_rating": 3.9, + "would_take_again": 50, + "original_rmp_format": "Wieslaw Krawcewicz", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 19, + "tags": [ + "Hilarious", + "Lecture heavy", + "Tough grader", + "Skip class? You won't pass.", + "Caring" + ], + "rmp_id": "1446156", + "instructor_id": "wzk091000", + "overall_grade_rating": 4.09, + "total_grade_count": 413, + "course_ratings": { + "MATH3351": 4.1, + "MATH6325": 4.71, + "MATH6301": 4.33, + "MATH3379": 3.2, + "MATH6302": 4.2 + } + } + ], + "emily fox": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2406543", + "quality_rating": 5, + "difficulty_rating": 3.6, + "would_take_again": 100, + "original_rmp_format": "Emily Fox", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 15, + "tags": [ + "Amazing lectures ", + "Accessible outside class", + "Caring", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "2406543", + "instructor_id": "kjf170230", + "overall_grade_rating": 3.88, + "total_grade_count": 266, + "course_ratings": { + "CS3345": 4.78, + "CS4349": 3.55, + "CS6319": 4.35 + } + } + ], + "junfan huang": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2940509", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Junfan Huang", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 9, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Caring", + "Inspirational", + "Get ready to read" + ], + "rmp_id": "2940509", + "instructor_id": "jxh230025", + "overall_grade_rating": 3.84, + "total_grade_count": 320, + "course_ratings": { + "ACCT2301": 3.84 + } + } + ], + "ehsan saremi": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/3045136", + "quality_rating": 5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Ehsan Saremi", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 2, + "tags": ["Group projects", "Caring", "Test heavy"], + "rmp_id": "3045136", + "instructor_id": "exs151030", + "overall_grade_rating": 4.72, + "total_grade_count": 136, + "course_ratings": { + "MKT3300": 4.76, + "MKT4337": 4.54 + } + } + ], + "michelle wilson": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1782448", + "quality_rating": 2.7, + "difficulty_rating": 4, + "would_take_again": 42, + "original_rmp_format": "Michelle Wilson", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 214, + "tags": [ + "Get ready to read", + "Tough grader", + "Test heavy", + "Lots of homework", + "Clear grading criteria" + ], + "rmp_id": "1782448", + "instructor_id": "mxw084000", + "overall_grade_rating": 3.77, + "total_grade_count": 5437, + "course_ratings": { + "BIOL2112": 3.71, + "BIOL2312": 3.69, + "BIOL3456": 3.56, + "BIOL4345": 4.54 + } + } + ], + "regina ybarra": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2523937", + "quality_rating": 4.4, + "difficulty_rating": 2.7, + "would_take_again": 91, + "original_rmp_format": "Regina Ybarra", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 66, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Participation matters", + "Clear grading criteria", + "EXTRA CREDIT" + ], + "rmp_id": "2523937", + "instructor_id": "rky190000", + "overall_grade_rating": 4.11, + "total_grade_count": 3372, + "course_ratings": { + "PSY2301": 3.98, + "PSY3393": 4.23, + "PSY4343": 4.21, + "PSY3333": 3.61 + } + } + ], + "linda drew": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/1935091", + "quality_rating": 2.1, + "difficulty_rating": 3.6, + "would_take_again": 23, + "original_rmp_format": "linda drew", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 61, + "tags": [ + "Tough grader", + "Lecture heavy", + "Participation matters", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "1935091", + "instructor_id": "lmd102020", + "overall_grade_rating": 3.72, + "total_grade_count": 1035, + "course_ratings": { + "PSY3393": 3.78, + "PSY4386": 4.07, + "SPAU4386": 4.11, + "PSY4352": 3.95, + "CLDP2314": 2.98, + "PSY2314": 3.46, + "PSY3360": 3.6, + "CLDP3332": 4.26, + "PSY3332": 3.66 + } + } + ], + "bing lv": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2112849", + "quality_rating": 4.2, + "difficulty_rating": 3.1, + "would_take_again": 77, + "original_rmp_format": "Bing Lv", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 61, + "tags": [ + "Caring", + "Participation matters", + "Beware of pop quizzes", + "EXTRA CREDIT", + "Clear grading criteria" + ], + "rmp_id": "2112849", + "instructor_id": "bxl152230", + "overall_grade_rating": 3.98, + "total_grade_count": 874, + "course_ratings": { + "PHYS2325": 3.98, + "PHYS4311": 3.94 + } + } + ], + "anyan qi": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/1945780", + "quality_rating": 4.8, + "difficulty_rating": 2.8, + "would_take_again": 90, + "original_rmp_format": "Anyan Qi", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 52, + "tags": ["Caring", "Amazing lectures ", "Hilarious", "Respected", "Group projects"], + "rmp_id": "1945780", + "instructor_id": "axq140430", + "overall_grade_rating": 4.11, + "total_grade_count": 835, + "course_ratings": { + "OPRE3310": 4.17, + "OPRE3360": 4.0 + } + } + ], + "debra pfister": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/1428361", + "quality_rating": 4, + "difficulty_rating": 2.4, + "would_take_again": 44, + "original_rmp_format": "Debra Pfister", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 34, + "tags": [ + "Get ready to read", + "Caring", + "Accessible outside class", + "Group projects", + "Would take again" + ], + "rmp_id": "1428361", + "instructor_id": "dhpf", + "overall_grade_rating": 4.09, + "total_grade_count": 758, + "course_ratings": { + "HIST4344": 4.13, + "HIST4330": 4.03, + "HIST2370": 3.91, + "HIST4388": 4.35, + "ARHM3342": 3.93, + "HIST3305": 4.02, + "HIST4331": 3.93, + "HIST3307": 4.38 + } + } + ], + "kirti sinha": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2590487", + "quality_rating": 3.7, + "difficulty_rating": 3.6, + "would_take_again": 71, + "original_rmp_format": "Kirti Sinha", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 21, + "tags": [ + "Lecture heavy", + "Test heavy", + "Tough grader", + "Clear grading criteria", + "Graded by few things" + ], + "rmp_id": "2590487", + "instructor_id": "kxs190050", + "overall_grade_rating": 3.62, + "total_grade_count": 485, + "course_ratings": { + "ACCT2302": 3.62 + } + } + ], + "steven xiao": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2220526", + "quality_rating": 4.2, + "difficulty_rating": 3.3, + "would_take_again": 75, + "original_rmp_format": "Steven Xiao", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 20, + "tags": [ + "Test heavy", + "Clear grading criteria", + "Lecture heavy", + "Graded by few things", + "Respected" + ], + "rmp_id": "2220526", + "instructor_id": "sxx150930", + "overall_grade_rating": 4.19, + "total_grade_count": 383, + "course_ratings": { + "FIN6301": 4.36, + "FIN3320": 3.75, + "FIN6366": 4.52 + } + } + ], + "yonas tadesse": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1956453", + "quality_rating": 2.7, + "difficulty_rating": 2.4, + "would_take_again": 44, + "original_rmp_format": "Yonas Tadesse", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 12, + "tags": [ + "Group projects", + "Skip class? You won't pass.", + "Participation matters", + "EXTRA CREDIT", + "Clear grading criteria" + ], + "rmp_id": "1956453", + "instructor_id": "ytt110030", + "overall_grade_rating": 4.52, + "total_grade_count": 423, + "course_ratings": { + "MECH6303": 4.5, + "MECH3305": 4.58, + "MECH6334": 4.52 + } + } + ], + "vatsal maru": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2835761", + "quality_rating": 3.6, + "difficulty_rating": 2.6, + "would_take_again": 60, + "original_rmp_format": "Vatsal Maru", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 10, + "tags": [ + "Lecture heavy", + "Tough grader", + "Participation matters", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2835761", + "instructor_id": "vkm220000", + "overall_grade_rating": 4.14, + "total_grade_count": 1547, + "course_ratings": { + "BUAN6344": 4.1, + "ITSS4352": 3.94, + "ITSS4381": 4.14, + "MIS6344": 4.19, + "MIS6382": 4.68, + "ITSS3311": 3.64 + } + } + ], + "bradley skiles": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2500409", + "quality_rating": 4.9, + "difficulty_rating": 1.9, + "would_take_again": 89, + "original_rmp_format": "Bradley Skiles", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 9, + "tags": [ + "Gives good feedback", + "Clear grading criteria", + "Caring", + "Participation matters", + "EXTRA CREDIT" + ], + "rmp_id": "2500409", + "instructor_id": "bws150030", + "overall_grade_rating": 4.16, + "total_grade_count": 305, + "course_ratings": { + "COMM1311": 4.27, + "COMM1315": 4.12, + "ECS2390": 4.47 + } + } + ], + "masudal khan": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2568364", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 75, + "original_rmp_format": "Masudal Khan", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 8, + "tags": [ + "Clear grading criteria", + "Lecture heavy", + "Respected", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "2568364", + "instructor_id": "mhk190001", + "overall_grade_rating": 4.16, + "total_grade_count": 594, + "course_ratings": { + "ITSS3311": 4.1, + "BUAN6335": 4.31, + "ITSS4300": 4.07 + } + } + ], + "luoying chen": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3003143", + "quality_rating": 4.7, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Luoying Chen", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 3, + "tags": [ + "Clear grading criteria", + "Group projects", + "Gives good feedback", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "3003143", + "instructor_id": "lxc190027", + "overall_grade_rating": 4.24, + "total_grade_count": 124, + "course_ratings": { + "ITSS4381": 4.24 + } + } + ], + "habte woldu": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/291713", + "quality_rating": 2.8, + "difficulty_rating": 3.2, + "would_take_again": 41, + "original_rmp_format": "Habte Woldu", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 117, + "tags": [ + "Get ready to read", + "Group projects", + "Participation matters", + "EXTRA CREDIT", + "Lecture heavy" + ], + "rmp_id": "291713", + "instructor_id": "wolduh", + "overall_grade_rating": 4.07, + "total_grade_count": 2391, + "course_ratings": { + "IMS6204": 4.43, + "IMS3310": 3.81, + "IMS6365": 4.45, + "IMS6304": 4.27 + } + } + ], + "ben wright": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/2087537", + "quality_rating": 4.2, + "difficulty_rating": 3.7, + "would_take_again": 75, + "original_rmp_format": "Ben Wright", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 101, + "tags": [ + "Gives good feedback", + "Get ready to read", + "Participation matters", + "Amazing lectures ", + "Lecture heavy" + ], + "rmp_id": "2087537", + "instructor_id": "bxw151330", + "overall_grade_rating": 3.96, + "total_grade_count": 918, + "course_ratings": { + "HIST2330": 4.65, + "HIST1301": 3.89, + "HONS3199": 4.71, + "HIST4390": 4.24, + "HIST6332": 4.43, + "HIST3364": 3.75, + "HIST6320": 4.67 + } + } + ], + "anna taylor": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2420588", + "quality_rating": 3.4, + "difficulty_rating": 3.8, + "would_take_again": 59, + "original_rmp_format": "Anna Taylor", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 64, + "tags": [ + "Lecture heavy", + "Test heavy", + "EXTRA CREDIT", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "2420588", + "instructor_id": "amt180004", + "overall_grade_rating": 3.46, + "total_grade_count": 1394, + "course_ratings": { + "NSC3361": 3.1, + "NSC4353": 4.09, + "NSC4366": 3.57, + "NSC4367": 2.79 + } + } + ], + "mylinh nguyen": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2187576", + "quality_rating": 3.5, + "difficulty_rating": 3.7, + "would_take_again": 68, + "original_rmp_format": "Mylinh Nguyen", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 53, + "tags": [ + "Lots of homework", + "Respected", + "Amazing lectures ", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "2187576", + "instructor_id": "mln018200", + "overall_grade_rating": 3.2, + "total_grade_count": 1552, + "course_ratings": { + "MATH2413": 3.22, + "MATH2414": 3.11, + "MATH1314": 3.24, + "MATH1326": 3.48, + "MATH2312": 3.29 + } + } + ], + "patricia totusek": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2190124", + "quality_rating": 4.8, + "difficulty_rating": 1.8, + "would_take_again": 94, + "original_rmp_format": "Patricia Totusek", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 47, + "tags": [ + "Gives good feedback", + "Caring", + "Clear grading criteria", + "Group projects", + "EXTRA CREDIT" + ], + "rmp_id": "2190124", + "instructor_id": "pft140030", + "overall_grade_rating": 4.45, + "total_grade_count": 1022, + "course_ratings": { + "COMM1311": 4.44, + "COMM3353": 4.28, + "COMM1315": 4.77, + "COMM3340": 4.74 + } + } + ], + "iris alvarado": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2476891", + "quality_rating": 4, + "difficulty_rating": 2.8, + "would_take_again": 75, + "original_rmp_format": "Iris Alvarado", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 32, + "tags": [ + "Lots of homework", + "Amazing lectures ", + "Caring", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "2476891", + "instructor_id": "ila180000", + "overall_grade_rating": 2.93, + "total_grade_count": 1229, + "course_ratings": { + "MATH1314": 3.07, + "MATH2414": 2.28, + "MATH1316": 2.81, + "MATH2413": 2.58 + } + } + ], + "wooram park": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2216102", + "quality_rating": 4.3, + "difficulty_rating": 3.2, + "would_take_again": 89, + "original_rmp_format": "Wooram Park", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 28, + "tags": ["Clear grading criteria", "Amazing lectures ", "Respected", "Test heavy", "Caring"], + "rmp_id": "2216102", + "instructor_id": "wxp103020", + "overall_grade_rating": 4.01, + "total_grade_count": 2256, + "course_ratings": { + "MECH3150": 4.26, + "MECH4340": 3.81, + "MECH6309": 4.34, + "MECH3350": 3.79, + "EE4342": 3.75, + "MECH4342": 3.67, + "MECH3340": 3.59 + } + } + ], + "aria nosratinia": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1168035", + "quality_rating": 2.4, + "difficulty_rating": 4.1, + "would_take_again": 33, + "original_rmp_format": "Aria Nosratinia", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 21, + "tags": [ + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Clear grading criteria", + "Beware of pop quizzes" + ], + "rmp_id": "1168035", + "instructor_id": "aria", + "overall_grade_rating": 3.19, + "total_grade_count": 199, + "course_ratings": { + "EESC6344": 4.33, + "ENGR3341": 3.15 + } + } + ], + "caryn berardi": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2299104", + "quality_rating": 5, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Caryn Berardi", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 21, + "tags": [ + "Gives good feedback", + "Caring", + "Accessible outside class", + "Clear grading criteria", + "Respected" + ], + "rmp_id": "2299104", + "instructor_id": "cds110030", + "overall_grade_rating": 4.74, + "total_grade_count": 338, + "course_ratings": { + "ACCT3200": 4.94, + "ITSS3200": 4.71, + "BCOM1300": 4.4, + "BCOM3100": 4.92, + "FIN3100": 4.87, + "ITSS3100": 4.97 + } + } + ], + "syam menon": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1714878", + "quality_rating": 3.5, + "difficulty_rating": 4.1, + "would_take_again": 70, + "original_rmp_format": "Syam Menon", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 20, + "tags": [ + "Group projects", + "Tough grader", + "Amazing lectures ", + "Lots of homework", + "Accessible outside class" + ], + "rmp_id": "1714878", + "instructor_id": "sxm021300", + "overall_grade_rating": 4.26, + "total_grade_count": 528, + "course_ratings": { + "MIS6316": 4.32, + "BUAN6324": 4.41, + "MIS6324": 4.35, + "MIS6334": 4.25, + "BUAN6383": 4.17, + "MIS6386": 3.87, + "OPRE6399": 4.86 + } + } + ], + "faisal jahangiri": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2892090", + "quality_rating": 4.9, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Faisal Jahangiri", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 17, + "tags": ["Amazing lectures ", "Group projects", "EXTRA CREDIT", "Inspirational", "Caring"], + "rmp_id": "2892090", + "instructor_id": "frj190000", + "overall_grade_rating": 4.84, + "total_grade_count": 774, + "course_ratings": { + "ACN7372": 4.74, + "NSC4382": 4.85, + "NSC4351": 4.85, + "NSC4320": 4.88, + "ACN6374": 4.73, + "NSC4383": 4.83 + } + } + ], + "amanda marder": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2737387", + "quality_rating": 1.5, + "difficulty_rating": 4.6, + "would_take_again": 6, + "original_rmp_format": "Amanda Marder", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 16, + "tags": [ + "Tough grader", + "Lots of homework", + "Participation matters", + "Skip class? You won't pass.", + "Get ready to read" + ], + "rmp_id": "2737387", + "instructor_id": "akm150430", + "overall_grade_rating": 3.0, + "total_grade_count": 251, + "course_ratings": { + "ATCM2301": 3.0, + "ATCM2355": 2.68, + "ATCM2302": 3.56 + } + } + ], + "lisa timmons": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/3056173", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Lisa Timmons", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 3, + "tags": [ + "Participation matters", + "EXTRA CREDIT", + "Amazing lectures ", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "3056173", + "instructor_id": "lnk081000", + "overall_grade_rating": 4.53, + "total_grade_count": 306, + "course_ratings": { + "CLDP3310": 4.66, + "CLDP4344": 4.28, + "HDCD6312": 5.0, + "HDCD6315": 4.88, + "PSY3310": 4.53, + "PSY4344": 4.39 + } + } + ], + "anasuya karmakar": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/3071524", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Anasuya Karmakar", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 1, + "tags": ["Participation matters", "EXTRA CREDIT", "Lecture heavy"], + "rmp_id": "3071524", + "instructor_id": "axk220350", + "overall_grade_rating": 4.26, + "total_grade_count": 48, + "course_ratings": { + "CRIM1301": 4.26 + } + } + ], + "ignacio pujana": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/432035", + "quality_rating": 3.4, + "difficulty_rating": 2.3, + "would_take_again": 72, + "original_rmp_format": "Ignacio Pujana", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 155, + "tags": [ + "Clear grading criteria", + "Get ready to read", + "Test heavy", + "Lots of homework", + "Graded by few things" + ], + "rmp_id": "432035", + "instructor_id": "pujana", + "overall_grade_rating": 4.32, + "total_grade_count": 10047, + "course_ratings": { + "GEOS1303": 4.21, + "GEOS1304": 3.98, + "ISNS2367": 4.31, + "GEOS1104": 3.98, + "ISNS2359": 4.51, + "GEOS3434": 3.91 + } + } + ], + "anatoly eydelzon": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1200683", + "quality_rating": 2.4, + "difficulty_rating": 3.6, + "would_take_again": 33, + "original_rmp_format": "Anatoly Eydelzon", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 129, + "tags": ["Tough grader", "Test heavy", "Lots of homework", "Hilarious", "Lecture heavy"], + "rmp_id": "1200683", + "instructor_id": "axe031000", + "overall_grade_rating": 2.99, + "total_grade_count": 1332, + "course_ratings": { + "MATH2414": 2.27, + "MATH5390": 4.74, + "MATH2413": 3.12, + "MATH2419": 2.83, + "MATH5303": 4.58, + "MATH2417": 1.74, + "MATH2415": 2.53, + "MATH2451": 3.54, + "MATH3351": 3.28 + } + } + ], + "viswanath ramakrishna": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/133823", + "quality_rating": 4, + "difficulty_rating": 3.2, + "would_take_again": 77, + "original_rmp_format": "Viswanath Ramakrishna", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 57, + "tags": [ + "Lecture heavy", + "EXTRA CREDIT", + "Lots of homework", + "Caring", + "Clear grading criteria" + ], + "rmp_id": "133823", + "instructor_id": "vish", + "overall_grade_rating": 4.0, + "total_grade_count": 743, + "course_ratings": { + "MATH6319": 4.22, + "MATH2417": 4.51, + "MATH4301": 3.83, + "MATH4355": 3.42, + "MATH6322": 4.51, + "HONS3199": 4.97, + "MATH2418": 4.16, + "MATH6312": 4.75, + "MATH2413": 5.0, + "MATH2420": 3.24, + "MATH3310": 3.87, + "MATH3351": 3.35 + } + } + ], + "rabah mezenner": [ + { + "department": "Engineering & Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1770048", + "quality_rating": 3.7, + "difficulty_rating": 1.8, + "would_take_again": 77, + "original_rmp_format": "Rabah Mezenner", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 49, + "tags": [ + "Group projects", + "EXTRA CREDIT", + "Participation matters", + "Clear grading criteria", + "Lots of homework" + ], + "rmp_id": "1770048", + "instructor_id": "rxm129730", + "overall_grade_rating": 4.03, + "total_grade_count": 1999, + "course_ratings": { + "ECS3361": 4.33, + "CE3161": 4.31, + "EE3161": 4.19, + "ENGR2300": 3.47 + } + } + ], + "ranran feng": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2055150", + "quality_rating": 2.1, + "difficulty_rating": 3.3, + "would_take_again": 32, + "original_rmp_format": "Ranran Feng", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 46, + "tags": [ + "Graded by few things", + "Skip class? You won't pass.", + "Lecture heavy", + "Tough grader", + "Beware of pop quizzes" + ], + "rmp_id": "2055150", + "instructor_id": "rxf090020", + "overall_grade_rating": 4.04, + "total_grade_count": 2228, + "course_ratings": { + "CS2336": 3.78, + "CS3360": 3.47, + "CS1324": 3.72, + "CE2336": 3.75, + "CS2305": 3.89, + "CS4392": 4.23, + "CS6323": 4.74, + "CS3354": 4.6, + "CE3345": 3.83, + "CS3345": 3.92, + "CS4332": 4.69, + "CS4391": 4.23, + "SE3345": 3.79, + "CS3377": 4.33, + "CS1325": 4.1 + } + } + ], + "nicholas ruozzi": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2058874", + "quality_rating": 3.6, + "difficulty_rating": 4.8, + "would_take_again": 52, + "original_rmp_format": "Nicholas Ruozzi", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 31, + "tags": [ + "Tough grader", + "Lots of homework", + "Amazing lectures ", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "2058874", + "instructor_id": "nrr150130", + "overall_grade_rating": 3.43, + "total_grade_count": 398, + "course_ratings": { + "CS6375": 4.03, + "CS4301": 2.37, + "CS4375": 2.9, + "CS6347": 4.17 + } + } + ], + "wanwan yue": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2386415", + "quality_rating": 4.5, + "difficulty_rating": 1.9, + "would_take_again": 85, + "original_rmp_format": "Wanwan Yue", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 13, + "tags": [ + "Clear grading criteria", + "Respected", + "Caring", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2386415", + "instructor_id": "wxy150730", + "overall_grade_rating": 3.43, + "total_grade_count": 873, + "course_ratings": { + "ECON2301": 3.49, + "ECON2302": 3.32, + "ECON3310": 3.52 + } + } + ], + "aaron smith": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/3038637", + "quality_rating": 1, + "difficulty_rating": 4.8, + "would_take_again": 0, + "original_rmp_format": "Aaron Smith", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 5, + "tags": ["Test heavy", "Lots of homework", "Tough grader", "Get ready to read"], + "rmp_id": "3038637", + "instructor_id": "axs230251", + "overall_grade_rating": 2.71, + "total_grade_count": 187, + "course_ratings": { + "PHYS2326": 2.71 + } + } + ], + "jason moore": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/3054814", + "quality_rating": 4.8, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Jason Moore", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 4, + "tags": [ + "Group projects", + "Participation matters", + "Clear grading criteria", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "3054814", + "instructor_id": "jxm230056", + "overall_grade_rating": 3.91, + "total_grade_count": 128, + "course_ratings": { + "BCOM3300": 4.09, + "BCOM1300": 3.73, + "BCOM4300": 3.76 + } + } + ], + "raja khoury": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2738447", + "quality_rating": 2.7, + "difficulty_rating": 3.3, + "would_take_again": 67, + "original_rmp_format": "Raja Khoury", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 3, + "tags": ["Participation matters", "Gives good feedback", "Caring", "Lecture heavy"], + "rmp_id": "2738447", + "instructor_id": "rnk180000", + "overall_grade_rating": 2.97, + "total_grade_count": 279, + "course_ratings": { + "MATH2413": 2.89, + "MATH1326": 2.35, + "MATH2415": 2.48, + "MATH1325": 3.46, + "MATH2419": 2.84 + } + } + ], + "sangyun kim": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3053123", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Sangyun Kim", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 1, + "tags": [], + "rmp_id": "3053123", + "instructor_id": "sxk240164", + "overall_grade_rating": 3.37, + "total_grade_count": 78, + "course_ratings": { + "ENTP3301": 3.37 + } + } + ], + "deborah scally": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2566230", + "quality_rating": 2, + "difficulty_rating": 2.7, + "would_take_again": 33, + "original_rmp_format": "Deborah Scally", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 36, + "tags": [ + "Group projects", + "Tough grader", + "So many papers", + "Participation matters", + "Graded by few things" + ], + "rmp_id": "2566230", + "instructor_id": "das", + "overall_grade_rating": 4.38, + "total_grade_count": 1256, + "course_ratings": { + "ECS3390": 4.35, + "ECS2390": 4.56 + } + } + ], + "lori gerard": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2091222", + "quality_rating": 2.8, + "difficulty_rating": 3.1, + "would_take_again": 50, + "original_rmp_format": "Lori Gerard", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 25, + "tags": [ + "Tough grader", + "EXTRA CREDIT", + "Lots of homework", + "Lecture heavy", + "Participation matters" + ], + "rmp_id": "2091222", + "instructor_id": "lag091020", + "overall_grade_rating": 3.87, + "total_grade_count": 446, + "course_ratings": { + "MUSI2113": 4.91, + "MUSI2322": 3.37, + "MUSI1306": 1.89 + } + } + ], + "kelsey wei": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1523791", + "quality_rating": 1.5, + "difficulty_rating": 4.2, + "would_take_again": 8, + "original_rmp_format": "Kelsey Wei", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 23, + "tags": [ + "Test heavy", + "Tough grader", + "Lecture heavy", + "Lots of homework", + "Skip class? You won't pass." + ], + "rmp_id": "1523791", + "instructor_id": "kdw061000", + "overall_grade_rating": 2.99, + "total_grade_count": 284, + "course_ratings": { + "FIN4300": 2.92, + "FIN7345": 4.83 + } + } + ], + "alecia williams": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1979908", + "quality_rating": 2.7, + "difficulty_rating": 3.2, + "would_take_again": 31, + "original_rmp_format": "Alecia Williams", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 17, + "tags": [ + "Lots of homework", + "Tough grader", + "Group projects", + "Gives good feedback", + "Caring" + ], + "rmp_id": "1979908", + "instructor_id": "axw124630", + "overall_grade_rating": 3.57, + "total_grade_count": 294, + "course_ratings": { + "COMM1311": 3.57 + } + } + ], + "mohsin maqbool": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2900885", + "quality_rating": 1, + "difficulty_rating": 4.3, + "would_take_again": 0, + "original_rmp_format": "Mohsin Maqbool", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 6, + "tags": [ + "Test heavy", + "Tough grader", + "Graded by few things", + "Lecture heavy", + "Get ready to read" + ], + "rmp_id": "2900885", + "instructor_id": "mxm210090", + "overall_grade_rating": 3.4, + "total_grade_count": 107, + "course_ratings": { + "NSC4320": 3.12, + "NSC4350": 4.38 + } + } + ], + "yuxin mei": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2978598", + "quality_rating": 4.5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Yuxin Mei", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 2, + "tags": [ + "EXTRA CREDIT", + "Get ready to read", + "Participation matters", + "Inspirational", + "Caring" + ], + "rmp_id": "2978598", + "instructor_id": "yxm230017", + "overall_grade_rating": 4.1, + "total_grade_count": 140, + "course_ratings": { + "MUSI2321": 4.1 + } + } + ], + "crystal maung": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2369676", + "quality_rating": 2.7, + "difficulty_rating": 2.8, + "would_take_again": 40, + "original_rmp_format": "Crystal Maung", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 15, + "tags": [ + "Get ready to read", + "Lecture heavy", + "Skip class? You won't pass.", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2369676", + "instructor_id": "ktm016100", + "overall_grade_rating": 4.18, + "total_grade_count": 91, + "course_ratings": { + "CS6375": 4.62, + "CS4391": 3.9 + } + } + ], + "alva tang": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2891911", + "quality_rating": 2.2, + "difficulty_rating": 3.4, + "would_take_again": 22, + "original_rmp_format": "Alva Tang ", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 9, + "tags": [ + "Lecture heavy", + "Test heavy", + "Tough grader", + "Get ready to read", + "Graded by few things" + ], + "rmp_id": "2891911", + "instructor_id": "axt220069", + "overall_grade_rating": 3.83, + "total_grade_count": 404, + "course_ratings": { + "CLDP3338": 3.68, + "PSY3338": 3.83, + "HCS6350": 4.92 + } + } + ], + "ovidiu daescu": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/364678", + "quality_rating": 2.7, + "difficulty_rating": 4.1, + "would_take_again": 39, + "original_rmp_format": "Ovidiu Daescu", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 33, + "tags": [ + "Graded by few things", + "Tough grader", + "Lots of homework", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "364678", + "instructor_id": "daescu", + "overall_grade_rating": 3.63, + "total_grade_count": 418, + "course_ratings": { + "CS4349": 3.26, + "CS6363": 4.17, + "CE2305": 3.17, + "CS2305": 4.05 + } + } + ], + "zhiyu chen": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/3070882", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Zhiyu Chen", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 1, + "tags": ["Inspirational", "Caring", "Respected"], + "rmp_id": "3070882", + "instructor_id": "zxc230011", + "overall_grade_rating": 4.65, + "total_grade_count": 78, + "course_ratings": { + "CS4395": 4.65 + } + } + ], + "madison pedigo": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1344709", + "quality_rating": 3.8, + "difficulty_rating": 2.3, + "would_take_again": 77, + "original_rmp_format": "Madison Pedigo", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 29, + "tags": [ + "Participation matters", + "Group projects", + "Gives good feedback", + "Tough grader", + "Clear grading criteria" + ], + "rmp_id": "1344709", + "instructor_id": "mfp013000", + "overall_grade_rating": 4.0, + "total_grade_count": 1055, + "course_ratings": { + "ENTP6315": 4.45, + "FIN6315": 4.13, + "FIN3360": 3.89, + "ENTP3360": 3.67, + "ENTP3301": 4.03, + "ENTP6370": 4.47 + } + } + ], + "angela neal": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2808099", + "quality_rating": 2.1, + "difficulty_rating": 2.7, + "would_take_again": 31, + "original_rmp_format": "Angela Neal", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 13, + "tags": [ + "Beware of pop quizzes", + "Tough grader", + "Participation matters", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "2808099", + "instructor_id": "aan052000", + "overall_grade_rating": 3.75, + "total_grade_count": 661, + "course_ratings": { + "ITSS3300": 3.11, + "ITSS3390": 3.9, + "ITSS4352": 4.06 + } + } + ], + "paul ceverha": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/3004222", + "quality_rating": 2.8, + "difficulty_rating": 4, + "would_take_again": 50, + "original_rmp_format": "Paul Ceverha", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 6, + "tags": [ + "Beware of pop quizzes", + "Tough grader", + "Lecture heavy", + "Get ready to read", + "Lots of homework" + ], + "rmp_id": "3004222", + "instructor_id": "pwc230000", + "overall_grade_rating": 3.6, + "total_grade_count": 359, + "course_ratings": { + "ITSS3300": 3.51, + "ITSS4300": 3.79 + } + } + ], + "hossein pedram": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2907161", + "quality_rating": 3, + "difficulty_rating": 1.5, + "would_take_again": 67, + "original_rmp_format": "Hossein Pedram", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 6, + "tags": [ + "Lecture heavy", + "Lots of homework", + "Accessible outside class", + "Get ready to read", + "Clear grading criteria" + ], + "rmp_id": "2907161", + "instructor_id": "hxp220048", + "overall_grade_rating": 3.71, + "total_grade_count": 718, + "course_ratings": { + "CE6304": 4.63, + "CE3320": 4.27, + "CE4370": 3.18, + "CS6304": 4.04, + "EE3320": 4.11, + "EE4370": 3.2, + "EEDG6304": 4.51 + } + } + ], + "kannoo ravindran": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/3055104", + "quality_rating": 4, + "difficulty_rating": 2.5, + "would_take_again": 50, + "original_rmp_format": "Kannoo Ravindran", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 2, + "tags": [ + "Participation matters", + "Lots of homework", + "Test heavy", + "Accessible outside class" + ], + "rmp_id": "3055104", + "instructor_id": "dal839044", + "overall_grade_rating": 4.27, + "total_grade_count": 74, + "course_ratings": { + "FIN3370": 4.03, + "FIN6362": 4.51 + } + } + ], + "melanie hornsby": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2854277", + "quality_rating": 4.5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Melanie Hornsby", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 2, + "tags": [ + "Group projects", + "Clear grading criteria", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "2854277", + "instructor_id": "mlh054000", + "overall_grade_rating": 3.51, + "total_grade_count": 373, + "course_ratings": { + "BCOM4300": 3.51 + } + } + ], + "amit mehra": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2233636", + "quality_rating": 4, + "difficulty_rating": 3.9, + "would_take_again": 71, + "original_rmp_format": "Amit Mehra", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 24, + "tags": [ + "Lots of homework", + "Amazing lectures ", + "Group projects", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2233636", + "instructor_id": "axm078200", + "overall_grade_rating": 4.36, + "total_grade_count": 817, + "course_ratings": { + "BUAN6392": 4.38, + "MIS6344": 4.41, + "MIS6392": 4.25, + "BUAN6344": 4.35, + "ITSS4352": 4.23 + } + } + ], + "anita dale": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/3034065", + "quality_rating": 2.5, + "difficulty_rating": 4.1, + "would_take_again": 38, + "original_rmp_format": "Anita Dale ", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 8, + "tags": [ + "Tough grader", + "Lots of homework", + "Participation matters", + "Gives good feedback", + "So many papers" + ], + "rmp_id": "3034065", + "instructor_id": "akd240002", + "overall_grade_rating": 3.39, + "total_grade_count": 63, + "course_ratings": { + "MKT3330": 3.38, + "MKT4335": 3.43 + } + } + ], + "patrick larue": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2187381", + "quality_rating": 4, + "difficulty_rating": 3.1, + "would_take_again": 76, + "original_rmp_format": "Patrick Larue", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 68, + "tags": [ + "Amazing lectures ", + "Skip class? You won't pass.", + "Hilarious", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "2187381", + "instructor_id": "pxl111020", + "overall_grade_rating": 2.95, + "total_grade_count": 691, + "course_ratings": { + "GOVT2305": 2.82, + "PSCI3350": 3.82, + "PSCI4316": 3.29 + } + } + ], + "ricardo saad": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1216582", + "quality_rating": 3.3, + "difficulty_rating": 3.3, + "would_take_again": 60, + "original_rmp_format": "Ricardo Saad", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 66, + "tags": [ + "Tough grader", + "Lots of homework", + "Amazing lectures ", + "Test heavy", + "Clear grading criteria" + ], + "rmp_id": "1216582", + "instructor_id": "rsaad", + "overall_grade_rating": 3.27, + "total_grade_count": 777, + "course_ratings": { + "EERF6355": 4.28, + "ENGR3300": 3.03, + "EERF6311": 3.96 + } + } + ], + "christina thompson": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1763299", + "quality_rating": 4.8, + "difficulty_rating": 2.8, + "would_take_again": 95, + "original_rmp_format": "Christina Thompson", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 50, + "tags": [ + "Amazing lectures ", + "Caring", + "Respected", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "1763299", + "instructor_id": "cmt120030", + "overall_grade_rating": 3.84, + "total_grade_count": 1646, + "course_ratings": { + "HONS3199": 4.9, + "CHEM2325": 3.51, + "CHEM2127": 4.71, + "HONS3111": 4.81, + "CHEM2323": 3.62, + "CHEM2128": 5.0, + "CHEM2237": 5.0 + } + } + ], + "frederick gardner": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2921250", + "quality_rating": 2.7, + "difficulty_rating": 4.5, + "would_take_again": 40, + "original_rmp_format": "Frederick Gardner", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 15, + "tags": [ + "Tough grader", + "Lots of homework", + "Participation matters", + "Graded by few things", + "Amazing lectures " + ], + "rmp_id": "2921250", + "instructor_id": "fxg230003", + "overall_grade_rating": 3.4, + "total_grade_count": 208, + "course_ratings": { + "ANGM4309": 3.81, + "ATCM4319": 2.66, + "ANGM3304": 3.6, + "ANGM3321": 3.68, + "ANGM4379": 3.98, + "ANGM3313": 3.23, + "ATCM3304": 3.28 + } + } + ], + "kathleen barber": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/3056082", + "quality_rating": 1.3, + "difficulty_rating": 3.8, + "would_take_again": 0, + "original_rmp_format": "Kathleen Barber", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 4, + "tags": ["Lecture heavy", "Tough grader", "Participation matters", "Graded by few things"], + "rmp_id": "3056082", + "instructor_id": "dal311023", + "overall_grade_rating": 4.09, + "total_grade_count": 85, + "course_ratings": { + "BIOL3318": 4.09 + } + } + ], + "christina betanzos": [ + { + "department": "Law", + "url": "https://www.ratemyprofessors.com/professor/2170173", + "quality_rating": 3.8, + "difficulty_rating": 3.4, + "would_take_again": 71, + "original_rmp_format": "Christina Betanzos", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 150, + "tags": [ + "Test heavy", + "Skip class? You won't pass.", + "Graded by few things", + "Lecture heavy", + "Amazing lectures " + ], + "rmp_id": "2170173", + "instructor_id": "clb120030", + "overall_grade_rating": 3.29, + "total_grade_count": 2479, + "course_ratings": { + "BLAW2301": 3.28, + "ACCT6370": 4.76, + "ACCT6388": 4.84 + } + } + ], + "kathleen myers": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2212919", + "quality_rating": 3.8, + "difficulty_rating": 3.1, + "would_take_again": 72, + "original_rmp_format": "Kathleen Myers", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 25, + "tags": [ + "Skip class? You won't pass.", + "Gives good feedback", + "Clear grading criteria", + "Accessible outside class", + "Participation matters" + ], + "rmp_id": "2212919", + "instructor_id": "kxm156530", + "overall_grade_rating": 3.76, + "total_grade_count": 1135, + "course_ratings": { + "ENGR3341": 3.44, + "BMEN1100": 3.98, + "BMEN3341": 3.8, + "BMEN3130": 3.91, + "BMEN1208": 3.9 + } + } + ], + "paul nichols": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2424094", + "quality_rating": 4.4, + "difficulty_rating": 2.1, + "would_take_again": 86, + "original_rmp_format": "Paul Nichols", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 21, + "tags": [ + "Group projects", + "Amazing lectures ", + "Hilarious", + "Graded by few things", + "Inspirational" + ], + "rmp_id": "2424094", + "instructor_id": "pxn120030", + "overall_grade_rating": 4.37, + "total_grade_count": 942, + "course_ratings": { + "ENTP3301": 4.35, + "ENTP6380": 4.46, + "MKT6380": 4.45, + "ENTP6370": 4.44, + "ENTP6375": 4.28, + "ENTP6390": 4.78, + "MIS6375": 4.12 + } + } + ], + "ashim bose": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3047000", + "quality_rating": 4.6, + "difficulty_rating": 3.2, + "would_take_again": 91, + "original_rmp_format": "Ashim Bose ", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 11, + "tags": [ + "Participation matters", + "Group projects", + "Amazing lectures ", + "Gives good feedback", + "Clear grading criteria" + ], + "rmp_id": "3047000", + "instructor_id": "axb230208", + "overall_grade_rating": 4.3, + "total_grade_count": 155, + "course_ratings": { + "ITSS3311": 3.94, + "MIS6393": 4.55 + } + } + ], + "gregory ballew": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2640763", + "quality_rating": 3.7, + "difficulty_rating": 3.9, + "would_take_again": 67, + "original_rmp_format": "Gregory Ballew", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 9, + "tags": [ + "Participation matters", + "Group projects", + "Lots of homework", + "Respected", + "Accessible outside class" + ], + "rmp_id": "2640763", + "instructor_id": "geb011100", + "overall_grade_rating": 3.96, + "total_grade_count": 956, + "course_ratings": { + "ACCT4337": 3.03, + "ACCT6301": 3.93, + "ACCT6377": 4.68, + "FIN4380": 4.44, + "FIN4303": 3.71, + "FIN4337": 4.43 + } + } + ], + "pengfei zhang": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2847600", + "quality_rating": 2, + "difficulty_rating": 4, + "would_take_again": 33, + "original_rmp_format": "Pengfei Zhang", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 3, + "tags": [ + "Lecture heavy", + "Tough grader", + "Participation matters", + "Clear grading criteria", + "Lots of homework" + ], + "rmp_id": "2847600", + "instructor_id": "pxz220003", + "overall_grade_rating": 4.31, + "total_grade_count": 167, + "course_ratings": { + "EPPS6313": 4.13, + "PPPE6303": 4.4, + "PSCI6303": 4.35, + "ECON4396": 4.58, + "PSCI4396": 4.27 + } + } + ], + "yuko kitamura": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3050950", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Yuko Kitamura", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 2, + "tags": ["Participation matters", "Amazing lectures ", "Gives good feedback"], + "rmp_id": "3050950", + "instructor_id": "yxk210025", + "overall_grade_rating": 4.9, + "total_grade_count": 249, + "course_ratings": { + "BPS4395": 4.9 + } + } + ], + "kemelli estacio hiroms": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2254416", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 75, + "original_rmp_format": "Kemelli Estacio-Hiroms", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 91, + "tags": [ + "Hilarious", + "Caring", + "Accessible outside class", + "EXTRA CREDIT", + "Amazing lectures " + ], + "rmp_id": "2254416", + "instructor_id": "kxe160930", + "overall_grade_rating": 4.17, + "total_grade_count": 1398, + "course_ratings": { + "MATH2417": 3.37, + "STAT2332": 4.3, + "STAT4475": 4.97, + "MATH2414": 2.61 + } + } + ], + "salena brody": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/907371", + "quality_rating": 4.5, + "difficulty_rating": 2.7, + "would_take_again": 83, + "original_rmp_format": "Salena Brody", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 81, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Inspirational", + "Lots of homework", + "Caring" + ], + "rmp_id": "907371", + "instructor_id": "smb051000", + "overall_grade_rating": 4.07, + "total_grade_count": 2490, + "course_ratings": { + "PSY4324": 4.15, + "PSY2301": 4.06, + "HONS3199": 4.81, + "PSY3331": 4.06 + } + } + ], + "subha sarcar": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2371408", + "quality_rating": 3.1, + "difficulty_rating": 2.9, + "would_take_again": 51, + "original_rmp_format": "Subha Sarcar", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 69, + "tags": [ + "Caring", + "Participation matters", + "Lecture heavy", + "Amazing lectures ", + "Inspirational" + ], + "rmp_id": "2371408", + "instructor_id": "sns064000", + "overall_grade_rating": 4.14, + "total_grade_count": 1675, + "course_ratings": { + "BIOL3102": 4.18, + "BIOL3302": 4.21, + "BIOL3456": 3.93, + "BIOL3325": 4.74, + "BIOL3402": 3.96, + "BIOL3455": 2.63, + "BIOL2111": 4.38, + "BIOL2311": 4.38 + } + } + ], + "elizabeth pickett": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1523618", + "quality_rating": 4, + "difficulty_rating": 2.9, + "would_take_again": 77, + "original_rmp_format": "Elizabeth Pickett", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 47, + "tags": [ + "Caring", + "Clear grading criteria", + "Accessible outside class", + "Participation matters", + "Respected" + ], + "rmp_id": "1523618", + "instructor_id": "eaw016100", + "overall_grade_rating": 4.04, + "total_grade_count": 1166, + "course_ratings": { + "BIOL2281": 4.24, + "BIOL4360": 4.32, + "BIOL3380": 3.29 + } + } + ], + "kanad basu": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2585228", + "quality_rating": 4.3, + "difficulty_rating": 3.1, + "would_take_again": 77, + "original_rmp_format": "Kanad Basu", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 22, + "tags": [ + "Caring", + "Test heavy", + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2585228", + "instructor_id": "kxb190012", + "overall_grade_rating": 4.25, + "total_grade_count": 347, + "course_ratings": { + "CE3320": 3.95, + "EE3320": 3.97, + "CE6310": 4.71, + "EEDG6310": 5.0, + "CE6320": 4.42, + "CE6304": 4.41, + "CS6304": 4.29, + "EEDG6304": 4.7 + } + } + ], + "nicole de nisco": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2475838", + "quality_rating": 3.8, + "difficulty_rating": 3.2, + "would_take_again": 62, + "original_rmp_format": "Nicole De Nisco", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 16, + "tags": [ + "Amazing lectures ", + "Test heavy", + "Participation matters", + "Tough grader", + "Clear grading criteria" + ], + "rmp_id": "2475838", + "instructor_id": "njd160330", + "overall_grade_rating": 4.16, + "total_grade_count": 381, + "course_ratings": { + "BIOL3303": 4.14, + "BIOL5410": 4.35 + } + } + ], + "farokh bastani": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2146234", + "quality_rating": 2.3, + "difficulty_rating": 3.5, + "would_take_again": 25, + "original_rmp_format": "Farokh Bastani", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 13, + "tags": [ + "Tough grader", + "Graded by few things", + "Get ready to read", + "Lecture heavy", + "Skip class? You won't pass." + ], + "rmp_id": "2146234", + "instructor_id": "bastani", + "overall_grade_rating": 4.2, + "total_grade_count": 243, + "course_ratings": { + "CS4397": 4.13, + "CS6396": 4.38, + "CE6308": 4.05 + } + } + ], + "mai wang": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2893838", + "quality_rating": 4.3, + "difficulty_rating": 2.4, + "would_take_again": 86, + "original_rmp_format": "Mai Wang", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 7, + "tags": [ + "Get ready to read", + "Gives good feedback", + "Caring", + "Clear grading criteria", + "Participation matters" + ], + "rmp_id": "2893838", + "instructor_id": "mxw220014", + "overall_grade_rating": 4.69, + "total_grade_count": 181, + "course_ratings": { + "LIT3319": 4.83, + "LIT6304": 4.55, + "LIT2329": 4.59, + "LIT6309": 4.92, + "LIT4329": 4.74, + "LIT3337": 4.95 + } + } + ], + "kaveh shamsi": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2805651", + "quality_rating": 5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "kaveh shamsi", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 2, + "tags": [ + "Online Savvy", + "Clear grading criteria", + "Lecture heavy", + "Graded by few things", + "Accessible outside class" + ], + "rmp_id": "2805651", + "instructor_id": "kxs200049", + "overall_grade_rating": 4.08, + "total_grade_count": 126, + "course_ratings": { + "CE4304": 3.71, + "EE4304": 4.14, + "CE6330": 5.0 + } + } + ], + "yi zhao": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2731721", + "quality_rating": 2.5, + "difficulty_rating": 3.5, + "would_take_again": 36, + "original_rmp_format": "Yi Zhao", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 59, + "tags": [ + "Get ready to read", + "Lots of homework", + "Lecture heavy", + "Test heavy", + "EXTRA CREDIT" + ], + "rmp_id": "2731721", + "instructor_id": "zhao", + "overall_grade_rating": 3.67, + "total_grade_count": 1616, + "course_ratings": { + "CS2340": 3.01, + "CS3345": 3.45, + "CS5330": 4.4, + "SE2340": 2.67, + "CS4337": 3.37, + "ECS1100": 4.52, + "CE4337": 3.32 + } + } + ], + "azadeh stark": [ + { + "department": "Interdisciplinary Studies", + "url": "https://www.ratemyprofessors.com/professor/2083768", + "quality_rating": 3.5, + "difficulty_rating": 3.9, + "would_take_again": 61, + "original_rmp_format": "Azadeh Stark ", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 90, + "tags": [ + "Group projects", + "Tough grader", + "Participation matters", + "Inspirational", + "Lecture heavy" + ], + "rmp_id": "2083768", + "instructor_id": "ats160030", + "overall_grade_rating": 3.92, + "total_grade_count": 1038, + "course_ratings": { + "HLTH3305": 3.95, + "HLTH4305": 3.89 + } + } + ], + "anurag nagar": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2038564", + "quality_rating": 4.4, + "difficulty_rating": 3.1, + "would_take_again": 89, + "original_rmp_format": "Anurag Nagar", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 66, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Participation matters", + "Beware of pop quizzes", + "Group projects" + ], + "rmp_id": "2038564", + "instructor_id": "axn112530", + "overall_grade_rating": 4.66, + "total_grade_count": 3149, + "course_ratings": { + "CS6375": 4.64, + "CS6350": 4.76, + "CS4372": 4.57, + "CS4375": 4.42, + "CS4301": 4.73, + "CS6307": 4.85, + "CS6301": 4.84, + "CS1334": 4.49, + "CS1134": 4.88 + } + } + ], + "zohreh hashami": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2361526", + "quality_rating": 4.5, + "difficulty_rating": 2.6, + "would_take_again": 85, + "original_rmp_format": "Zohreh Hashami", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 62, + "tags": ["Caring", "Hilarious", "Accessible outside class", "Amazing lectures ", "Respected"], + "rmp_id": "2361526", + "instructor_id": "zxh088000", + "overall_grade_rating": 4.01, + "total_grade_count": 1721, + "course_ratings": { + "CHEM1111": 4.27, + "CHEM1311": 3.3, + "CHEM3472": 3.91, + "CHEM1112": 4.51, + "CHEM2123": 4.26, + "CHEM2125": 4.7 + } + } + ], + "prakash shrivastava": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2591707", + "quality_rating": 2.4, + "difficulty_rating": 3.5, + "would_take_again": 30, + "original_rmp_format": "Prakash Shrivastava", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 53, + "tags": [ + "Tough grader", + "Lecture heavy", + "Lots of homework", + "Clear grading criteria", + "Get ready to read" + ], + "rmp_id": "2591707", + "instructor_id": "pcs130130", + "overall_grade_rating": 3.76, + "total_grade_count": 1744, + "course_ratings": { + "ITSS3300": 3.62, + "ITSS4353": 3.7, + "BUAN6356": 4.09, + "MIS6374": 4.48 + } + } + ], + "horace robb": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2872556", + "quality_rating": 3.3, + "difficulty_rating": 2.7, + "would_take_again": 60, + "original_rmp_format": "Horace Robb", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 15, + "tags": [ + "Participation matters", + "Caring", + "Graded by few things", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "2872556", + "instructor_id": "hxr220017", + "overall_grade_rating": 4.36, + "total_grade_count": 504, + "course_ratings": { + "HMGT3301": 4.21, + "MAS6102": 4.95, + "HLTH3305": 4.31 + } + } + ], + "federico siano": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2847290", + "quality_rating": 4.5, + "difficulty_rating": 2.2, + "would_take_again": 92, + "original_rmp_format": "Federico Siano", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 12, + "tags": [ + "Amazing lectures ", + "Caring", + "Clear grading criteria", + "Test heavy", + "Accessible outside class" + ], + "rmp_id": "2847290", + "instructor_id": "fxs220013", + "overall_grade_rating": 3.58, + "total_grade_count": 492, + "course_ratings": { + "ACCT2301": 3.58 + } + } + ], + "crystal engineer": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2639943", + "quality_rating": 4.9, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Crystal Engineer", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 11, + "tags": [ + "Clear grading criteria", + "Amazing lectures ", + "Caring", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "2639943", + "instructor_id": "novitski", + "overall_grade_rating": 4.14, + "total_grade_count": 304, + "course_ratings": { + "NSC4354": 4.11, + "ACN6323": 4.88 + } + } + ], + "melodee sova": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2944607", + "quality_rating": 2.1, + "difficulty_rating": 3.1, + "would_take_again": 30, + "original_rmp_format": "Melodee Sova", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 10, + "tags": [ + "Group projects", + "Tough grader", + "Participation matters", + "Amazing lectures ", + "Lots of homework" + ], + "rmp_id": "2944607", + "instructor_id": "mls230004", + "overall_grade_rating": 3.99, + "total_grade_count": 399, + "course_ratings": { + "COMM1311": 4.07, + "COMM1315": 3.66, + "COMM1320": 4.08 + } + } + ], + "emily herman": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2867033", + "quality_rating": 3.2, + "difficulty_rating": 3, + "would_take_again": 67, + "original_rmp_format": "Emily Herman", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Group projects", + "Clear grading criteria", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "2867033", + "instructor_id": "exh220006", + "overall_grade_rating": 3.41, + "total_grade_count": 345, + "course_ratings": { + "BCOM1300": 3.74, + "BCOM3300": 3.15, + "BCOM4300": 3.17 + } + } + ], + "minh dao": [ + { + "department": "Public Policy", + "url": "https://www.ratemyprofessors.com/professor/3049291", + "quality_rating": 3.8, + "difficulty_rating": 2.8, + "would_take_again": 50, + "original_rmp_format": "Minh Dao", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 4, + "tags": [ + "Clear grading criteria", + "Gives good feedback", + "Get ready to read", + "Group projects", + "Caring" + ], + "rmp_id": "3049291", + "instructor_id": "mtd220000", + "overall_grade_rating": 4.1, + "total_grade_count": 52, + "course_ratings": { + "EPPS2301": 4.1 + } + } + ], + "mirna baloul": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3040543", + "quality_rating": 4.7, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Mirna Baloul", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 3, + "tags": [ + "Graded by few things", + "Amazing lectures ", + "Clear grading criteria", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "3040543", + "instructor_id": "mxb230052", + "overall_grade_rating": 4.3, + "total_grade_count": 126, + "course_ratings": { + "BLAW2301": 4.26, + "BLAW4305": 4.73 + } + } + ], + "joshua montgomery": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2834563", + "quality_rating": 4.8, + "difficulty_rating": 1.5, + "would_take_again": 94, + "original_rmp_format": "Joshua Montgomery", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 51, + "tags": [ + "Amazing lectures ", + "Caring", + "Participation matters", + "Clear grading criteria", + "EXTRA CREDIT" + ], + "rmp_id": "2834563", + "instructor_id": "jpm130430", + "overall_grade_rating": 4.49, + "total_grade_count": 2705, + "course_ratings": { + "GOVT2305": 4.37, + "GOVT2306": 4.61, + "PSCI3301": 4.52, + "PSCI4321": 4.57, + "HONS3199": 4.34 + } + } + ], + "sonia leach": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1738151", + "quality_rating": 2.9, + "difficulty_rating": 3.8, + "would_take_again": 40, + "original_rmp_format": "Sonia Leach", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 93, + "tags": [ + "Tough grader", + "Test heavy", + "Get ready to read", + "Lecture heavy", + "Clear grading criteria" + ], + "rmp_id": "1738151", + "instructor_id": "sel120030", + "overall_grade_rating": 4.0, + "total_grade_count": 2278, + "course_ratings": { + "OPRE6302": 3.96, + "OPRE6366": 4.14, + "OPRE6301": 3.95 + } + } + ], + "parneet pahwa": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2040429", + "quality_rating": 3.6, + "difficulty_rating": 2.7, + "would_take_again": 60, + "original_rmp_format": "Parneet Pahwa", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 62, + "tags": [ + "Group projects", + "Participation matters", + "Respected", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "2040429", + "instructor_id": "pxp030100", + "overall_grade_rating": 4.24, + "total_grade_count": 2171, + "course_ratings": { + "MKT3300": 4.22, + "MKT6301": 4.23, + "MKT4334": 4.34 + } + } + ], + "eva sadat": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2594473", + "quality_rating": 4.6, + "difficulty_rating": 2.8, + "would_take_again": 88, + "original_rmp_format": "Eva Sadat", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 16, + "tags": [ + "Caring", + "Accessible outside class", + "Clear grading criteria", + "Respected", + "Participation matters" + ], + "rmp_id": "2594473", + "instructor_id": "exs190014", + "overall_grade_rating": 4.63, + "total_grade_count": 548, + "course_ratings": { + "BIOL4380": 4.63 + } + } + ], + "david schmidtke": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2198388", + "quality_rating": 4.8, + "difficulty_rating": 3.3, + "would_take_again": 75, + "original_rmp_format": "David Schmidtke", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 4, + "tags": [ + "Lots of homework", + "Skip class? You won't pass.", + "Caring", + "EXTRA CREDIT", + "Gives good feedback" + ], + "rmp_id": "2198388", + "instructor_id": "dws140430", + "overall_grade_rating": 4.06, + "total_grade_count": 199, + "course_ratings": { + "BMEN6345": 4.56, + "BMEN3315": 3.53 + } + } + ], + "gary bolton": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2372351", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Gary Bolton", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Group projects", + "Inspirational", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2372351", + "instructor_id": "gxb122130", + "overall_grade_rating": 4.67, + "total_grade_count": 99, + "course_ratings": { + "MECO6350": 4.54, + "OPRE6355": 4.75 + } + } + ], + "scott rippel": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/892901", + "quality_rating": 2.9, + "difficulty_rating": 3.8, + "would_take_again": 33, + "original_rmp_format": "Scott Rippel", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 61, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Test heavy", + "Participation matters", + "Amazing lectures " + ], + "rmp_id": "892901", + "instructor_id": "rippel", + "overall_grade_rating": 3.6, + "total_grade_count": 1054, + "course_ratings": { + "BIOL3388": 3.87, + "BIOL3380": 3.36, + "HONS3199": 5.0, + "HONS3103": 4.82 + } + } + ], + "doug degroot": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2464399", + "quality_rating": 3.4, + "difficulty_rating": 3, + "would_take_again": 62, + "original_rmp_format": "Doug Degroot", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 61, + "tags": ["EXTRA CREDIT", "Caring", "Accessible outside class", "Tough grader", "Hilarious"], + "rmp_id": "2464399", + "instructor_id": "dxd180020", + "overall_grade_rating": 4.28, + "total_grade_count": 1698, + "course_ratings": { + "CS3162": 4.8, + "CS4341": 4.2, + "CS2337": 2.68, + "CS4348": 4.81, + "SE4348": 4.72, + "CS1337": 3.84, + "CS1336": 4.38 + } + } + ], + "lona sandon": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/2139329", + "quality_rating": 4.9, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Lona Sandon", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 27, + "tags": [ + "Clear grading criteria", + "Test heavy", + "Online Savvy", + "Lots of homework", + "Graded by few things" + ], + "rmp_id": "2139329", + "instructor_id": "lxs095000", + "overall_grade_rating": 4.84, + "total_grade_count": 4098, + "course_ratings": { + "HLTH3101": 4.84 + } + } + ], + "sarah maxwell": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/1564068", + "quality_rating": 4.9, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Sarah Maxwell", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 17, + "tags": [ + "Caring", + "Graded by few things", + "EXTRA CREDIT", + "Accessible outside class", + "Participation matters" + ], + "rmp_id": "1564068", + "instructor_id": "spm092000", + "overall_grade_rating": 4.41, + "total_grade_count": 1025, + "course_ratings": { + "PA6387": 4.49, + "PA4386": 4.35, + "SOC4386": 4.4, + "PA4396": 4.41, + "SOC4396": 4.55 + } + } + ], + "tariq ali": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1762885", + "quality_rating": 4.6, + "difficulty_rating": 3.1, + "would_take_again": 100, + "original_rmp_format": "Tariq Ali", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 17, + "tags": ["Amazing lectures ", "Caring", "Gives good feedback", "Respected", "EXTRA CREDIT"], + "rmp_id": "1762885", + "instructor_id": "tma051000", + "overall_grade_rating": 3.93, + "total_grade_count": 1125, + "course_ratings": { + "BMEN3320": 3.53, + "BMEN3120": 4.32, + "BMEN3350": 3.71, + "BMEN3150": 4.17, + "BMEN3220": 4.32, + "BMEN3302": 3.63 + } + } + ], + "brian kim": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2971324", + "quality_rating": 1.8, + "difficulty_rating": 4.3, + "would_take_again": 17, + "original_rmp_format": "Brian Kim", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 6, + "tags": ["Tough grader", "Test heavy", "Graded by few things", "Lecture heavy"], + "rmp_id": "2971324", + "instructor_id": "bnk230001", + "overall_grade_rating": 3.66, + "total_grade_count": 124, + "course_ratings": { + "BMEN3302": 3.66 + } + } + ], + "joselle kehoe": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/991907", + "quality_rating": 4.1, + "difficulty_rating": 2.6, + "would_take_again": 80, + "original_rmp_format": "Joselle Kehoe", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 73, + "tags": [ + "Caring", + "Accessible outside class", + "Lots of homework", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "991907", + "instructor_id": "jxk061000", + "overall_grade_rating": 3.04, + "total_grade_count": 1177, + "course_ratings": { + "MATH1326": 3.08, + "MATH1316": 2.87, + "MATH1325": 3.23, + "MATH2413": 2.8 + } + } + ], + "lauren santoro": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2344748", + "quality_rating": 3.3, + "difficulty_rating": 3.1, + "would_take_again": 56, + "original_rmp_format": "Lauren Santoro", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 63, + "tags": [ + "Get ready to read", + "Lecture heavy", + "Test heavy", + "Clear grading criteria", + "Participation matters" + ], + "rmp_id": "2344748", + "instructor_id": "lar170530", + "overall_grade_rating": 3.91, + "total_grade_count": 1509, + "course_ratings": { + "GOVT2306": 3.84, + "PSCI4328": 4.39, + "PSCI4320": 4.3, + "PSCI7380": 4.26 + } + } + ], + "alice otoole": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/487153", + "quality_rating": 2.3, + "difficulty_rating": 3.3, + "would_take_again": 20, + "original_rmp_format": "Alice Otoole", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 13, + "tags": [ + "Lecture heavy", + "Skip class? You won't pass.", + "Graded by few things", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "487153", + "instructor_id": "otoole", + "overall_grade_rating": 3.71, + "total_grade_count": 519, + "course_ratings": { + "ACN6330": 4.51, + "HCS6330": 4.82, + "CGS2301": 3.65, + "HCS7372": 3.96 + } + } + ], + "matthew polze": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2566943", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Matthew Polze", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 33, + "tags": ["Amazing lectures ", "Caring", "Hilarious", "Respected", "Inspirational"], + "rmp_id": "2566943", + "instructor_id": "mmp062000", + "overall_grade_rating": 3.94, + "total_grade_count": 2393, + "course_ratings": { + "BLAW2301": 3.9, + "BLAW4310": 4.91 + } + } + ], + "charles hatfield": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/1131109", + "quality_rating": 4.3, + "difficulty_rating": 2.8, + "would_take_again": 83, + "original_rmp_format": "Charles Hatfield", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 23, + "tags": [ + "Gives good feedback", + "Get ready to read", + "Participation matters", + "Amazing lectures ", + "Hilarious" + ], + "rmp_id": "1131109", + "instructor_id": "cxh074100", + "overall_grade_rating": 4.45, + "total_grade_count": 338, + "course_ratings": { + "LIT3339": 4.29, + "LIT3338": 4.64, + "LIT6300": 4.48, + "PHIL3338": 4.13, + "LIT4329": 4.23, + "LIT6382": 4.47, + "LIT2331": 4.44, + "HONS3199": 4.55, + "LIT3319": 4.78, + "LIT7300": 4.88, + "LIT6308": 4.13 + } + } + ], + "jean marie meier": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2275286", + "quality_rating": 3.4, + "difficulty_rating": 3.6, + "would_take_again": 58, + "original_rmp_format": "Jean-Marie Meier", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 19, + "tags": ["Lecture heavy", "Test heavy", "Graded by few things", "Tough grader", "Caring"], + "rmp_id": "2275286", + "instructor_id": "jmm172030", + "overall_grade_rating": 3.59, + "total_grade_count": 401, + "course_ratings": { + "FIN4310": 3.59 + } + } + ], + "johnson aranda": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2752178", + "quality_rating": 1.2, + "difficulty_rating": 2.8, + "would_take_again": 0, + "original_rmp_format": "Johnson Aranda", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 9, + "tags": [ + "Participation matters", + "Tough grader", + "Get ready to read", + "EXTRA CREDIT", + "Group projects" + ], + "rmp_id": "2752178", + "instructor_id": "jxa190020", + "overall_grade_rating": 3.45, + "total_grade_count": 236, + "course_ratings": { + "COMM1311": 4.61, + "COMM1315": 3.35 + } + } + ], + "wei pang chin": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2420900", + "quality_rating": 1.8, + "difficulty_rating": 3.9, + "would_take_again": 14, + "original_rmp_format": "Wei-Pang Chin", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 118, + "tags": [ + "Lots of homework", + "Get ready to read", + "Tough grader", + "Test heavy", + "Group projects" + ], + "rmp_id": "2420900", + "instructor_id": "wxc180013", + "overall_grade_rating": 3.57, + "total_grade_count": 2255, + "course_ratings": { + "CS1200": 3.67, + "CS2305": 3.37, + "CS3162": 3.86, + "CS5333": 4.1 + } + } + ], + "gaurav shekhar": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2232164", + "quality_rating": 4.4, + "difficulty_rating": 3.5, + "would_take_again": 89, + "original_rmp_format": "Gaurav Shekhar", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 56, + "tags": [ + "Inspirational", + "Group projects", + "Amazing lectures ", + "Participation matters", + "Accessible outside class" + ], + "rmp_id": "2232164", + "instructor_id": "gxs150130", + "overall_grade_rating": 4.38, + "total_grade_count": 1067, + "course_ratings": { + "ITSS4351": 4.25, + "MIS6309": 4.35, + "MIS6349": 4.71, + "BUAN6385": 4.23, + "MIS6385": 4.36 + } + } + ], + "elizabeth trosper": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2140402", + "quality_rating": 3.3, + "difficulty_rating": 2.8, + "would_take_again": 58, + "original_rmp_format": "Elizabeth Trosper", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 12, + "tags": [ + "Lots of homework", + "Caring", + "Group projects", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "2140402", + "instructor_id": "emt130130", + "overall_grade_rating": 4.12, + "total_grade_count": 718, + "course_ratings": { + "ARTS2380": 3.99, + "ATCM2301": 3.78, + "ATCM2350": 4.38, + "ATCM3350": 4.57, + "ATCM4397": 4.62, + "ATCM4364": 4.72 + } + } + ], + "karen huxtable jester": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/665447", + "quality_rating": 3.3, + "difficulty_rating": 3.7, + "would_take_again": 51, + "original_rmp_format": "Karen Huxtable-Jester", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 201, + "tags": [ + "Get ready to read", + "Tough grader", + "Participation matters", + "Test heavy", + "Caring" + ], + "rmp_id": "665447", + "instructor_id": "kxh014900", + "overall_grade_rating": 3.56, + "total_grade_count": 2051, + "course_ratings": { + "CLDP3339": 3.3, + "PSY3339": 3.38, + "PSY3331": 3.69 + } + } + ], + "umit gurun": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/629089", + "quality_rating": 3.8, + "difficulty_rating": 3.1, + "would_take_again": 73, + "original_rmp_format": "Umit Gurun", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 44, + "tags": [ + "Participation matters", + "Get ready to read", + "Gives good feedback", + "Lots of homework", + "Lecture heavy" + ], + "rmp_id": "629089", + "instructor_id": "ugg041000", + "overall_grade_rating": 4.34, + "total_grade_count": 980, + "course_ratings": { + "ACCT6344": 4.37, + "ACCT7313": 5.0, + "ACCT4336": 4.07 + } + } + ], + "benjamin raichel": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2092131", + "quality_rating": 4.4, + "difficulty_rating": 3.9, + "would_take_again": 75, + "original_rmp_format": "Benjamin Raichel", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 24, + "tags": [ + "Gives good feedback", + "Amazing lectures ", + "Clear grading criteria", + "Respected", + "Accessible outside class" + ], + "rmp_id": "2092131", + "instructor_id": "bar150630", + "overall_grade_rating": 4.1, + "total_grade_count": 640, + "course_ratings": { + "CS6363": 4.21, + "CE2305": 3.98, + "CS2305": 3.95, + "CS4349": 3.84, + "CS6319": 4.61 + } + } + ], + "monica brussolo": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1738152", + "quality_rating": 3.5, + "difficulty_rating": 3.6, + "would_take_again": 65, + "original_rmp_format": "Monica Brussolo", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 114, + "tags": [ + "Lots of homework", + "Tough grader", + "Caring", + "Get ready to read", + "Skip class? You won't pass." + ], + "rmp_id": "1738152", + "instructor_id": "meb049000", + "overall_grade_rating": 3.88, + "total_grade_count": 2285, + "course_ratings": { + "OPRE3333": 3.68, + "OPRE3360": 3.79, + "OPRE6301": 4.13, + "BUAN6359": 4.1, + "OPRE6359": 4.12 + } + } + ], + "howard dover": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/862858", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 33, + "original_rmp_format": "Howard Dover", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 26, + "tags": [ + "Participation matters", + "Tough grader", + "Group projects", + "Respected", + "Inspirational" + ], + "rmp_id": "862858", + "instructor_id": "hfd021000", + "overall_grade_rating": 3.84, + "total_grade_count": 624, + "course_ratings": { + "MKT4332": 3.99, + "MKT4331": 3.56, + "MKT6334": 4.72 + } + } + ], + "bethany pitchford": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2946032", + "quality_rating": 3.5, + "difficulty_rating": 2.8, + "would_take_again": 62, + "original_rmp_format": "Bethany Pitchford", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 13, + "tags": [ + "Group projects", + "Caring", + "Tough grader", + "Clear grading criteria", + "Get ready to read" + ], + "rmp_id": "2946032", + "instructor_id": "bxp230018", + "overall_grade_rating": 3.66, + "total_grade_count": 382, + "course_ratings": { + "BCOM1300": 3.7, + "BCOM3300": 3.72, + "BCOM4300": 3.57 + } + } + ], + "donggyu sul": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2036106", + "quality_rating": 2.4, + "difficulty_rating": 3.1, + "would_take_again": 25, + "original_rmp_format": "Donggyu Sul", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 8, + "tags": [ + "EXTRA CREDIT", + "Get ready to read", + "Skip class? You won't pass.", + "Inspirational", + "Lots of homework" + ], + "rmp_id": "2036106", + "instructor_id": "dxs093000", + "overall_grade_rating": 4.15, + "total_grade_count": 191, + "course_ratings": { + "ECON3311": 4.07, + "ECON4382": 4.33, + "ECON6309": 4.22 + } + } + ], + "ignacio rios uribe": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2634415", + "quality_rating": 4.9, + "difficulty_rating": 3, + "would_take_again": 98, + "original_rmp_format": "Ignacio Rios Uribe", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 52, + "tags": [ + "Caring", + "Accessible outside class", + "Amazing lectures ", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2634415", + "instructor_id": "iar200000", + "overall_grade_rating": 4.0, + "total_grade_count": 479, + "course_ratings": { + "OPRE3310": 3.69, + "OPRE6332": 4.14 + } + } + ], + "dmitry rachinskiy": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1852674", + "quality_rating": 4.5, + "difficulty_rating": 3.1, + "would_take_again": 88, + "original_rmp_format": "Dmitry Rachinskiy", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 35, + "tags": ["Respected", "Amazing lectures ", "Caring", "Test heavy", "Graded by few things"], + "rmp_id": "1852674", + "instructor_id": "dxr124030", + "overall_grade_rating": 3.55, + "total_grade_count": 784, + "course_ratings": { + "MATH2420": 3.5, + "MATH6324": 4.67, + "MATH7319": 4.31 + } + } + ], + "vibhav gogate": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1837370", + "quality_rating": 4.7, + "difficulty_rating": 4.5, + "would_take_again": 95, + "original_rmp_format": "Vibhav Gogate", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 30, + "tags": [ + "Amazing lectures ", + "Get ready to read", + "Lots of homework", + "Inspirational", + "Gives good feedback" + ], + "rmp_id": "1837370", + "instructor_id": "vxg112130", + "overall_grade_rating": 3.83, + "total_grade_count": 430, + "course_ratings": { + "CS4365": 3.44, + "CS6375": 3.94, + "CS7301": 5.0, + "CS6347": 4.54 + } + } + ], + "sarah moore": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1487512", + "quality_rating": 4.3, + "difficulty_rating": 2.6, + "would_take_again": 84, + "original_rmp_format": "Sarah Moore", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 45, + "tags": [ + "Group projects", + "Gives good feedback", + "Clear grading criteria", + "Tough grader", + "Caring" + ], + "rmp_id": "1487512", + "instructor_id": "sem054000", + "overall_grade_rating": 4.12, + "total_grade_count": 1449, + "course_ratings": { + "BCOM3310": 4.62, + "BA3200": 4.47, + "FIN3200": 4.69, + "BCOM1300": 3.75, + "BCOM4300": 3.96, + "BCOM3300": 4.34, + "ACCT3100": 4.78, + "BCOM4350": 4.52 + } + } + ], + "lakshman tamil": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/898501", + "quality_rating": 3.8, + "difficulty_rating": 2.6, + "would_take_again": 75, + "original_rmp_format": "Lakshman Tamil", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 24, + "tags": [ + "Graded by few things", + "Clear grading criteria", + "Respected", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "898501", + "instructor_id": "laxman", + "overall_grade_rating": 4.81, + "total_grade_count": 570, + "course_ratings": { + "ENGR2300": 4.4, + "CE4201": 4.94, + "EE4201": 4.91, + "EESC6395": 4.84, + "EE4331": 4.72, + "CE4331": 4.45 + } + } + ], + "shilyh warren": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2031155", + "quality_rating": 2.5, + "difficulty_rating": 3.4, + "would_take_again": 31, + "original_rmp_format": "Shilyh Warren", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 14, + "tags": [ + "Participation matters", + "Tough grader", + "Amazing lectures ", + "Gives good feedback", + "EXTRA CREDIT" + ], + "rmp_id": "2031155", + "instructor_id": "sjw120030", + "overall_grade_rating": 4.34, + "total_grade_count": 221, + "course_ratings": { + "HUAS7360": 4.24, + "FILM3325": 4.29, + "VPAS6300": 4.61, + "VPAS7360": 4.81, + "ARHM6310": 4.48, + "HUAS6373": 4.65, + "FILM3342": 3.49, + "VPAS6373": 4.38, + "FILM3321": 4.71 + } + } + ], + "masrufa nusrat": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2843266", + "quality_rating": 1.7, + "difficulty_rating": 4.6, + "would_take_again": 29, + "original_rmp_format": "Masrufa Nusrat", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 7, + "tags": [ + "Tough grader", + "So many papers", + "Graded by few things", + "Caring", + "Get ready to read" + ], + "rmp_id": "2843266", + "instructor_id": "man220000", + "overall_grade_rating": 3.66, + "total_grade_count": 146, + "course_ratings": { + "RHET1302": 3.66 + } + } + ], + "kaloyan penev": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2342238", + "quality_rating": 2.1, + "difficulty_rating": 4, + "would_take_again": 18, + "original_rmp_format": "Kaloyan Penev", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 45, + "tags": [ + "Lots of homework", + "Test heavy", + "Caring", + "Lecture heavy", + "Participation matters" + ], + "rmp_id": "2342238", + "instructor_id": "kxp174430", + "overall_grade_rating": 3.48, + "total_grade_count": 956, + "course_ratings": { + "PHYS1301": 3.42, + "PHYS2325": 3.67 + } + } + ], + "kelly durbin": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/761992", + "quality_rating": 3.5, + "difficulty_rating": 2.4, + "would_take_again": 67, + "original_rmp_format": "Kelly Durbin", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 27, + "tags": [ + "Gives good feedback", + "Caring", + "Get ready to read", + "Participation matters", + "Inspirational" + ], + "rmp_id": "761992", + "instructor_id": "kpdurbin", + "overall_grade_rating": 4.46, + "total_grade_count": 535, + "course_ratings": { + "MUSI2319": 4.34, + "MUSI3324": 4.23, + "MUSI3386": 4.46, + "MUSI3186": 4.76, + "MUSI1306": 4.4, + "MUSI4386": 5.0, + "MUSI3325": 4.32, + "MUSI3389": 5.0, + "MUSI4186": 5.0 + } + } + ], + "wafa jaffal": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2732744", + "quality_rating": 4.1, + "difficulty_rating": 3.1, + "would_take_again": 72, + "original_rmp_format": "Wafa Jaffal", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 18, + "tags": [ + "Get ready to read", + "Group projects", + "Beware of pop quizzes", + "Caring", + "Lecture heavy" + ], + "rmp_id": "2732744", + "instructor_id": "wxj210000", + "overall_grade_rating": 4.0, + "total_grade_count": 436, + "course_ratings": { + "CS2340": 4.02, + "SE2340": 3.73 + } + } + ], + "zayd mabruk": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/3052396", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Zayd Mabruk", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 3, + "tags": [ + "Group projects", + "Clear grading criteria", + "Amazing lectures ", + "Gives good feedback", + "Hilarious" + ], + "rmp_id": "3052396", + "instructor_id": "znm071000", + "overall_grade_rating": 4.25, + "total_grade_count": 55, + "course_ratings": { + "MKT3300": 4.07, + "MKT4334": 4.66 + } + } + ], + "elmer salazar": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2526451", + "quality_rating": 2.5, + "difficulty_rating": 3.9, + "would_take_again": 41, + "original_rmp_format": "Elmer Salazar", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 88, + "tags": ["Lots of homework", "Get ready to read", "Lecture heavy", "Tough grader", "Caring"], + "rmp_id": "2526451", + "instructor_id": "ees101020", + "overall_grade_rating": 3.84, + "total_grade_count": 1964, + "course_ratings": { + "CS1200": 4.02, + "CS4337": 3.58, + "CS4348": 4.03, + "CS3162": 4.08, + "SE3162": 3.88, + "SE4348": 4.33, + "CE4337": 3.22, + "CS4365": 3.58 + } + } + ], + "dana roark": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2079366", + "quality_rating": 4.6, + "difficulty_rating": 2.4, + "would_take_again": 97, + "original_rmp_format": "Dana Roark", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 43, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Caring", + "EXTRA CREDIT", + "Graded by few things" + ], + "rmp_id": "2079366", + "instructor_id": "danar", + "overall_grade_rating": 4.24, + "total_grade_count": 1200, + "course_ratings": { + "PSY3361": 4.22, + "CGS3361": 4.43 + } + } + ], + "jason jue": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/856339", + "quality_rating": 3.8, + "difficulty_rating": 2.9, + "would_take_again": 88, + "original_rmp_format": "Jason Jue", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 31, + "tags": [ + "Clear grading criteria", + "Lecture heavy", + "Test heavy", + "Lots of homework", + "Tough grader" + ], + "rmp_id": "856339", + "instructor_id": "jjue", + "overall_grade_rating": 3.48, + "total_grade_count": 765, + "course_ratings": { + "CS6352": 3.81, + "CS3305": 3.37, + "CS4349": 3.47, + "CS4390": 3.63, + "CS5390": 4.67 + } + } + ], + "gopal gupta": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/737765", + "quality_rating": 3.6, + "difficulty_rating": 3.5, + "would_take_again": 57, + "original_rmp_format": "Gopal Gupta", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 21, + "tags": ["Lots of homework", "Lecture heavy", "Get ready to read", "Respected", "Test heavy"], + "rmp_id": "737765", + "instructor_id": "gupta", + "overall_grade_rating": 3.97, + "total_grade_count": 337, + "course_ratings": { + "CS7301": 4.24, + "SE7301": 4.17, + "CS4384": 3.6, + "CS6374": 4.48, + "CS4301": 3.38 + } + } + ], + "shuang hao": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2420074", + "quality_rating": 3.2, + "difficulty_rating": 2, + "would_take_again": 50, + "original_rmp_format": "Shuang Hao", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 10, + "tags": [ + "Graded by few things", + "Accessible outside class", + "Clear grading criteria", + "Test heavy", + "Hilarious" + ], + "rmp_id": "2420074", + "instructor_id": "sxh178730", + "overall_grade_rating": 4.39, + "total_grade_count": 577, + "course_ratings": { + "CS6301": 4.9, + "CS6349": 4.68, + "CS4390": 4.14 + } + } + ], + "hosanna alem": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2627788", + "quality_rating": 4.3, + "difficulty_rating": 1.3, + "would_take_again": 67, + "original_rmp_format": "Hosanna Alem", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 3, + "tags": [ + "Accessible outside class", + "Clear grading criteria", + "Gives good feedback", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "2627788", + "instructor_id": "hga140130", + "overall_grade_rating": 4.29, + "total_grade_count": 237, + "course_ratings": { + "RHET1302": 4.39, + "LIT2331": 3.49 + } + } + ], + "yi ding": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2966606", + "quality_rating": 2.7, + "difficulty_rating": 4.3, + "would_take_again": 33, + "original_rmp_format": "Yi Ding", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 3, + "tags": ["Tough grader", "Lecture heavy", "Test heavy", "Amazing lectures "], + "rmp_id": "2966606", + "instructor_id": "yxd230004", + "overall_grade_rating": 3.79, + "total_grade_count": 190, + "course_ratings": { + "CS6301": 4.79, + "CS4390": 3.47 + } + } + ], + "yuri gartstein": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/397055", + "quality_rating": 4, + "difficulty_rating": 4.3, + "would_take_again": 68, + "original_rmp_format": "Yuri Gartstein", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 37, + "tags": ["Amazing lectures ", "Inspirational", "Tough grader", "Caring", "Respected"], + "rmp_id": "397055", + "instructor_id": "yxg037000", + "overall_grade_rating": 3.74, + "total_grade_count": 1051, + "course_ratings": { + "PHYS2422": 4.48, + "PHYS4301": 3.39, + "PHYS2326": 3.82, + "PHYS4302": 3.7 + } + } + ], + "neslihan oguzman": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2278121", + "quality_rating": 3.6, + "difficulty_rating": 3.2, + "would_take_again": 72, + "original_rmp_format": "Neslihan Oguzman", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 32, + "tags": [ + "Clear grading criteria", + "Accessible outside class", + "Hilarious", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2278121", + "instructor_id": "nxo170830", + "overall_grade_rating": 3.8, + "total_grade_count": 719, + "course_ratings": { + "OPRE3333": 3.8 + } + } + ], + "eva ladow": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/1914025", + "quality_rating": 4.4, + "difficulty_rating": 3.1, + "would_take_again": 90, + "original_rmp_format": "Eva Ladow", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 27, + "tags": [ + "Amazing lectures ", + "Lecture heavy", + "Test heavy", + "Get ready to read", + "Clear grading criteria" + ], + "rmp_id": "1914025", + "instructor_id": "esl130130", + "overall_grade_rating": 4.67, + "total_grade_count": 763, + "course_ratings": { + "NSC3361": 4.57, + "NSC4352": 4.65, + "HONS3199": 4.9, + "NSC4363": 4.8, + "HONS3105": 4.97, + "HONS3110": 4.88, + "UNIV3112": 0.84 + } + } + ], + "stephen mckeown": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2527172", + "quality_rating": 3.8, + "difficulty_rating": 4.5, + "would_take_again": 74, + "original_rmp_format": "Stephen McKeown", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 19, + "tags": [ + "Lots of homework", + "Accessible outside class", + "Caring", + "Test heavy", + "Tough grader" + ], + "rmp_id": "2527172", + "instructor_id": "sxm190098", + "overall_grade_rating": 3.09, + "total_grade_count": 423, + "course_ratings": { + "MATH2417": 3.06, + "MATH3351": 3.09, + "MATH3323": 2.7, + "MATH3380": 3.24 + } + } + ], + "rafael copat": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2555833", + "quality_rating": 4.3, + "difficulty_rating": 3.1, + "would_take_again": 83, + "original_rmp_format": "Rafael Copat", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 18, + "tags": [ + "Caring", + "Amazing lectures ", + "Lots of homework", + "Hilarious", + "Participation matters" + ], + "rmp_id": "2555833", + "instructor_id": "rxc190027", + "overall_grade_rating": 3.79, + "total_grade_count": 645, + "course_ratings": { + "ACCT2302": 3.79 + } + } + ], + "mingliu chen": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/3026917", + "quality_rating": 3.4, + "difficulty_rating": 3.2, + "would_take_again": 60, + "original_rmp_format": "Mingliu Chen", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 5, + "tags": [ + "Group projects", + "Lecture heavy", + "Test heavy", + "Tough grader", + "Gives good feedback" + ], + "rmp_id": "3026917", + "instructor_id": "mxc230032", + "overall_grade_rating": 3.98, + "total_grade_count": 208, + "course_ratings": { + "OPRE3360": 3.98 + } + } + ], + "ruben ramirez": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1418864", + "quality_rating": 2.6, + "difficulty_rating": 4.5, + "would_take_again": 26, + "original_rmp_format": "Ruben Ramirez", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 126, + "tags": [ + "Get ready to read", + "Test heavy", + "Lecture heavy", + "Tough grader", + "Skip class? You won't pass." + ], + "rmp_id": "1418864", + "instructor_id": "rdr092000", + "overall_grade_rating": 3.0, + "total_grade_count": 1333, + "course_ratings": { + "BIOL4350": 2.88, + "BIOL3455": 3.02 + } + } + ], + "mark morris": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3039164", + "quality_rating": 1.5, + "difficulty_rating": 4.7, + "would_take_again": 14, + "original_rmp_format": "Mark Morris", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 57, + "tags": [ + "Tough grader", + "Lecture heavy", + "Test heavy", + "Participation matters", + "Group projects" + ], + "rmp_id": "3039164", + "instructor_id": "dal629291", + "overall_grade_rating": 3.8, + "total_grade_count": 149, + "course_ratings": { + "OBHR3330": 3.8 + } + } + ], + "fang wu": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/990063", + "quality_rating": 3.4, + "difficulty_rating": 2.5, + "would_take_again": 67, + "original_rmp_format": "Fang Wu", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 51, + "tags": [ + "Group projects", + "Participation matters", + "Graded by few things", + "Tough grader", + "Beware of pop quizzes" + ], + "rmp_id": "990063", + "instructor_id": "fxw052000", + "overall_grade_rating": 3.83, + "total_grade_count": 1570, + "course_ratings": { + "MKT6301": 4.38, + "MKT3300": 3.72, + "MKT3320": 4.04, + "MKT4380": 3.98, + "MKT4395": 4.65 + } + } + ], + "steven mccauley": [ + { + "department": "Weather Climate", + "url": "https://www.ratemyprofessors.com/professor/2255258", + "quality_rating": 4.6, + "difficulty_rating": 2.7, + "would_take_again": 94, + "original_rmp_format": "Steven McCauley", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 16, + "tags": [ + "EXTRA CREDIT", + "Amazing lectures ", + "Gives good feedback", + "Lots of homework", + "Lecture heavy" + ], + "rmp_id": "2255258", + "instructor_id": "sxm165131", + "overall_grade_rating": 3.43, + "total_grade_count": 779, + "course_ratings": { + "ISNS2368": 3.41, + "ISNS2366": 3.54 + } + } + ], + "victor varner": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2186644", + "quality_rating": 3.6, + "difficulty_rating": 3.7, + "would_take_again": 71, + "original_rmp_format": "Victor Varner", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 7, + "tags": [ + "Caring", + "Skip class? You won't pass.", + "Tough grader", + "Test heavy", + "Tests are tough" + ], + "rmp_id": "2186644", + "instructor_id": "vxv162230", + "overall_grade_rating": 3.67, + "total_grade_count": 287, + "course_ratings": { + "BMEN3399": 3.67 + } + } + ], + "jung lee": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1416412", + "quality_rating": 2.7, + "difficulty_rating": 3.3, + "would_take_again": 44, + "original_rmp_format": "Jung Lee", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 90, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Lots of homework", + "EXTRA CREDIT", + "Caring" + ], + "rmp_id": "1416412", + "instructor_id": "jls032000", + "overall_grade_rating": 3.03, + "total_grade_count": 1152, + "course_ratings": { + "ENGR3300": 3.01, + "ENGR2300": 3.72 + } + } + ], + "derege mussa": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1917083", + "quality_rating": 3, + "difficulty_rating": 3.6, + "would_take_again": 55, + "original_rmp_format": "Derege Mussa", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 88, + "tags": [ + "Lots of homework", + "Skip class? You won't pass.", + "Caring", + "Lecture heavy", + "Tough grader" + ], + "rmp_id": "1917083", + "instructor_id": "dxm146130", + "overall_grade_rating": 3.02, + "total_grade_count": 1462, + "course_ratings": { + "MATH1326": 2.86, + "MATH2413": 3.41, + "MATH1325": 3.1, + "MATH1306": 3.27 + } + } + ], + "william hefley": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2217318", + "quality_rating": 2.1, + "difficulty_rating": 4.1, + "would_take_again": 25, + "original_rmp_format": "William Hefley", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 51, + "tags": [ + "Tough grader", + "Group projects", + "Lots of homework", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "2217318", + "instructor_id": "weh150130", + "overall_grade_rating": 3.67, + "total_grade_count": 1510, + "course_ratings": { + "ITSS4370": 3.49, + "MIS6204": 4.04, + "MIS6313": 4.34, + "ITSS3300": 2.6, + "MIS6396": 3.85 + } + } + ], + "kevin siqueira": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/907548", + "quality_rating": 3.3, + "difficulty_rating": 4.2, + "would_take_again": 78, + "original_rmp_format": "Kevin Siqueira", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 26, + "tags": [ + "Amazing lectures ", + "Respected", + "Accessible outside class", + "Tough grader", + "Skip class? You won't pass." + ], + "rmp_id": "907548", + "instructor_id": "kjs064000", + "overall_grade_rating": 3.55, + "total_grade_count": 452, + "course_ratings": { + "ECON7303": 4.48, + "ECON4333": 3.58, + "ECON4360": 3.51, + "ECON4301": 3.51, + "ECON7301": 3.66 + } + } + ], + "david parks": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2123206", + "quality_rating": 1.9, + "difficulty_rating": 4.2, + "would_take_again": 18, + "original_rmp_format": "David Parks", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 25, + "tags": [ + "Test heavy", + "Tough grader", + "Lecture heavy", + "Lots of homework", + "Graded by few things" + ], + "rmp_id": "2123206", + "instructor_id": "dxp153830", + "overall_grade_rating": 4.15, + "total_grade_count": 1552, + "course_ratings": { + "OPRE3333": 3.62, + "OPRE3360": 3.05, + "OPRE6367": 4.9, + "OPRE3310": 3.48, + "ITSS4395": 4.76, + "OPRE4395": 5.0, + "BPS4395": 4.89, + "OPRE4360": 4.91 + } + } + ], + "baris coskunuzer": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2588634", + "quality_rating": 3.8, + "difficulty_rating": 3.5, + "would_take_again": 77, + "original_rmp_format": "Baris Coskunuzer", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 22, + "tags": ["Lecture heavy", "Lots of homework", "Caring", "Get ready to read", "Test heavy"], + "rmp_id": "2588634", + "instructor_id": "bxc190014", + "overall_grade_rating": 3.05, + "total_grade_count": 433, + "course_ratings": { + "MATH2415": 2.97, + "MATH4341": 3.11, + "MATH6310": 4.27 + } + } + ], + "yaoyu li": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2013550", + "quality_rating": 2.9, + "difficulty_rating": 4, + "would_take_again": 38, + "original_rmp_format": "Yaoyu Li", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 13, + "tags": [ + "Lots of homework", + "Tough grader", + "Test heavy", + "Clear grading criteria", + "Participation matters" + ], + "rmp_id": "2013550", + "instructor_id": "yxl115230", + "overall_grade_rating": 4.17, + "total_grade_count": 598, + "course_ratings": { + "MECH4110": 4.64, + "MECH5370": 4.78, + "MECH3340": 4.0, + "MECH4310": 3.92 + } + } + ], + "seung you": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2013899", + "quality_rating": 2.5, + "difficulty_rating": 4.4, + "would_take_again": 25, + "original_rmp_format": "Seung You", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 13, + "tags": [ + "Test heavy", + "Lots of homework", + "Tough grader", + "Lecture heavy", + "Get ready to read" + ], + "rmp_id": "2013899", + "instructor_id": "smy130030", + "overall_grade_rating": 3.43, + "total_grade_count": 319, + "course_ratings": { + "MECH7100": 5.0, + "MECH3320": 3.19, + "MECH3310": 2.98, + "MECH6373": 4.26 + } + } + ], + "mark spong": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2098295", + "quality_rating": 4.4, + "difficulty_rating": 2.6, + "would_take_again": 100, + "original_rmp_format": "Mark Spong", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 5, + "tags": [ + "Clear grading criteria", + "Respected", + "Accessible outside class", + "EXTRA CREDIT", + "Amazing lectures " + ], + "rmp_id": "2098295", + "instructor_id": "mws081000", + "overall_grade_rating": 4.52, + "total_grade_count": 232, + "course_ratings": { + "BMEN6372": 4.24, + "MECH6314": 4.5, + "SYSM6306": 5.0, + "SYSM6305": 4.46, + "SYSM6302": 4.64, + "EECS6302": 4.71, + "MECH6317": 4.71 + } + } + ], + "bingzhe li": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2964538", + "quality_rating": 4, + "difficulty_rating": 2.6, + "would_take_again": 100, + "original_rmp_format": "Bingzhe Li", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 5, + "tags": [ + "Lots of homework", + "Lecture heavy", + "EXTRA CREDIT", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2964538", + "instructor_id": "bxl230006", + "overall_grade_rating": 3.63, + "total_grade_count": 234, + "course_ratings": { + "CS4341": 3.63 + } + } + ], + "chris davis": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1936866", + "quality_rating": 2.9, + "difficulty_rating": 3, + "would_take_again": 38, + "original_rmp_format": "Chris Davis", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 91, + "tags": [ + "Amazing lectures ", + "Respected", + "Get ready to read", + "Caring", + "Graded by few things" + ], + "rmp_id": "1936866", + "instructor_id": "cid021000", + "overall_grade_rating": 4.13, + "total_grade_count": 2768, + "course_ratings": { + "CS4337": 3.99, + "CE4337": 3.9, + "CS6360": 4.64, + "CS1336": 3.53, + "CS3305": 4.37, + "CS4347": 4.06, + "SE3306": 4.23, + "CS1337": 3.25, + "CS4395": 4.79, + "SE4347": 4.05, + "CS4384": 4.05, + "CS2305": 4.13, + "CS1335": 4.69 + } + } + ], + "bart rypma": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/1283059", + "quality_rating": 3.5, + "difficulty_rating": 3.3, + "would_take_again": 53, + "original_rmp_format": "Bart Rypma", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 26, + "tags": [ + "EXTRA CREDIT", + "Lecture heavy", + "Test heavy", + "Get ready to read", + "Skip class? You won't pass." + ], + "rmp_id": "1283059", + "instructor_id": "bpr061000", + "overall_grade_rating": 4.35, + "total_grade_count": 380, + "course_ratings": { + "PSY4359": 3.99, + "NSC4359": 4.49, + "CGS4359": 4.52, + "ACN6310": 5.0 + } + } + ], + "anton malko": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1115042", + "quality_rating": 1.8, + "difficulty_rating": 4.6, + "would_take_again": 14, + "original_rmp_format": "Anton Malko", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 24, + "tags": [ + "Tough grader", + "Test heavy", + "Get ready to read", + "Lecture heavy", + "Lots of homework" + ], + "rmp_id": "1115042", + "instructor_id": "avm074000", + "overall_grade_rating": 3.21, + "total_grade_count": 380, + "course_ratings": { + "PHYS1100": 0.84, + "PHYS3416": 2.47, + "PHYS4328": 3.37, + "PHYS2325": 3.7, + "PHYS1302": 4.48 + } + } + ], + "robert stogsdill": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/3065399", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Robert Stogsdill", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 1, + "tags": ["Group projects", "Clear grading criteria", "Caring"], + "rmp_id": "3065399", + "instructor_id": "rws180002", + "overall_grade_rating": 4.93, + "total_grade_count": 197, + "course_ratings": { + "ITSS4395": 4.92, + "BPS4395": 4.96 + } + } + ], + "sara eaton": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/3065396", + "quality_rating": 4, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Sara Eaton", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 1, + "tags": ["Group projects", "Gives good feedback", "Caring"], + "rmp_id": "3065396", + "instructor_id": "she240000", + "overall_grade_rating": 4.61, + "total_grade_count": 49, + "course_ratings": { + "ITSS4344": 4.61 + } + } + ], + "nhut nguyen": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1803061", + "quality_rating": 2.4, + "difficulty_rating": 4.2, + "would_take_again": 22, + "original_rmp_format": "Nhut Nguyen", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 204, + "tags": [ + "Tough grader", + "Test heavy", + "Skip class? You won't pass.", + "Group projects", + "Get ready to read" + ], + "rmp_id": "1803061", + "instructor_id": "nhutnn", + "overall_grade_rating": 3.7, + "total_grade_count": 2534, + "course_ratings": { + "CS3340": 3.67, + "SE3340": 2.68, + "CS4390": 3.69, + "CE4390": 3.77, + "CS4393": 3.57, + "CS2340": 3.64, + "CS4341": 3.43, + "SE2340": 3.55, + "CS2335": 3.52, + "CS3377": 4.05, + "CS4141": 4.62 + } + } + ], + "shyam karrah": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1554657", + "quality_rating": 4.6, + "difficulty_rating": 2.5, + "would_take_again": 92, + "original_rmp_format": "Shyam Karrah", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 61, + "tags": [ + "Beware of pop quizzes", + "Caring", + "Amazing lectures ", + "Accessible outside class", + "Respected" + ], + "rmp_id": "1554657", + "instructor_id": "skarrah", + "overall_grade_rating": 3.83, + "total_grade_count": 1161, + "course_ratings": { + "CS1336": 3.73, + "CS1334": 4.18, + "CS1436": 3.49, + "CS1134": 4.65, + "CS1136": 3.79 + } + } + ], + "ravi prakash": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/138270", + "quality_rating": 3.8, + "difficulty_rating": 3.6, + "would_take_again": 61, + "original_rmp_format": "Ravi Prakash", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 60, + "tags": [ + "Tough grader", + "Amazing lectures ", + "Get ready to read", + "Respected", + "Inspirational" + ], + "rmp_id": "138270", + "instructor_id": "ravip", + "overall_grade_rating": 4.16, + "total_grade_count": 693, + "course_ratings": { + "CS4348": 3.74, + "HONS3199": 4.65, + "HONS3108": 4.68, + "CS6378": 4.19, + "CS3305": 4.46 + } + } + ], + "yanping qin": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1710223", + "quality_rating": 3.6, + "difficulty_rating": 2.6, + "would_take_again": 75, + "original_rmp_format": "Yanping Qin", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 33, + "tags": [ + "Skip class? You won't pass.", + "Participation matters", + "Gives good feedback", + "Clear grading criteria", + "Tough grader" + ], + "rmp_id": "1710223", + "instructor_id": "yxq083000", + "overall_grade_rating": 4.32, + "total_grade_count": 2072, + "course_ratings": { + "CHEM1111": 4.29, + "CHEM1112": 4.53, + "CHEM3472": 3.52 + } + } + ], + "james miller": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2291659", + "quality_rating": 4.7, + "difficulty_rating": 2.7, + "would_take_again": 96, + "original_rmp_format": "James Miller", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 26, + "tags": [ + "Caring", + "Respected", + "Lots of homework", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2291659", + "instructor_id": "jwm170630", + "overall_grade_rating": 3.11, + "total_grade_count": 578, + "course_ratings": { + "MATH1325": 3.3, + "STAT1342": 3.1, + "MATH2413": 2.87, + "MATH2418": 3.35, + "MATH1316": 2.94, + "MATH1326": 3.17 + } + } + ], + "samir mamadehussene": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2711363", + "quality_rating": 3.7, + "difficulty_rating": 2.8, + "would_take_again": 70, + "original_rmp_format": "Samir Mamadehussene", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 23, + "tags": [ + "Group projects", + "Graded by few things", + "Tough grader", + "Clear grading criteria", + "Test heavy" + ], + "rmp_id": "2711363", + "instructor_id": "sxm200118", + "overall_grade_rating": 4.13, + "total_grade_count": 463, + "course_ratings": { + "MKT3300": 4.09, + "MKT6379": 4.44 + } + } + ], + "ying huang": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2609342", + "quality_rating": 3.4, + "difficulty_rating": 2.9, + "would_take_again": 63, + "original_rmp_format": "Ying Huang", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 19, + "tags": [ + "Caring", + "Test heavy", + "Amazing lectures ", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "2609342", + "instructor_id": "yxh124430", + "overall_grade_rating": 3.57, + "total_grade_count": 710, + "course_ratings": { + "ACCT2301": 3.53, + "ACCT6305": 4.38 + } + } + ], + "alison bodeker": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2594160", + "quality_rating": 3.6, + "difficulty_rating": 2.6, + "would_take_again": 71, + "original_rmp_format": "Alison Bodeker", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 14, + "tags": [ + "EXTRA CREDIT", + "Participation matters", + "Clear grading criteria", + "Gives good feedback", + "Graded by few things" + ], + "rmp_id": "2594160", + "instructor_id": "ajb190003", + "overall_grade_rating": 3.66, + "total_grade_count": 561, + "course_ratings": { + "ITSS3300": 3.66 + } + } + ], + "lauren loyless": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2643239", + "quality_rating": 4.4, + "difficulty_rating": 1.9, + "would_take_again": 85, + "original_rmp_format": "Lauren Loyless", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 13, + "tags": ["Group projects", "Caring", "Gives good feedback", "Amazing lectures ", "Respected"], + "rmp_id": "2643239", + "instructor_id": "lxl190018", + "overall_grade_rating": 4.41, + "total_grade_count": 343, + "course_ratings": { + "BCOM3310": 4.56, + "BCOM3300": 4.4, + "BCOM4300": 4.37 + } + } + ], + "cheyu wu": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2942079", + "quality_rating": 1.8, + "difficulty_rating": 3.9, + "would_take_again": 17, + "original_rmp_format": "Cheyu Wu", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 12, + "tags": [ + "Test heavy", + "Lots of homework", + "Lecture heavy", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "2942079", + "instructor_id": "cxw153530", + "overall_grade_rating": 2.68, + "total_grade_count": 602, + "course_ratings": { + "MATH1314": 3.2, + "MATH2418": 2.65, + "MATH1316": 2.37, + "MATH2413": 2.49 + } + } + ], + "sakshi malhotra": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2941503", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Sakshi Malhotra", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 7, + "tags": [ + "Amazing lectures ", + "Caring", + "Respected", + "Accessible outside class", + "Participation matters" + ], + "rmp_id": "2941503", + "instructor_id": "sxm180207", + "overall_grade_rating": 3.61, + "total_grade_count": 141, + "course_ratings": { + "MATH1325": 3.61 + } + } + ], + "huizhen guo": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2591709", + "quality_rating": 2.6, + "difficulty_rating": 3.2, + "would_take_again": 37, + "original_rmp_format": "Huizhen Guo", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 43, + "tags": [ + "Caring", + "Tough grader", + "Lots of homework", + "Participation matters", + "Accessible outside class" + ], + "rmp_id": "2591709", + "instructor_id": "hxg190020", + "overall_grade_rating": 3.03, + "total_grade_count": 1639, + "course_ratings": { + "CS3341": 2.95, + "MATH2413": 3.47, + "SE3341": 2.47, + "MATH1325": 2.64, + "STAT2332": 3.5 + } + } + ], + "marianne stewart": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/183787", + "quality_rating": 3.1, + "difficulty_rating": 3.9, + "would_take_again": 28, + "original_rmp_format": "Marianne Stewart", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 32, + "tags": [ + "Lecture heavy", + "Graded by few things", + "Test heavy", + "Tough grader", + "Skip class? You won't pass." + ], + "rmp_id": "183787", + "instructor_id": "mstewart", + "overall_grade_rating": 3.71, + "total_grade_count": 465, + "course_ratings": { + "IPEC4376": 3.27, + "PSCI4376": 3.11, + "PSCI4377": 3.99, + "PSCI4306": 3.43, + "PSCI3333": 3.67, + "PSCI6321": 4.09 + } + } + ], + "sruthi chappidi": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2531709", + "quality_rating": 2.5, + "difficulty_rating": 3.3, + "would_take_again": 30, + "original_rmp_format": "Sruthi Chappidi", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 23, + "tags": [ + "Lecture heavy", + "Lots of homework", + "Tough grader", + "Clear grading criteria", + "Test heavy" + ], + "rmp_id": "2531709", + "instructor_id": "sxc105920", + "overall_grade_rating": 3.92, + "total_grade_count": 595, + "course_ratings": { + "CS3345": 3.87, + "CS1325": 3.97, + "CE2336": 4.1, + "CS2336": 3.89 + } + } + ], + "anne balsamo": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2297702", + "quality_rating": 2.1, + "difficulty_rating": 2, + "would_take_again": 14, + "original_rmp_format": "Anne Balsamo", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 22, + "tags": [ + "Group projects", + "Participation matters", + "Graded by few things", + "Lecture heavy", + "Get ready to read" + ], + "rmp_id": "2297702", + "instructor_id": "axb161831", + "overall_grade_rating": 4.21, + "total_grade_count": 1752, + "course_ratings": { + "ATCM2300": 4.21, + "ATCM4340": 4.4 + } + } + ], + "chuan fa tang": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/2557924", + "quality_rating": 4.1, + "difficulty_rating": 2.7, + "would_take_again": 91, + "original_rmp_format": "Chuan-Fa Tang", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 11, + "tags": [ + "Caring", + "Accessible outside class", + "Gives good feedback", + "Group projects", + "Lots of homework" + ], + "rmp_id": "2557924", + "instructor_id": "cxt190011", + "overall_grade_rating": 4.26, + "total_grade_count": 289, + "course_ratings": { + "STAT4351": 4.39, + "STAT7334": 4.94, + "STAT4355": 4.03, + "STAT6339": 4.33 + } + } + ], + "junaid shabir": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2860704", + "quality_rating": 1.8, + "difficulty_rating": 4, + "would_take_again": 25, + "original_rmp_format": "Junaid Shabir", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 4, + "tags": [ + "Tough grader", + "Participation matters", + "Graded by few things", + "Get ready to read" + ], + "rmp_id": "2860704", + "instructor_id": "jss220000", + "overall_grade_rating": 3.26, + "total_grade_count": 127, + "course_ratings": { + "RHET1302": 3.09, + "LIT2331": 3.97 + } + } + ], + "ping tang": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2749085", + "quality_rating": 3.3, + "difficulty_rating": 2.8, + "would_take_again": 25, + "original_rmp_format": "Ping Tang", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 4, + "tags": [ + "Lecture heavy", + "Caring", + "Participation matters", + "Clear grading criteria", + "Respected" + ], + "rmp_id": "2749085", + "instructor_id": "pxt170008", + "overall_grade_rating": 3.95, + "total_grade_count": 59, + "course_ratings": { + "ITSS3311": 3.95 + } + } + ], + "anmol madan": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/3064736", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 0, + "original_rmp_format": "Anmol Madan", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 1, + "tags": ["Participation matters", "Group projects", "Lecture heavy"], + "rmp_id": "3064736", + "instructor_id": "axm200248", + "overall_grade_rating": 4.69, + "total_grade_count": 57, + "course_ratings": { + "MKT3300": 4.69 + } + } + ], + "van miller": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/1204408", + "quality_rating": 4, + "difficulty_rating": 3.7, + "would_take_again": 67, + "original_rmp_format": "Van Miller", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 191, + "tags": [ + "Amazing lectures ", + "Test heavy", + "Skip class? You won't pass.", + "Lecture heavy", + "Respected" + ], + "rmp_id": "1204408", + "instructor_id": "vxm077000", + "overall_grade_rating": 3.43, + "total_grade_count": 3114, + "course_ratings": { + "NSC3361": 3.25, + "NSC4366": 3.49, + "HONS3199": 5.0, + "NSC4350": 3.9, + "NSC4351": 4.7, + "NSC4310": 4.44, + "NSC4377": 3.53, + "NSC4367": 2.75, + "NSC4364": 4.57 + } + } + ], + "tom henderson": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/1996497", + "quality_rating": 3.2, + "difficulty_rating": 3, + "would_take_again": 51, + "original_rmp_format": "Tom Henderson", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 89, + "tags": [ + "Tough grader", + "Lots of homework", + "Caring", + "Skip class? You won't pass.", + "Lecture heavy" + ], + "rmp_id": "1996497", + "instructor_id": "txh093000", + "overall_grade_rating": 3.56, + "total_grade_count": 929, + "course_ratings": { + "IMS3310": 3.38, + "BA1100": 3.47, + "BCOM1300": 3.47, + "BPS4395": 4.47, + "IMS4320": 3.88, + "MKT4320": 2.92 + } + } + ], + "simeon ntafos": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/186883", + "quality_rating": 1.3, + "difficulty_rating": 4.7, + "would_take_again": 11, + "original_rmp_format": "Simeon Ntafos", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 73, + "tags": [ + "Tough grader", + "Lots of homework", + "Test heavy", + "Get ready to read", + "Graded by few things" + ], + "rmp_id": "186883", + "instructor_id": "ntafos", + "overall_grade_rating": 2.55, + "total_grade_count": 856, + "course_ratings": { + "CS2305": 2.53, + "CS4384": 2.46, + "CS3305": 3.48 + } + } + ], + "ebru cankaya": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1735915", + "quality_rating": 3.9, + "difficulty_rating": 2.6, + "would_take_again": 72, + "original_rmp_format": "Ebru Cankaya", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 73, + "tags": [ + "Lots of homework", + "Caring", + "Group projects", + "Clear grading criteria", + "Respected" + ], + "rmp_id": "1735915", + "instructor_id": "exc067000", + "overall_grade_rating": 4.18, + "total_grade_count": 2229, + "course_ratings": { + "CS4349": 4.06, + "CS3354": 4.37, + "CS4389": 4.08, + "CS6303": 4.58, + "CS4347": 4.08, + "CS4341": 3.49, + "SE3354": 4.46, + "CE3354": 4.51, + "CS4398": 4.38, + "CS6305": 4.79 + } + } + ], + "douglas dow": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/183793", + "quality_rating": 3.9, + "difficulty_rating": 3.9, + "would_take_again": 62, + "original_rmp_format": "Douglas Dow", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 36, + "tags": [ + "Get ready to read", + "Lecture heavy", + "Beware of pop quizzes", + "Skip class? You won't pass.", + "Respected" + ], + "rmp_id": "183793", + "instructor_id": "dougdow", + "overall_grade_rating": 4.72, + "total_grade_count": 455, + "course_ratings": { + "ECS3361": 4.55, + "GOVT2306": 4.59, + "HONS3199": 4.94, + "HONS3104": 4.86, + "PSCI3301": 4.76, + "PSCI3322": 4.84, + "PSCI3303": 4.81 + } + } + ], + "naofal al dhahir": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1048231", + "quality_rating": 3.9, + "difficulty_rating": 2.8, + "would_take_again": 82, + "original_rmp_format": "Naofal Al-Dhahir", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 33, + "tags": [ + "Respected", + "Skip class? You won't pass.", + "Caring", + "Lecture heavy", + "Amazing lectures " + ], + "rmp_id": "1048231", + "instructor_id": "nxa028000", + "overall_grade_rating": 3.43, + "total_grade_count": 320, + "course_ratings": { + "ENGR2300": 3.37, + "EESC6343": 4.17 + } + } + ], + "erik peterson": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2521154", + "quality_rating": 4.6, + "difficulty_rating": 2.3, + "would_take_again": 89, + "original_rmp_format": "Erik Peterson", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 28, + "tags": [ + "Accessible outside class", + "Gives good feedback", + "Clear grading criteria", + "Caring", + "Amazing lectures " + ], + "rmp_id": "2521154", + "instructor_id": "eap190004", + "overall_grade_rating": 4.3, + "total_grade_count": 728, + "course_ratings": { + "CS2337": 3.81, + "CS1336": 4.2, + "CS3377": 3.89, + "CE2336": 4.0, + "CS2336": 4.49, + "SE3377": 3.8, + "CS3354": 4.84, + "SE3354": 4.43, + "CS4348": 4.68 + } + } + ], + "latifur khan": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/660724", + "quality_rating": 3.4, + "difficulty_rating": 2.8, + "would_take_again": 77, + "original_rmp_format": "Latifur Khan", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 25, + "tags": ["Group projects", "Lots of homework", "Respected", "Amazing lectures ", "Caring"], + "rmp_id": "660724", + "instructor_id": "lkhan", + "overall_grade_rating": 4.49, + "total_grade_count": 778, + "course_ratings": { + "CS6350": 4.58, + "CS4371": 4.27, + "CS7301": 5.0 + } + } + ], + "dupinderjeet kaur": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2131864", + "quality_rating": 2.9, + "difficulty_rating": 3.9, + "would_take_again": 39, + "original_rmp_format": "Dupinderjeet Kaur", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 24, + "tags": [ + "Lecture heavy", + "Test heavy", + "Tough grader", + "Skip class? You won't pass.", + "Lots of homework" + ], + "rmp_id": "2131864", + "instructor_id": "dxk110730", + "overall_grade_rating": 3.82, + "total_grade_count": 1306, + "course_ratings": { + "FIN3320": 3.35, + "FIN3390": 3.73, + "FIN3395": 3.82, + "FIN4340": 3.54, + "FIN6360": 4.4, + "FIN6310": 4.2 + } + } + ], + "natalie ring": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/998456", + "quality_rating": 3, + "difficulty_rating": 3.2, + "would_take_again": 42, + "original_rmp_format": "Natalie Ring", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 24, + "tags": ["Get ready to read", "Caring", "Tough grader", "EXTRA CREDIT", "Amazing lectures "], + "rmp_id": "998456", + "instructor_id": "njr041000", + "overall_grade_rating": 4.14, + "total_grade_count": 807, + "course_ratings": { + "HIST4383": 4.26, + "HIST6320": 4.55, + "HIST2381": 4.09, + "HIST4378": 3.91, + "HIST3342": 4.62, + "HIST6336": 4.83, + "HIST6325": 4.5, + "HIST6301": 4.62 + } + } + ], + "siavash pourkamali": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1847172", + "quality_rating": 3.2, + "difficulty_rating": 3.8, + "would_take_again": 53, + "original_rmp_format": "Siavash Pourkamali", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 20, + "tags": [ + "Beware of pop quizzes", + "Test heavy", + "Tough grader", + "Skip class? You won't pass.", + "Get ready to read" + ], + "rmp_id": "1847172", + "instructor_id": "sxp124631", + "overall_grade_rating": 3.84, + "total_grade_count": 376, + "course_ratings": { + "CE3311": 3.99, + "EE3311": 3.99, + "CE3310": 3.16, + "EE3310": 3.68, + "EEMF6382": 4.34, + "MECH6347": 4.18 + } + } + ], + "jason kautz": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2621483", + "quality_rating": 5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Jason Kautz", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 19, + "tags": [ + "Amazing lectures ", + "EXTRA CREDIT", + "Clear grading criteria", + "Caring", + "Participation matters" + ], + "rmp_id": "2621483", + "instructor_id": "jdk200000", + "overall_grade_rating": 4.39, + "total_grade_count": 607, + "course_ratings": { + "OBHR3330": 4.39, + "OBHR3310": 4.39 + } + } + ], + "amin lalani": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1646872", + "quality_rating": 4.1, + "difficulty_rating": 2.2, + "would_take_again": 73, + "original_rmp_format": "Amin Lalani", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 16, + "tags": [ + "Participation matters", + "Gives good feedback", + "Inspirational", + "Caring", + "Accessible outside class" + ], + "rmp_id": "1646872", + "instructor_id": "axl120130", + "overall_grade_rating": 4.26, + "total_grade_count": 99, + "course_ratings": { + "MATH3303": 4.03, + "NATS1142": 4.39, + "NATS1143": 4.7 + } + } + ], + "katherine yu": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2865208", + "quality_rating": 1.6, + "difficulty_rating": 4.6, + "would_take_again": 14, + "original_rmp_format": "Katherine Yu", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 14, + "tags": [ + "Tough grader", + "Lots of homework", + "Get ready to read", + "Participation matters", + "Group projects" + ], + "rmp_id": "2865208", + "instructor_id": "kxy210004", + "overall_grade_rating": 2.78, + "total_grade_count": 156, + "course_ratings": { + "RHET1302": 2.65, + "LIT2331": 3.41 + } + } + ], + "yapeng tian": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2822081", + "quality_rating": 4.8, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "Yapeng Tian", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 13, + "tags": [ + "Group projects", + "Beware of pop quizzes", + "Caring", + "Respected", + "Clear grading criteria" + ], + "rmp_id": "2822081", + "instructor_id": "yxt220013", + "overall_grade_rating": 4.4, + "total_grade_count": 378, + "course_ratings": { + "CS6334": 4.78, + "CS4391": 3.81, + "CS6384": 4.8 + } + } + ], + "arif malik": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2216099", + "quality_rating": 2.7, + "difficulty_rating": 3.8, + "would_take_again": 45, + "original_rmp_format": "Arif Malik", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 11, + "tags": [ + "Test heavy", + "Tough grader", + "Lots of homework", + "Group projects", + "Gives good feedback" + ], + "rmp_id": "2216099", + "instructor_id": "axm154531", + "overall_grade_rating": 3.95, + "total_grade_count": 491, + "course_ratings": { + "MECH3380": 3.44, + "MECH6338": 3.86, + "MECH3351": 3.52, + "MECH6333": 4.61 + } + } + ], + "blake hedgecock": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2232283", + "quality_rating": 4.9, + "difficulty_rating": 3, + "would_take_again": 88, + "original_rmp_format": "Blake Hedgecock", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 8, + "tags": [ + "Hilarious", + "Get ready to read", + "Clear grading criteria", + "Skip class? You won't pass.", + "Test heavy" + ], + "rmp_id": "2232283", + "instructor_id": "bxh132030", + "overall_grade_rating": 3.77, + "total_grade_count": 188, + "course_ratings": { + "FIN6326": 4.93, + "REAL6326": 4.53, + "FIN4321": 3.65, + "REAL4321": 3.48 + } + } + ], + "michele mcneel": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/2853712", + "quality_rating": 3.2, + "difficulty_rating": 4, + "would_take_again": 50, + "original_rmp_format": "Michele McNeel", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 6, + "tags": [ + "Participation matters", + "Tough grader", + "Get ready to read", + "Accessible outside class", + "Group projects" + ], + "rmp_id": "2853712", + "instructor_id": "mem210009", + "overall_grade_rating": 3.79, + "total_grade_count": 283, + "course_ratings": { + "ED3339": 3.93, + "ED3345": 3.74, + "ED4352": 3.68 + } + } + ], + "kianoosh yousefi": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2901229", + "quality_rating": 2.6, + "difficulty_rating": 4.2, + "would_take_again": 40, + "original_rmp_format": "Kianoosh Yousefi", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 5, + "tags": [ + "Lecture heavy", + "Tough grader", + "Lots of homework", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2901229", + "instructor_id": "kxy220011", + "overall_grade_rating": 3.39, + "total_grade_count": 184, + "course_ratings": { + "MECH3315": 3.33, + "MECH6370": 4.06 + } + } + ], + "manuel quevedo lopez": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2640420", + "quality_rating": 2.3, + "difficulty_rating": 3, + "would_take_again": 33, + "original_rmp_format": "Manuel Quevedo-Lopez", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 3, + "tags": ["Graded by few things", "Test heavy"], + "rmp_id": "2640420", + "instructor_id": "mxq071000", + "overall_grade_rating": 4.01, + "total_grade_count": 111, + "course_ratings": { + "MSEN3301": 4.31, + "MECH6341": 4.26, + "MECH3360": 3.86 + } + } + ], + "tinamarie ivey": [ + { + "department": "Theater", + "url": "https://www.ratemyprofessors.com/professor/2969079", + "quality_rating": 4, + "difficulty_rating": 2.5, + "would_take_again": 50, + "original_rmp_format": "Tinamarie Ivey", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 2, + "tags": [ + "Lecture heavy", + "Get ready to read", + "EXTRA CREDIT", + "Lots of homework", + "Hilarious" + ], + "rmp_id": "2969079", + "instructor_id": "txi210000", + "overall_grade_rating": 4.22, + "total_grade_count": 182, + "course_ratings": { + "THEA1310": 4.27, + "FILM2332": 4.04 + } + } + ], + "daniel zale": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/3064168", + "quality_rating": 1, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Daniel Zale", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 1, + "tags": ["Participation matters"], + "rmp_id": "3064168", + "instructor_id": "dxz230002", + "overall_grade_rating": 4.23, + "total_grade_count": 26, + "course_ratings": { + "FIN3365": 4.17, + "REAL4328": 4.33 + } + } + ], + "lanru ai": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/3064561", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Lanru Ai", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 1, + "tags": ["Caring", "Lecture heavy", "Accessible outside class"], + "rmp_id": "3064561", + "instructor_id": "lxa200024", + "overall_grade_rating": 3.99, + "total_grade_count": 38, + "course_ratings": { + "ACCT2301": 3.99 + } + } + ], + "yuly koshevnik": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/871200", + "quality_rating": 3.7, + "difficulty_rating": 2.6, + "would_take_again": 58, + "original_rmp_format": "Yuly Koshevnik", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 167, + "tags": ["EXTRA CREDIT", "Respected", "Inspirational", "Lots of homework", "Hilarious"], + "rmp_id": "871200", + "instructor_id": "yxk055000", + "overall_grade_rating": 3.49, + "total_grade_count": 1467, + "course_ratings": { + "STAT3360": 3.77, + "ACTS6308": 3.75, + "ACTS6306": 4.53, + "STAT4382": 3.54, + "ACTS4308": 3.99, + "STAT4351": 3.31, + "STAT1342": 3.04, + "ACTS6302": 4.72, + "MATH1325": 2.19 + } + } + ], + "kannan ramanathan": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1428341", + "quality_rating": 2.6, + "difficulty_rating": 3.5, + "would_take_again": 35, + "original_rmp_format": "Kannan Ramanathan", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 85, + "tags": [ + "Tough grader", + "Participation matters", + "Test heavy", + "Skip class? You won't pass.", + "Get ready to read" + ], + "rmp_id": "1428341", + "instructor_id": "kxr087000", + "overall_grade_rating": 4.12, + "total_grade_count": 3220, + "course_ratings": { + "OPRE6332": 4.24, + "OPRE4310": 3.5, + "HMGT6321": 3.84, + "OPRE6364": 4.32, + "HMGT6332": 4.09, + "HMGT6335": 3.13, + "OPRE6354": 4.39 + } + } + ], + "sergio cortes": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/836422", + "quality_rating": 3.7, + "difficulty_rating": 3, + "would_take_again": 61, + "original_rmp_format": "Sergio Cortes", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 75, + "tags": [ + "Get ready to read", + "Skip class? You won't pass.", + "Clear grading criteria", + "Tough grader", + "Lecture heavy" + ], + "rmp_id": "836422", + "instructor_id": "scortes", + "overall_grade_rating": 4.09, + "total_grade_count": 2777, + "course_ratings": { + "CHEM2123": 4.69, + "CHEM2330": 5.0, + "CHEM2130": 5.0, + "CHEM2323": 2.64, + "CHEM2125": 4.57, + "CHEM2325": 3.08, + "CHEM1111": 4.29, + "CHEM2233": 4.9 + } + } + ], + "daniel tran": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2292265", + "quality_rating": 3.7, + "difficulty_rating": 3.3, + "would_take_again": 67, + "original_rmp_format": "Daniel Tran", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 60, + "tags": [ + "Graded by few things", + "Test heavy", + "Accessible outside class", + "Lecture heavy", + "Caring" + ], + "rmp_id": "2292265", + "instructor_id": "dnt019000", + "overall_grade_rating": 4.05, + "total_grade_count": 2358, + "course_ratings": { + "CHEM2123": 4.62, + "CHEM2125": 4.2, + "CHEM2323": 3.41, + "CHEM1111": 4.51, + "CHEM2233": 4.84, + "CHEM2325": 4.06 + } + } + ], + "kelly aman": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2436774", + "quality_rating": 4.7, + "difficulty_rating": 3, + "would_take_again": 94, + "original_rmp_format": "Kelly Aman", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 35, + "tags": [ + "Amazing lectures ", + "Lots of homework", + "Respected", + "Accessible outside class", + "Caring" + ], + "rmp_id": "2436774", + "instructor_id": "kxa143530", + "overall_grade_rating": 2.95, + "total_grade_count": 1637, + "course_ratings": { + "MATH2312": 3.04, + "MATH2413": 3.01, + "MATH2414": 2.92, + "MATH1314": 2.18 + } + } + ], + "neha makhijani": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2450130", + "quality_rating": 4.8, + "difficulty_rating": 3.1, + "would_take_again": 100, + "original_rmp_format": "Neha Makhijani", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 32, + "tags": [ + "Amazing lectures ", + "Caring", + "Accessible outside class", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "2450130", + "instructor_id": "nxm165130", + "overall_grade_rating": 3.22, + "total_grade_count": 649, + "course_ratings": { + "ACTS4308": 2.75, + "MATH2418": 3.21, + "ACTS4303": 3.42, + "MATH1325": 3.36, + "ACTS4301": 3.49 + } + } + ], + "mark rosen": [ + { + "department": "Art History", + "url": "https://www.ratemyprofessors.com/professor/1790288", + "quality_rating": 4.1, + "difficulty_rating": 2.6, + "would_take_again": 65, + "original_rmp_format": "Mark Rosen", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 31, + "tags": [ + "Amazing lectures ", + "Lecture heavy", + "Gives good feedback", + "Respected", + "Clear grading criteria" + ], + "rmp_id": "1790288", + "instructor_id": "mxr088000", + "overall_grade_rating": 4.18, + "total_grade_count": 796, + "course_ratings": { + "HUAS6315": 4.72, + "AHST3315": 4.08, + "AHST2331": 4.2, + "AHST3316": 4.35, + "AHST3313": 3.95 + } + } + ], + "robert wright": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1921571", + "quality_rating": 3.1, + "difficulty_rating": 2.4, + "would_take_again": 46, + "original_rmp_format": "Robert Wright", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 31, + "tags": [ + "Group projects", + "Gives good feedback", + "Participation matters", + "Hilarious", + "Respected" + ], + "rmp_id": "1921571", + "instructor_id": "rgw091000", + "overall_grade_rating": 3.92, + "total_grade_count": 1442, + "course_ratings": { + "ENTP3301": 4.0, + "ENTP4340": 3.92, + "ENTP6392": 4.76, + "ENTP4330": 4.2, + "ENTP3320": 3.96, + "IMS4335": 3.86, + "ENTP4320": 4.1 + } + } + ], + "erin smith": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/1506449", + "quality_rating": 3.9, + "difficulty_rating": 3.4, + "would_take_again": 60, + "original_rmp_format": "Erin Smith", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 22, + "tags": [ + "Get ready to read", + "Participation matters", + "Gives good feedback", + "Amazing lectures ", + "Lots of homework" + ], + "rmp_id": "1506449", + "instructor_id": "erins", + "overall_grade_rating": 4.16, + "total_grade_count": 308, + "course_ratings": { + "SOC2300": 3.81, + "GST2300": 4.19, + "AMS2341": 4.4, + "AMS2300": 4.34 + } + } + ], + "runzhou liu": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2730639", + "quality_rating": 1.7, + "difficulty_rating": 3.3, + "would_take_again": 13, + "original_rmp_format": "Runzhou Liu", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 15, + "tags": [ + "Accessible outside class", + "Get ready to read", + "Lots of homework", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "2730639", + "instructor_id": "rxl210013", + "overall_grade_rating": 2.33, + "total_grade_count": 831, + "course_ratings": { + "MATH2413": 2.55, + "MATH2414": 2.24, + "MATH1325": 1.93 + } + } + ], + "qingyu zhu": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2985267", + "quality_rating": 4.5, + "difficulty_rating": 1.7, + "would_take_again": 92, + "original_rmp_format": "Qingyu Zhu", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 13, + "tags": ["Inspirational", "Caring", "Hilarious", "Respected", "Amazing lectures "], + "rmp_id": "2985267", + "instructor_id": "qxz230002", + "overall_grade_rating": 3.34, + "total_grade_count": 314, + "course_ratings": { + "PHYS1302": 3.82, + "PHYS2326": 3.06 + } + } + ], + "tien nguyen": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2397418", + "quality_rating": 1.7, + "difficulty_rating": 2.5, + "would_take_again": 15, + "original_rmp_format": "Tien Nguyen", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 13, + "tags": [ + "Tough grader", + "Group projects", + "Lots of homework", + "Graded by few things", + "Participation matters" + ], + "rmp_id": "2397418", + "instructor_id": "tnn160630", + "overall_grade_rating": 4.67, + "total_grade_count": 219, + "course_ratings": { + "CS3354": 4.5, + "CS6359": 4.77 + } + } + ], + "lindsay moore": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2405880", + "quality_rating": 3.9, + "difficulty_rating": 2.8, + "would_take_again": 67, + "original_rmp_format": "Lindsay Moore", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 9, + "tags": [ + "Tough grader", + "Group projects", + "Gives good feedback", + "Lots of homework", + "Caring" + ], + "rmp_id": "2405880", + "instructor_id": "lem150330", + "overall_grade_rating": 4.05, + "total_grade_count": 189, + "course_ratings": { + "ECS3390": 4.18, + "ECS2390": 3.54 + } + } + ], + "hien nguyen": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3015754", + "quality_rating": 3.2, + "difficulty_rating": 3.2, + "would_take_again": 67, + "original_rmp_format": "Hien Nguyen", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 6, + "tags": ["Lots of homework", "EXTRA CREDIT", "Test heavy", "Tough grader", "Group projects"], + "rmp_id": "3015754", + "instructor_id": "htn170130", + "overall_grade_rating": 4.48, + "total_grade_count": 1358, + "course_ratings": { + "ECON2301": 4.2, + "BUAN6398": 4.58, + "OPRE3333": 4.13 + } + } + ], + "barbara maweu": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/3009036", + "quality_rating": 3.3, + "difficulty_rating": 1.3, + "would_take_again": 67, + "original_rmp_format": "Barbara Maweu", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 3, + "tags": [ + "Group projects", + "Lots of homework", + "Participation matters", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "3009036", + "instructor_id": "bmk101020", + "overall_grade_rating": 4.03, + "total_grade_count": 129, + "course_ratings": { + "CS3354": 4.35, + "CS2336": 2.42 + } + } + ], + "prajakti akarte": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2970539", + "quality_rating": 4.7, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Prajakti Akarte", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 3, + "tags": [ + "Clear grading criteria", + "Caring", + "Lecture heavy", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "2970539", + "instructor_id": "pva150330", + "overall_grade_rating": 4.25, + "total_grade_count": 327, + "course_ratings": { + "ITSS4353": 4.22, + "ITSS4355": 4.29 + } + } + ], + "weichen wong": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1930853", + "quality_rating": 3, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Weichen Wong", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 2, + "tags": ["Participation matters", "Graded by few things", "Accessible outside class"], + "rmp_id": "1930853", + "instructor_id": "wew021000", + "overall_grade_rating": 4.89, + "total_grade_count": 742, + "course_ratings": { + "SE4485": 4.97, + "SE6367": 4.76, + "CS6367": 4.72 + } + } + ], + "joy saunders": [ + { + "department": "Languages", + "url": "https://www.ratemyprofessors.com/professor/3064008", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Joy Saunders", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 1, + "tags": ["Participation matters", "Clear grading criteria", "Caring"], + "rmp_id": "3064008", + "instructor_id": "jxs230049", + "overall_grade_rating": 4.37, + "total_grade_count": 82, + "course_ratings": { + "LIT3330": 4.37, + "SPAN1311": 4.37 + } + } + ], + "peter ingrao": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/1168994", + "quality_rating": 4.3, + "difficulty_rating": 2, + "would_take_again": 81, + "original_rmp_format": "Peter Ingrao", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 157, + "tags": [ + "Get ready to read", + "EXTRA CREDIT", + "Amazing lectures ", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "1168994", + "instructor_id": "jingrao", + "overall_grade_rating": 4.39, + "total_grade_count": 2588, + "course_ratings": { + "HUMA1301": 4.42, + "LIT1301": 4.39, + "LIT2320": 4.58, + "LIT3316": 3.78, + "LIT3339": 4.89, + "LIT3326": 4.66, + "LIT3319": 4.67, + "LIT4329": 4.31, + "LIT3327": 4.21 + } + } + ], + "susan mcelroy": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/870646", + "quality_rating": 3.4, + "difficulty_rating": 2.3, + "would_take_again": 71, + "original_rmp_format": "Susan McElroy", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 84, + "tags": [ + "Caring", + "Hilarious", + "Graded by few things", + "EXTRA CREDIT", + "Accessible outside class" + ], + "rmp_id": "870646", + "instructor_id": "skm028000", + "overall_grade_rating": 4.31, + "total_grade_count": 1808, + "course_ratings": { + "ECON2302": 4.29, + "ECON3337": 4.19, + "ECON3336": 4.62, + "ECON4320": 4.26 + } + } + ], + "mieczyslaw dabkowski": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1197483", + "quality_rating": 4.6, + "difficulty_rating": 3, + "would_take_again": 93, + "original_rmp_format": "Mieczyslaw Dabkowski", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 55, + "tags": [ + "Caring", + "Accessible outside class", + "Lots of homework", + "Amazing lectures ", + "Respected" + ], + "rmp_id": "1197483", + "instructor_id": "mkd034000", + "overall_grade_rating": 3.85, + "total_grade_count": 859, + "course_ratings": { + "MATH4301": 3.7, + "MATH6312": 4.7, + "MATH2420": 4.3, + "MATH2414": 2.33, + "MATH2413": 3.39, + "MATH4302": 3.9, + "MATH2419": 4.39 + } + } + ], + "chris linsteadt": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/772968", + "quality_rating": 3.7, + "difficulty_rating": 3.9, + "would_take_again": 65, + "original_rmp_format": "Chris Linsteadt", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 53, + "tags": [ + "Get ready to read", + "Test heavy", + "Group projects", + "Tough grader", + "Skip class? You won't pass." + ], + "rmp_id": "772968", + "instructor_id": "ccl019000", + "overall_grade_rating": 3.83, + "total_grade_count": 1500, + "course_ratings": { + "ACCT4334": 3.62, + "ACCT6334": 4.12, + "ACCT6292": 4.34 + } + } + ], + "denise boots": [ + { + "department": "Public Policy", + "url": "https://www.ratemyprofessors.com/professor/923634", + "quality_rating": 4.9, + "difficulty_rating": 2.6, + "would_take_again": 100, + "original_rmp_format": "Denise Boots", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 52, + "tags": ["Amazing lectures ", "Caring", "Inspirational", "Respected", "Get ready to read"], + "rmp_id": "923634", + "instructor_id": "dpb062000", + "overall_grade_rating": 4.34, + "total_grade_count": 397, + "course_ratings": { + "CRIM1307": 4.1, + "CRIM6300": 4.79, + "CRIM4396": 4.18, + "PPOL4314": 4.47, + "PPOL4312": 4.61 + } + } + ], + "julie stewart": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2742612", + "quality_rating": 4, + "difficulty_rating": 2.4, + "would_take_again": 72, + "original_rmp_format": "Julie Stewart", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 18, + "tags": [ + "Group projects", + "Tough grader", + "EXTRA CREDIT", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2742612", + "instructor_id": "jxs210043", + "overall_grade_rating": 3.73, + "total_grade_count": 914, + "course_ratings": { + "BCOM1300": 4.06, + "BCOM3300": 3.98, + "BCOM4300": 3.31 + } + } + ], + "john mccaskill": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2033027", + "quality_rating": 4.9, + "difficulty_rating": 1.6, + "would_take_again": 100, + "original_rmp_format": "John McCaskill", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 13, + "tags": ["Group projects", "Caring", "Respected", "Hilarious", "Gives good feedback"], + "rmp_id": "2033027", + "instructor_id": "jrm094020", + "overall_grade_rating": 4.7, + "total_grade_count": 897, + "course_ratings": { + "PA3310": 4.54, + "PA6311": 4.81, + "PA6399": 5.0, + "PSCI3310": 4.64, + "PA3382": 4.82, + "SOC3382": 4.63, + "PA6313": 4.98, + "PA6326": 4.91, + "PA6320": 4.72, + "PA7314": 5.0, + "PA4350": 4.16, + "ECS2361": 4.46 + } + } + ], + "simon fass": [ + { + "department": "Public Policy", + "url": "https://www.ratemyprofessors.com/professor/442353", + "quality_rating": 2.9, + "difficulty_rating": 4.4, + "would_take_again": 12, + "original_rmp_format": "Simon Fass", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 12, + "tags": [ + "Tough grader", + "Group projects", + "Get ready to read", + "Gives good feedback", + "Beware of pop quizzes" + ], + "rmp_id": "442353", + "instructor_id": "fass", + "overall_grade_rating": 3.83, + "total_grade_count": 227, + "course_ratings": { + "PPPE6310": 3.99, + "CRIM6301": 3.86, + "EPPS6346": 4.5, + "GEOG3377": 3.97, + "PA3377": 2.94, + "PSCI4396": 3.53, + "EPPS7304": 4.2, + "IPEC4375": 3.03 + } + } + ], + "albert fung": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2825368", + "quality_rating": 5, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "Albert Fung", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 8, + "tags": [ + "EXTRA CREDIT", + "Caring", + "Respected", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2825368", + "instructor_id": "axf220000", + "overall_grade_rating": 3.68, + "total_grade_count": 389, + "course_ratings": { + "PHYS1302": 3.96, + "PHYS2325": 3.52 + } + } + ], + "suifang guo": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/2927534", + "quality_rating": 4.4, + "difficulty_rating": 1.4, + "would_take_again": 86, + "original_rmp_format": "Suifang Guo", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 7, + "tags": ["EXTRA CREDIT", "Caring", "Lecture heavy", "Test heavy", "Group projects"], + "rmp_id": "2927534", + "instructor_id": "sxg210047", + "overall_grade_rating": 4.7, + "total_grade_count": 120, + "course_ratings": { + "IMS3310": 4.7 + } + } + ], + "candie mckee williams": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2979937", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Candie Mckee-Williams", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 6, + "tags": [ + "Group projects", + "Caring", + "Clear grading criteria", + "Gives good feedback", + "Participation matters" + ], + "rmp_id": "2979937", + "instructor_id": "cdm230002", + "overall_grade_rating": 4.46, + "total_grade_count": 309, + "course_ratings": { + "ECS3390": 4.43, + "COMM1311": 4.4, + "ECS2390": 4.59 + } + } + ], + "andrew nemec": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/3028789", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Andrew Nemec", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 1, + "tags": ["EXTRA CREDIT", "Clear grading criteria", "Caring"], + "rmp_id": "3028789", + "instructor_id": "dal957114", + "overall_grade_rating": 3.55, + "total_grade_count": 64, + "course_ratings": { + "CS3345": 3.54, + "SE3345": 3.64 + } + } + ], + "simbarashe mazambani": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2998186", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Simbarashe Mazambani", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 1, + "tags": ["EXTRA CREDIT", "Caring", "Lecture heavy"], + "rmp_id": "2998186", + "instructor_id": "sxm170074", + "overall_grade_rating": 3.59, + "total_grade_count": 291, + "course_ratings": { + "BIOL3380": 3.53, + "BIOL2112": 3.74, + "BIOL2312": 3.74 + } + } + ], + "negin enayaty ahangar": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2406519", + "quality_rating": 3.7, + "difficulty_rating": 3.2, + "would_take_again": 67, + "original_rmp_format": "Negin Enayaty Ahangar", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 87, + "tags": [ + "Accessible outside class", + "Caring", + "Test heavy", + "Lecture heavy", + "Clear grading criteria" + ], + "rmp_id": "2406519", + "instructor_id": "nxe180001", + "overall_grade_rating": 3.69, + "total_grade_count": 2241, + "course_ratings": { + "OPRE3333": 3.58, + "OPRE3360": 3.91, + "BUAN6359": 4.13, + "OPRE3340": 3.19, + "OPRE6359": 4.06 + } + } + ], + "naser islam": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1948346", + "quality_rating": 2.8, + "difficulty_rating": 3.1, + "would_take_again": 23, + "original_rmp_format": "Naser Islam", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 61, + "tags": [ + "Participation matters", + "Lots of homework", + "Beware of pop quizzes", + "Group projects", + "Hilarious" + ], + "rmp_id": "1948346", + "instructor_id": "nxi110630", + "overall_grade_rating": 4.3, + "total_grade_count": 2385, + "course_ratings": { + "MIS6308": 4.19, + "ITSS3300": 3.74, + "ITSS4330": 3.96, + "MIS6309": 4.35, + "MIS6380": 4.43, + "MIS6371": 4.13, + "ACCT3322": 4.04, + "ACCT6309": 3.92 + } + } + ], + "siham raboune": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2418136", + "quality_rating": 4.2, + "difficulty_rating": 2.9, + "would_take_again": 79, + "original_rmp_format": "Siham Raboune", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 53, + "tags": [ + "Amazing lectures ", + "Caring", + "Accessible outside class", + "Test heavy", + "Gives good feedback" + ], + "rmp_id": "2418136", + "instructor_id": "sxr180071", + "overall_grade_rating": 4.16, + "total_grade_count": 1470, + "course_ratings": { + "NSC3361": 4.16, + "NSC4352": 4.11, + "NSC4353": 4.41, + "NSC4363": 4.18, + "NSC4354": 4.02 + } + } + ], + "travis hadley": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2490787", + "quality_rating": 3.6, + "difficulty_rating": 2.7, + "would_take_again": 62, + "original_rmp_format": "Travis Hadley", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 39, + "tags": [ + "Lecture heavy", + "Clear grading criteria", + "Test heavy", + "Graded by few things", + "Get ready to read" + ], + "rmp_id": "2490787", + "instructor_id": "txh180023", + "overall_grade_rating": 3.73, + "total_grade_count": 934, + "course_ratings": { + "GOVT2305": 3.59, + "GOVT2306": 4.04, + "PSCI4396": 3.01, + "PSCI3301": 2.48 + } + } + ], + "nate howe": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2307578", + "quality_rating": 4.9, + "difficulty_rating": 2.3, + "would_take_again": 97, + "original_rmp_format": "Nate Howe", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 38, + "tags": [ + "Respected", + "Amazing lectures ", + "Accessible outside class", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2307578", + "instructor_id": "nxh141030", + "overall_grade_rating": 4.41, + "total_grade_count": 309, + "course_ratings": { + "ITSS4360": 4.39, + "PSCI6315": 4.63 + } + } + ], + "thiru pandian": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2546304", + "quality_rating": 3.9, + "difficulty_rating": 3.2, + "would_take_again": 74, + "original_rmp_format": "Thiru Pandian", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 31, + "tags": [ + "Accessible outside class", + "Caring", + "Participation matters", + "Group projects", + "EXTRA CREDIT" + ], + "rmp_id": "2546304", + "instructor_id": "txp190010", + "overall_grade_rating": 4.03, + "total_grade_count": 1466, + "course_ratings": { + "ITSS4300": 3.82, + "BUAN6320": 4.2, + "BUAN6356": 4.24, + "ITSS4351": 3.98, + "MIS6356": 3.97, + "MIS6363": 4.5, + "ITSS4354": 3.87, + "MIS6309": 4.17, + "BUAN6340": 4.41 + } + } + ], + "patricia leek": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1012898", + "quality_rating": 2.7, + "difficulty_rating": 2.3, + "would_take_again": 38, + "original_rmp_format": "Patricia Leek", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 27, + "tags": [ + "Lots of homework", + "EXTRA CREDIT", + "Get ready to read", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "1012898", + "instructor_id": "santine", + "overall_grade_rating": 4.44, + "total_grade_count": 725, + "course_ratings": { + "LIT3315": 4.36, + "ED3315": 4.48, + "ED4357": 4.54, + "ED4363": 4.34 + } + } + ], + "caylin blockley": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2636548", + "quality_rating": 4.1, + "difficulty_rating": 3.3, + "would_take_again": 75, + "original_rmp_format": "Caylin Blockley", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 24, + "tags": [ + "Group projects", + "Clear grading criteria", + "Lots of homework", + "Test heavy", + "Accessible outside class" + ], + "rmp_id": "2636548", + "instructor_id": "cxb190014", + "overall_grade_rating": 3.95, + "total_grade_count": 544, + "course_ratings": { + "BCOM3310": 4.66, + "BCOM4350": 4.48, + "BCOM4300": 3.8, + "BCOM1300": 4.08 + } + } + ], + "larry kaplan": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2224410", + "quality_rating": 2.9, + "difficulty_rating": 3.7, + "would_take_again": 52, + "original_rmp_format": "Larry Kaplan", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 23, + "tags": [ + "Tough grader", + "Amazing lectures ", + "Hilarious", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2224410", + "instructor_id": "lsk140130", + "overall_grade_rating": 3.62, + "total_grade_count": 357, + "course_ratings": { + "RMIS4334": 3.62, + "FIN4334": 4.07, + "FIN3370": 3.6, + "FIN4331": 4.17, + "RMIS4331": 3.31, + "RMIS3370": 2.54 + } + } + ], + "mark mckinney": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2630582", + "quality_rating": 3.6, + "difficulty_rating": 2.7, + "would_take_again": 62, + "original_rmp_format": "Mark McKinney", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 16, + "tags": [ + "Group projects", + "Tough grader", + "Participation matters", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "2630582", + "instructor_id": "mxm190029", + "overall_grade_rating": 4.3, + "total_grade_count": 781, + "course_ratings": { + "ATCM3336": 4.22, + "ATCM4364": 4.79, + "ATCM4340": 4.49, + "ATCM4397": 4.72 + } + } + ], + "robert rennaker": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/1584387", + "quality_rating": 4.2, + "difficulty_rating": 2.3, + "would_take_again": 83, + "original_rmp_format": "Robert Rennaker", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 15, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Get ready to read", + "Skip class? You won't pass.", + "Clear grading criteria" + ], + "rmp_id": "1584387", + "instructor_id": "rlr091000", + "overall_grade_rating": 4.59, + "total_grade_count": 331, + "course_ratings": { + "NSC4360": 4.34, + "ACN6323": 4.69, + "HCS7121": 5.0, + "NSC4356": 4.54 + } + } + ], + "monika salter": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2447080", + "quality_rating": 1.9, + "difficulty_rating": 4.4, + "would_take_again": 27, + "original_rmp_format": "Monika Salter", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 15, + "tags": [ + "Tough grader", + "Lots of homework", + "Participation matters", + "Clear grading criteria", + "Graded by few things" + ], + "rmp_id": "2447080", + "instructor_id": "mxs176131", + "overall_grade_rating": 3.86, + "total_grade_count": 2134, + "course_ratings": { + "ATCM2303": 4.17, + "ATCM4395": 4.49, + "ATCM2310": 3.8, + "ATCM3306": 2.94, + "ATCM3312": 3.56, + "ATCM4314": 3.68, + "ATCM4317": 5.0, + "ANGM2310": 3.88, + "ANGM3306": 2.7, + "ANGM3312": 3.75, + "ATCM4319": 3.63, + "HONS3199": 4.6, + "ANGM4317": 5.0, + "ANGM4319": 5.0, + "ANGM6316": 4.46, + "ATCM2305": 3.75, + "ATCM4316": 5.0, + "ATCM4397": 4.67, + "ANGM3320": 3.98, + "ANGM4314": 3.56, + "ANGM4316": 5.0 + } + } + ], + "ryan savard": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/2250493", + "quality_rating": 3.9, + "difficulty_rating": 2.6, + "would_take_again": 85, + "original_rmp_format": "Ryan Savard", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 13, + "tags": [ + "EXTRA CREDIT", + "Clear grading criteria", + "Beware of pop quizzes", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "2250493", + "instructor_id": "rrs170330", + "overall_grade_rating": 3.71, + "total_grade_count": 486, + "course_ratings": { + "HLTH4380": 3.3, + "HLTH4306": 3.8 + } + } + ], + "anne davenport": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2990042", + "quality_rating": 4.9, + "difficulty_rating": 1.4, + "would_take_again": 86, + "original_rmp_format": "Anne Davenport", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 7, + "tags": [ + "Caring", + "Clear grading criteria", + "Gives good feedback", + "Participation matters", + "Hilarious" + ], + "rmp_id": "2990042", + "instructor_id": "axd240011", + "overall_grade_rating": 4.22, + "total_grade_count": 205, + "course_ratings": { + "BIOL2281": 4.06, + "BIOL3203": 4.39, + "BIOL3520": 4.78 + } + } + ], + "renee davis": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/2643639", + "quality_rating": 5, + "difficulty_rating": 1.4, + "would_take_again": 100, + "original_rmp_format": "Renee Davis", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 5, + "tags": [ + "EXTRA CREDIT", + "Caring", + "Amazing lectures ", + "Gives good feedback", + "Participation matters" + ], + "rmp_id": "2643639", + "instructor_id": "rrd160530", + "overall_grade_rating": 4.68, + "total_grade_count": 337, + "course_ratings": { + "ED4351": 4.68 + } + } + ], + "marc lusk": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3000714", + "quality_rating": 5, + "difficulty_rating": 2.4, + "would_take_again": 100, + "original_rmp_format": "Marc Lusk ", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 5, + "tags": [ + "Respected", + "Caring", + "Gives good feedback", + "Inspirational", + "Accessible outside class" + ], + "rmp_id": "3000714", + "instructor_id": "mxl121730", + "overall_grade_rating": 4.66, + "total_grade_count": 298, + "course_ratings": { + "AMS2300": 4.45, + "BIS3320": 4.57, + "BIS1100": 4.97 + } + } + ], + "hanan kuzat": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2324208", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Hanan Kuzat", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 2, + "tags": [ + "Participation matters", + "EXTRA CREDIT", + "Clear grading criteria", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "2324208", + "instructor_id": "hxk165430", + "overall_grade_rating": 2.27, + "total_grade_count": 90, + "course_ratings": { + "MATH1326": 2.27 + } + } + ], + "stephanie taylor": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1847408", + "quality_rating": 4, + "difficulty_rating": 3.2, + "would_take_again": 78, + "original_rmp_format": "Stephanie Taylor", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 136, + "tags": [ + "Caring", + "Accessible outside class", + "Amazing lectures ", + "Test heavy", + "Lots of homework" + ], + "rmp_id": "1847408", + "instructor_id": "smt031000", + "overall_grade_rating": 3.33, + "total_grade_count": 3066, + "course_ratings": { + "CHEM1311": 3.14, + "NATS1101": 4.68, + "NATS2333": 4.78, + "NATS4390": 4.34, + "CHEM1312": 3.2 + } + } + ], + "klyne smith": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2405884", + "quality_rating": 3.8, + "difficulty_rating": 2.5, + "would_take_again": 71, + "original_rmp_format": "Klyne Smith", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 73, + "tags": [ + "Group projects", + "Respected", + "Hilarious", + "Inspirational", + "Accessible outside class" + ], + "rmp_id": "2405884", + "instructor_id": "kxs180052", + "overall_grade_rating": 4.55, + "total_grade_count": 1343, + "course_ratings": { + "CS1200": 4.69, + "CS3162": 4.85, + "SE4381": 4.32, + "CS3354": 4.83, + "SE4351": 4.61, + "SE6388": 4.64 + } + } + ], + "val curry": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2188424", + "quality_rating": 4.6, + "difficulty_rating": 2.6, + "would_take_again": 97, + "original_rmp_format": "Val Curry", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 70, + "tags": [ + "Gives good feedback", + "Participation matters", + "Respected", + "Caring", + "Group projects" + ], + "rmp_id": "2188424", + "instructor_id": "vxc110930", + "overall_grade_rating": 4.5, + "total_grade_count": 146, + "course_ratings": { + "ARTS3375": 4.98, + "ARTS3340": 4.61, + "ARTS3315": 4.63, + "ARTS2380": 4.3, + "ARTS1315": 4.86, + "ARTS2381": 3.56 + } + } + ], + "oziel rios": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1561984", + "quality_rating": 3, + "difficulty_rating": 2.5, + "would_take_again": 40, + "original_rmp_format": "Oziel Rios", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 60, + "tags": [ + "Tough grader", + "Group projects", + "Gives good feedback", + "Graded by few things", + "Skip class? You won't pass." + ], + "rmp_id": "1561984", + "instructor_id": "oxr106020", + "overall_grade_rating": 3.89, + "total_grade_count": 2550, + "course_ratings": { + "MECH3105": 3.93, + "MECH3305": 3.78, + "MECH1100": 4.2, + "MECH2330": 3.12, + "MECH3350": 3.39 + } + } + ], + "steven solcher": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1487528", + "quality_rating": 3.8, + "difficulty_rating": 3, + "would_take_again": 84, + "original_rmp_format": "Steven Solcher", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 40, + "tags": [ + "Get ready to read", + "Clear grading criteria", + "Accessible outside class", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "1487528", + "instructor_id": "sjs107020", + "overall_grade_rating": 4.2, + "total_grade_count": 1509, + "course_ratings": { + "ACCT3350": 3.96, + "ACCT6353": 4.42, + "ACCT6301": 4.71, + "ACCT6193": 4.56, + "ACCT6350": 4.56, + "ACCT3331": 3.24, + "ACCT4336": 3.85, + "ACCT6344": 4.81 + } + } + ], + "kevin short": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2310676", + "quality_rating": 3.9, + "difficulty_rating": 3.5, + "would_take_again": 69, + "original_rmp_format": "Kevin Short", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 35, + "tags": [ + "Gives good feedback", + "Accessible outside class", + "Lecture heavy", + "Skip class? You won't pass.", + "Clear grading criteria" + ], + "rmp_id": "2310676", + "instructor_id": "kps170330", + "overall_grade_rating": 3.89, + "total_grade_count": 1068, + "course_ratings": { + "ITSS3300": 3.83, + "ITSS3312": 3.65, + "MIS6349": 4.44, + "ITSS3311": 3.77 + } + } + ], + "sharmin hanifiafshar": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2847030", + "quality_rating": 1.8, + "difficulty_rating": 3.9, + "would_take_again": 10, + "original_rmp_format": "Sharmin Hanifiafshar", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 20, + "tags": [ + "Lecture heavy", + "Tough grader", + "Test heavy", + "Group projects", + "Get ready to read" + ], + "rmp_id": "2847030", + "instructor_id": "sxh200031", + "overall_grade_rating": 3.66, + "total_grade_count": 535, + "course_ratings": { + "ITSS3300": 3.53, + "ITSS4361": 3.89, + "ITSS4330": 3.77 + } + } + ], + "nathan williams": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2432804", + "quality_rating": 4.7, + "difficulty_rating": 2.6, + "would_take_again": 94, + "original_rmp_format": "Nathan Williams", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 17, + "tags": [ + "Caring", + "Accessible outside class", + "Hilarious", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2432804", + "instructor_id": "nxw170830", + "overall_grade_rating": 4.17, + "total_grade_count": 563, + "course_ratings": { + "MATH2417": 3.05, + "HONS3199": 4.99, + "MATH3315": 4.21, + "MATH6311": 4.55, + "HONS3121": 5.0, + "MATH6312": 4.6, + "MATH2419": 3.8 + } + } + ], + "rachna raman": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/2164852", + "quality_rating": 3.8, + "difficulty_rating": 2.8, + "would_take_again": 62, + "original_rmp_format": "Rachna Raman", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 13, + "tags": [ + "Clear grading criteria", + "Skip class? You won't pass.", + "Lecture heavy", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "2164852", + "instructor_id": "rxr076000", + "overall_grade_rating": 4.0, + "total_grade_count": 489, + "course_ratings": { + "PSY3393": 3.98, + "PSY3392": 3.24, + "PSY4365": 4.33, + "ACN6332": 4.62 + } + } + ], + "mazyar mahan": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/2796005", + "quality_rating": 4.9, + "difficulty_rating": 2.4, + "would_take_again": 100, + "original_rmp_format": "Mazyar Mahan", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 8, + "tags": [ + "Participation matters", + "Clear grading criteria", + "EXTRA CREDIT", + "Group projects", + "Gives good feedback" + ], + "rmp_id": "2796005", + "instructor_id": "mxm200090", + "overall_grade_rating": 4.67, + "total_grade_count": 183, + "course_ratings": { + "FILM1303": 4.56, + "FILM2332": 4.81 + } + } + ], + "randall guttery": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1867543", + "quality_rating": 3.6, + "difficulty_rating": 3.4, + "would_take_again": 57, + "original_rmp_format": "Randall Guttery", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 61, + "tags": [ + "Respected", + "Test heavy", + "Amazing lectures ", + "Get ready to read", + "Lecture heavy" + ], + "rmp_id": "1867543", + "instructor_id": "rxg112530", + "overall_grade_rating": 3.22, + "total_grade_count": 1520, + "course_ratings": { + "FIN3300": 3.5, + "REAL3305": 2.74, + "FIN3305": 3.15, + "REAL6321": 3.95, + "FIN6321": 3.76, + "ENTP6321": 3.86 + } + } + ], + "deborah bonner": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2248224", + "quality_rating": 4.4, + "difficulty_rating": 1.5, + "would_take_again": 85, + "original_rmp_format": "Deborah Bonner", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 34, + "tags": [ + "Clear grading criteria", + "Caring", + "EXTRA CREDIT", + "Accessible outside class", + "Graded by few things" + ], + "rmp_id": "2248224", + "instructor_id": "dbonner", + "overall_grade_rating": 4.48, + "total_grade_count": 1840, + "course_ratings": { + "CLDP3310": 4.28, + "PSY3310": 4.38, + "CLDP3342": 4.69, + "PSY3342": 4.63, + "SPAU3342": 4.83 + } + } + ], + "harpreet singh": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/1626770", + "quality_rating": 4.1, + "difficulty_rating": 2.7, + "would_take_again": 60, + "original_rmp_format": "Harpreet Singh", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 31, + "tags": [ + "Accessible outside class", + "Group projects", + "Inspirational", + "Lots of homework", + "Amazing lectures " + ], + "rmp_id": "1626770", + "instructor_id": "hxs104000", + "overall_grade_rating": 4.21, + "total_grade_count": 680, + "course_ratings": { + "MIS6344": 4.26, + "BUAN6341": 4.26, + "BUAN6342": 4.22, + "BUAN6382": 4.11 + } + } + ], + "mehrdad nourani": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/408789", + "quality_rating": 3.2, + "difficulty_rating": 3.3, + "would_take_again": 58, + "original_rmp_format": "Mehrdad Nourani", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 28, + "tags": [ + "Lots of homework", + "Gives good feedback", + "Respected", + "Lecture heavy", + "Tough grader" + ], + "rmp_id": "408789", + "instructor_id": "nourani", + "overall_grade_rating": 4.04, + "total_grade_count": 300, + "course_ratings": { + "EEDG6301": 4.27, + "CE6303": 4.28, + "EEDG6303": 4.14, + "EE3320": 3.23, + "CE3320": 3.57 + } + } + ], + "dale albrecht": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2847475", + "quality_rating": 5, + "difficulty_rating": 1.6, + "would_take_again": 100, + "original_rmp_format": "Dale Albrecht", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 25, + "tags": [ + "Amazing lectures ", + "Participation matters", + "EXTRA CREDIT", + "Respected", + "Clear grading criteria" + ], + "rmp_id": "2847475", + "instructor_id": "dja180003", + "overall_grade_rating": 4.4, + "total_grade_count": 957, + "course_ratings": { + "OBHR3330": 4.37, + "OBHR4331": 4.63, + "OBHR4333": 4.35, + "OBHR4339": 4.67 + } + } + ], + "lauren brazeal garza": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2648759", + "quality_rating": 4.9, + "difficulty_rating": 1.8, + "would_take_again": 94, + "original_rmp_format": "Lauren Brazeal Garza", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 16, + "tags": [ + "Caring", + "EXTRA CREDIT", + "Clear grading criteria", + "Gives good feedback", + "Amazing lectures " + ], + "rmp_id": "2648759", + "instructor_id": "lxb190011", + "overall_grade_rating": 4.0, + "total_grade_count": 129, + "course_ratings": { + "CRWT2301": 3.96, + "LIT2331": 3.94, + "RHET1302": 4.14 + } + } + ], + "atanu lahiri": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2174609", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 94, + "original_rmp_format": "Atanu Lahiri", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 16, + "tags": [ + "Accessible outside class", + "Amazing lectures ", + "Get ready to read", + "Gives good feedback", + "Clear grading criteria" + ], + "rmp_id": "2174609", + "instructor_id": "axl144730", + "overall_grade_rating": 4.48, + "total_grade_count": 754, + "course_ratings": { + "MIS6330": 4.48, + "MIS6309": 4.5, + "ACCT6313": 4.38 + } + } + ], + "danielle fearon": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2837950", + "quality_rating": 3.6, + "difficulty_rating": 1.8, + "would_take_again": 80, + "original_rmp_format": "Danielle Fearon", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 10, + "tags": [ + "Clear grading criteria", + "Tough grader", + "Participation matters", + "Group projects", + "Gives good feedback" + ], + "rmp_id": "2837950", + "instructor_id": "dxf220005", + "overall_grade_rating": 4.44, + "total_grade_count": 834, + "course_ratings": { + "ACN6312": 4.43, + "PSY2317": 4.45, + "PSY3393": 4.47, + "PSYC6312": 4.93, + "ACN5312": 4.03, + "ACN6313": 4.41, + "PSYC6313": 4.79 + } + } + ], + "dohyeong kim": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2256688", + "quality_rating": 3.4, + "difficulty_rating": 3.9, + "would_take_again": 71, + "original_rmp_format": "Dohyeong Kim", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 7, + "tags": [ + "Clear grading criteria", + "Gives good feedback", + "Caring", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2256688", + "instructor_id": "dxk132530", + "overall_grade_rating": 4.44, + "total_grade_count": 376, + "course_ratings": { + "EPPS7313": 3.98, + "GISC4384": 4.52, + "IPEC4384": 4.33, + "SOC4385": 4.82, + "GEOG3357": 4.58, + "PPPE6321": 4.22 + } + } + ], + "botir kobilov": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/3037209", + "quality_rating": 4.8, + "difficulty_rating": 2.4, + "would_take_again": 100, + "original_rmp_format": "Botir Kobilov", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 5, + "tags": [ + "Clear grading criteria", + "Respected", + "Accessible outside class", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "3037209", + "instructor_id": "bxk240018", + "overall_grade_rating": 3.48, + "total_grade_count": 107, + "course_ratings": { + "ACCT2301": 3.48 + } + } + ], + "yu xiang": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2810336", + "quality_rating": 3.7, + "difficulty_rating": 3.3, + "would_take_again": 33, + "original_rmp_format": "Yu Xiang", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 3, + "tags": [ + "Group projects", + "Clear grading criteria", + "Get ready to read", + "Beware of pop quizzes", + "Lecture heavy" + ], + "rmp_id": "2810336", + "instructor_id": "yxx210005", + "overall_grade_rating": 4.36, + "total_grade_count": 308, + "course_ratings": { + "CS6301": 4.59, + "CS6384": 4.92, + "CS4391": 3.34 + } + } + ], + "pushpa kumar": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1711969", + "quality_rating": 4.2, + "difficulty_rating": 2.4, + "would_take_again": 84, + "original_rmp_format": "Pushpa Kumar", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 80, + "tags": ["Group projects", "Caring", "Clear grading criteria", "Respected", "EXTRA CREDIT"], + "rmp_id": "1711969", + "instructor_id": "pkumar", + "overall_grade_rating": 4.08, + "total_grade_count": 1653, + "course_ratings": { + "SE4352": 4.22, + "CS4361": 4.0, + "SE3306": 3.57, + "CS3305": 3.94, + "CS4347": 4.1, + "SE4347": 4.01, + "CS6366": 4.5, + "CGS4352": 4.29, + "CS4352": 4.48 + } + } + ], + "irina martynova": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2091287", + "quality_rating": 3.1, + "difficulty_rating": 3.4, + "would_take_again": 48, + "original_rmp_format": "Irina Martynova", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 66, + "tags": [ + "Lots of homework", + "Lecture heavy", + "Caring", + "Tough grader", + "Clear grading criteria" + ], + "rmp_id": "2091287", + "instructor_id": "ixm140930", + "overall_grade_rating": 2.94, + "total_grade_count": 1345, + "course_ratings": { + "MATH2413": 2.91, + "MATH2312": 2.98, + "MATH2333": 2.45, + "MATH1316": 2.71, + "MATH2415": 2.86, + "MATH2417": 2.71 + } + } + ], + "meridith grant": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/1675368", + "quality_rating": 4.5, + "difficulty_rating": 2.6, + "would_take_again": 86, + "original_rmp_format": "Meridith Grant", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 51, + "tags": [ + "Caring", + "Clear grading criteria", + "Skip class? You won't pass.", + "Amazing lectures ", + "Respected" + ], + "rmp_id": "1675368", + "instructor_id": "mga061000", + "overall_grade_rating": 4.33, + "total_grade_count": 1970, + "course_ratings": { + "PSY3392": 4.41, + "PSY3362": 4.01, + "CLDP3362": 3.87, + "CLDP3394": 4.3, + "HDCD6320": 4.81 + } + } + ], + "whitney stewart": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/2131015", + "quality_rating": 3.9, + "difficulty_rating": 2.9, + "would_take_again": 66, + "original_rmp_format": "Whitney Stewart", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 48, + "tags": [ + "Amazing lectures ", + "Group projects", + "EXTRA CREDIT", + "Get ready to read", + "Respected" + ], + "rmp_id": "2131015", + "instructor_id": "wxs160630", + "overall_grade_rating": 4.29, + "total_grade_count": 1543, + "course_ratings": { + "HIST1301": 3.79, + "HIST2301": 4.16, + "HIST6302": 4.58, + "HIST6330": 4.04, + "HIST6390": 4.49, + "HIST1302": 4.56, + "HIST4366": 3.77, + "HIST3340": 4.23 + } + } + ], + "janet johnson": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1781703", + "quality_rating": 3.7, + "difficulty_rating": 2.5, + "would_take_again": 67, + "original_rmp_format": "Janet Johnson", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 29, + "tags": [ + "Group projects", + "So many papers", + "Tough grader", + "Participation matters", + "Gives good feedback" + ], + "rmp_id": "1781703", + "instructor_id": "jlj065000", + "overall_grade_rating": 4.43, + "total_grade_count": 742, + "course_ratings": { + "ECS3390": 4.55, + "ATCM4384": 4.1, + "COMM3342": 4.1, + "ECS2390": 4.56, + "COMM3352": 4.45 + } + } + ], + "erika orrick": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/1882380", + "quality_rating": 2.6, + "difficulty_rating": 1.4, + "would_take_again": 44, + "original_rmp_format": "Erika Orrick", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 19, + "tags": [ + "Graded by few things", + "Group projects", + "EXTRA CREDIT", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "1882380", + "instructor_id": "edo042000", + "overall_grade_rating": 4.78, + "total_grade_count": 829, + "course_ratings": { + "ACN6341": 4.79, + "CS4352": 4.74, + "CGS4352": 4.78, + "CGS4353": 4.6, + "ACN6342": 4.81, + "CS4353": 4.91, + "ACN6344": 5.0 + } + } + ], + "melissa johnson": [ + { + "department": "Fine Arts", + "url": "https://www.ratemyprofessors.com/professor/2059073", + "quality_rating": 4.5, + "difficulty_rating": 1.6, + "would_take_again": 100, + "original_rmp_format": "Melissa Johnson", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 11, + "tags": [ + "Participation matters", + "Hilarious", + "Amazing lectures ", + "Group projects", + "Gives good feedback" + ], + "rmp_id": "2059073", + "instructor_id": "maj140430", + "overall_grade_rating": 4.47, + "total_grade_count": 720, + "course_ratings": { + "DANC1310": 4.48, + "DANC2332": 4.52, + "DANC2321": 4.51, + "DANC1305": 4.48, + "DANC2333": 4.75, + "DANC2334": 3.87, + "DANC3340": 3.56 + } + } + ], + "radhakrishna pai": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/3034459", + "quality_rating": 2.3, + "difficulty_rating": 2.7, + "would_take_again": 67, + "original_rmp_format": "Radhakrishna Pai", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 3, + "tags": [ + "Lecture heavy", + "Tough grader", + "Participation matters", + "Beware of pop quizzes", + "Accessible outside class" + ], + "rmp_id": "3034459", + "instructor_id": "dal430092", + "overall_grade_rating": 3.87, + "total_grade_count": 130, + "course_ratings": { + "ITSS3300": 3.87 + } + } + ], + "timothy stephens": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2308965", + "quality_rating": 4.1, + "difficulty_rating": 2.6, + "would_take_again": 76, + "original_rmp_format": "Timothy Stephens", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 45, + "tags": [ + "Beware of pop quizzes", + "Gives good feedback", + "Caring", + "Respected", + "Lecture heavy" + ], + "rmp_id": "2308965", + "instructor_id": "tgs170130", + "overall_grade_rating": 4.48, + "total_grade_count": 1535, + "course_ratings": { + "OPRE3333": 4.36, + "HMGT6325": 4.88, + "HMGT6327": 4.88, + "ITSS3300": 4.3, + "MIS6308": 4.89, + "ITSS4380": 4.68, + "ITSS4330": 4.24, + "ITSS4351": 4.54, + "OPRE6325": 4.42 + } + } + ], + "golden kumar": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2494035", + "quality_rating": 3.8, + "difficulty_rating": 3.5, + "would_take_again": 67, + "original_rmp_format": "Golden Kumar", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 12, + "tags": ["Caring", "Test heavy", "Get ready to read", "Tough grader", "Amazing lectures "], + "rmp_id": "2494035", + "instructor_id": "gxk180010", + "overall_grade_rating": 3.46, + "total_grade_count": 370, + "course_ratings": { + "MECH3360": 3.76, + "MECH6341": 3.6, + "MECH2310": 2.77, + "MECH3351": 3.54, + "MECH2320": 4.0 + } + } + ], + "kimberly horner": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2908940", + "quality_rating": 4.8, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Kimberly Horner", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 4, + "tags": [ + "Caring", + "Inspirational", + "Participation matters", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2908940", + "instructor_id": "kdh024000", + "overall_grade_rating": 3.92, + "total_grade_count": 129, + "course_ratings": { + "BCOM3300": 3.92 + } + } + ], + "satish more": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3033539", + "quality_rating": 5, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Satish More", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 3, + "tags": ["Amazing lectures ", "Hilarious", "Caring", "Lecture heavy", "Test heavy"], + "rmp_id": "3033539", + "instructor_id": "spm240001", + "overall_grade_rating": 3.91, + "total_grade_count": 130, + "course_ratings": { + "ITSS4360": 3.91 + } + } + ], + "christopher edwards": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/3051498", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Christopher Edwards", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 2, + "tags": ["Accessible outside class"], + "rmp_id": "3051498", + "instructor_id": "cwe011000", + "overall_grade_rating": 4.56, + "total_grade_count": 587, + "course_ratings": { + "BIS3190": 4.46, + "MAIS5321": 4.94, + "BIS2190": 4.43, + "HLTH4380": 4.71, + "HLTH4310": 4.72 + } + } + ], + "carlos martinez": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2318155", + "quality_rating": 3.5, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Carlos Martinez", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 2, + "tags": [ + "Get ready to read", + "Participation matters", + "Skip class? You won't pass.", + "Group projects", + "Tests? Not many" + ], + "rmp_id": "2318155", + "instructor_id": "cxm173630", + "overall_grade_rating": 3.68, + "total_grade_count": 147, + "course_ratings": { + "ITSS3300": 3.68 + } + } + ], + "lari tanner": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2004088", + "quality_rating": 4.9, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Lari Tanner", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 20, + "tags": [ + "EXTRA CREDIT", + "Caring", + "Group projects", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2004088", + "instructor_id": "ljt130130", + "overall_grade_rating": 4.58, + "total_grade_count": 549, + "course_ratings": { + "COMM1311": 4.58 + } + } + ], + "stanimir markov": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1428599", + "quality_rating": 3.8, + "difficulty_rating": 3.4, + "would_take_again": 67, + "original_rmp_format": "Stanimir Markov", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 18, + "tags": [ + "Caring", + "Lecture heavy", + "Clear grading criteria", + "Get ready to read", + "Test heavy" + ], + "rmp_id": "1428599", + "instructor_id": "sxm079200", + "overall_grade_rating": 4.46, + "total_grade_count": 267, + "course_ratings": { + "ACCT4302": 4.46 + } + } + ], + "xiaojia zhang": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2836227", + "quality_rating": 2.4, + "difficulty_rating": 3.1, + "would_take_again": 40, + "original_rmp_format": "Xiaojia Zhang", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 10, + "tags": [ + "EXTRA CREDIT", + "Get ready to read", + "Lecture heavy", + "Test heavy", + "Accessible outside class" + ], + "rmp_id": "2836227", + "instructor_id": "xxz220011", + "overall_grade_rating": 3.56, + "total_grade_count": 319, + "course_ratings": { + "PHYS5322": 4.13, + "PHYS2325": 3.52 + } + } + ], + "rawan alghofaili": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2962656", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 80, + "original_rmp_format": "Rawan Alghofaili", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 5, + "tags": [ + "Group projects", + "Clear grading criteria", + "Participation matters", + "Gives good feedback", + "Accessible outside class" + ], + "rmp_id": "2962656", + "instructor_id": "rxa230065", + "overall_grade_rating": 4.51, + "total_grade_count": 154, + "course_ratings": { + "CS6326": 4.74, + "CS4301": 3.54 + } + } + ], + "kimia penton": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2958846", + "quality_rating": 4.3, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Kimia Penton", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 3, + "tags": [ + "Group projects", + "Tough grader", + "Participation matters", + "Amazing lectures ", + "Inspirational" + ], + "rmp_id": "2958846", + "instructor_id": "kpenton", + "overall_grade_rating": 4.72, + "total_grade_count": 152, + "course_ratings": { + "BPS4395": 4.72 + } + } + ], + "edward meda": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2012693", + "quality_rating": 4.7, + "difficulty_rating": 2.1, + "would_take_again": 95, + "original_rmp_format": "Edward Meda", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 89, + "tags": [ + "Respected", + "Clear grading criteria", + "Amazing lectures ", + "EXTRA CREDIT", + "Inspirational" + ], + "rmp_id": "2012693", + "instructor_id": "exm150330", + "overall_grade_rating": 4.12, + "total_grade_count": 2847, + "course_ratings": { + "OBHR3310": 3.99, + "MKT3300": 3.9, + "OBHR4335": 4.17, + "OBHR3330": 4.2, + "OBHR4354": 4.51 + } + } + ], + "oleg makarenkov": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1849129", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 94, + "original_rmp_format": "Oleg Makarenkov", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 79, + "tags": ["Accessible outside class", "Caring", "Hilarious", "Respected", "Amazing lectures "], + "rmp_id": "1849129", + "instructor_id": "oxm130230", + "overall_grade_rating": 3.38, + "total_grade_count": 720, + "course_ratings": { + "MATH2420": 3.34, + "MATH2417": 3.08, + "MATH5301": 4.05, + "MATH2415": 3.88 + } + } + ], + "mohammad saquib": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/452842", + "quality_rating": 4.3, + "difficulty_rating": 3.2, + "would_take_again": 81, + "original_rmp_format": "Mohammad Saquib", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 43, + "tags": ["Respected", "Caring", "Test heavy", "Hilarious", "Participation matters"], + "rmp_id": "452842", + "instructor_id": "saquib", + "overall_grade_rating": 4.08, + "total_grade_count": 582, + "course_ratings": { + "EE4365": 4.35, + "ENGR3341": 3.94 + } + } + ], + "gasan elkhodari": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2490181", + "quality_rating": 4.6, + "difficulty_rating": 2.4, + "would_take_again": 88, + "original_rmp_format": "Gasan Elkhodari", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 24, + "tags": [ + "Respected", + "Accessible outside class", + "Caring", + "Amazing lectures ", + "Group projects" + ], + "rmp_id": "2490181", + "instructor_id": "gxe051000", + "overall_grade_rating": 4.85, + "total_grade_count": 495, + "course_ratings": { + "BUAN6346": 4.93, + "MIS6346": 4.93, + "BUAN6320": 4.68, + "MIS6363": 4.71 + } + } + ], + "ashley barnes": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/2193442", + "quality_rating": 4, + "difficulty_rating": 3.5, + "would_take_again": 73, + "original_rmp_format": "Ashley Barnes", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 22, + "tags": [ + "Get ready to read", + "Participation matters", + "Gives good feedback", + "Tough grader", + "Lots of homework" + ], + "rmp_id": "2193442", + "instructor_id": "axb162631", + "overall_grade_rating": 4.03, + "total_grade_count": 181, + "course_ratings": { + "ARHM3342": 3.83, + "LIT2350": 3.58, + "LIT6350": 4.89, + "LIT3319": 4.02, + "LIT6309": 4.52, + "LIT4390": 4.21, + "LIT6304": 4.88, + "LIT3324": 4.3, + "LIT3339": 3.4 + } + } + ], + "cuili qian": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/2474662", + "quality_rating": 3.2, + "difficulty_rating": 2.5, + "would_take_again": 52, + "original_rmp_format": "Cuili Qian", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 21, + "tags": [ + "Group projects", + "Participation matters", + "Get ready to read", + "Caring", + "Lecture heavy" + ], + "rmp_id": "2474662", + "instructor_id": "cxq170330", + "overall_grade_rating": 4.16, + "total_grade_count": 286, + "course_ratings": { + "IMS3310": 4.11, + "BPS6379": 4.61, + "OB7306": 4.72 + } + } + ], + "james hogan": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1717923", + "quality_rating": 4.1, + "difficulty_rating": 2, + "would_take_again": 74, + "original_rmp_format": "James Hogan", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 21, + "tags": [ + "Beware of pop quizzes", + "Clear grading criteria", + "Caring", + "Respected", + "Lecture heavy" + ], + "rmp_id": "1717923", + "instructor_id": "jwh085000", + "overall_grade_rating": 3.98, + "total_grade_count": 601, + "course_ratings": { + "OPRE3310": 3.98 + } + } + ], + "steven haynes": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2621969", + "quality_rating": 4.3, + "difficulty_rating": 2.2, + "would_take_again": 83, + "original_rmp_format": "Steven Haynes", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 18, + "tags": ["Amazing lectures ", "Hilarious", "Inspirational", "Caring", "Respected"], + "rmp_id": "2621969", + "instructor_id": "sxh102420", + "overall_grade_rating": 4.23, + "total_grade_count": 1120, + "course_ratings": { + "FIN3370": 4.2, + "FIN4331": 4.29, + "FIN4333": 4.22, + "RMIS3370": 3.94, + "RMIS4331": 3.94, + "FIN3330": 4.3, + "RMIS4333": 4.11, + "FIN6362": 4.57, + "FIN4351": 4.28, + "RMIS4332": 3.95, + "FIN4332": 4.37, + "FIN4338": 4.5, + "RMIS4338": 4.08, + "FIN4336": 4.73, + "FIN4354": 4.69 + } + } + ], + "lawrence overzet": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/203149", + "quality_rating": 4.2, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Lawrence Overzet", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 10, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Gives good feedback", + "Lots of homework", + "Caring" + ], + "rmp_id": "203149", + "instructor_id": "overzet", + "overall_grade_rating": 3.89, + "total_grade_count": 302, + "course_ratings": { + "EE4391": 3.7, + "EE3202": 4.36, + "CE3202": 4.13, + "EE3310": 3.04 + } + } + ], + "nomi stone": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2684047", + "quality_rating": 4.4, + "difficulty_rating": 3.2, + "would_take_again": 78, + "original_rmp_format": "Nomi Stone", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 9, + "tags": [ + "Caring", + "Participation matters", + "Gives good feedback", + "Get ready to read", + "Amazing lectures " + ], + "rmp_id": "2684047", + "instructor_id": "nxs190033", + "overall_grade_rating": 4.5, + "total_grade_count": 42, + "course_ratings": { + "LIT6320": 4.64, + "LIT3337": 4.31 + } + } + ], + "barbara lee": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2068340", + "quality_rating": 4.8, + "difficulty_rating": 1.9, + "would_take_again": 83, + "original_rmp_format": "Barbara Lee", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 8, + "tags": [ + "Group projects", + "Caring", + "Amazing lectures ", + "Participation matters", + "Get ready to read" + ], + "rmp_id": "2068340", + "instructor_id": "bxl152330", + "overall_grade_rating": 4.04, + "total_grade_count": 122, + "course_ratings": { + "OBHR3310": 4.04 + } + } + ], + "andrew frazelle": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2541918", + "quality_rating": 4, + "difficulty_rating": 4.2, + "would_take_again": 67, + "original_rmp_format": "Andrew Frazelle", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 6, + "tags": [ + "Lots of homework", + "Tough grader", + "Skip class? You won't pass.", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "2541918", + "instructor_id": "aef180002", + "overall_grade_rating": 3.77, + "total_grade_count": 236, + "course_ratings": { + "OPRE4330": 3.33, + "OPRE6370": 4.13 + } + } + ], + "manuel martinez": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/2843979", + "quality_rating": 1.8, + "difficulty_rating": 1.8, + "would_take_again": 0, + "original_rmp_format": "Manuel Martinez", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 6, + "tags": [ + "Graded by few things", + "Lecture heavy", + "Get ready to read", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2843979", + "instructor_id": "mlm160630", + "overall_grade_rating": 4.73, + "total_grade_count": 271, + "course_ratings": { + "HUAS6381": 5.0, + "CRWT4307": 4.72, + "CRWT3306": 4.82, + "LIT6321": 5.0, + "LIT2329": 3.87, + "CRWT3307": 4.95, + "HONS3199": 5.0, + "HUAS7349": 4.93, + "LIT6325": 4.65 + } + } + ], + "maureen okwulogu": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/3033770", + "quality_rating": 1.5, + "difficulty_rating": 3.3, + "would_take_again": 0, + "original_rmp_format": "Maureen Okwulogu", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 4, + "tags": ["Participation matters", "Group projects", "Get ready to read", "Lecture heavy"], + "rmp_id": "3033770", + "instructor_id": "mxo190005", + "overall_grade_rating": 4.38, + "total_grade_count": 37, + "course_ratings": { + "FILM1303": 4.38 + } + } + ], + "erin kelley": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2100808", + "quality_rating": 5, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Erin Kelley", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 4, + "tags": [ + "Participation matters", + "Caring", + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2100808", + "instructor_id": "elk031000", + "overall_grade_rating": 4.55, + "total_grade_count": 12, + "course_ratings": { + "RHET4320": 4.55 + } + } + ], + "conrad capili": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/3058018", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Conrad Capili", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Gives good feedback", "Caring"], + "rmp_id": "3058018", + "instructor_id": "crc030100", + "overall_grade_rating": 5.0, + "total_grade_count": 11, + "course_ratings": { + "HDCD6395": 5.0 + } + } + ], + "yingdong mao": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2801166", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Yingdong Mao", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 1, + "tags": ["Participation matters", "Amazing lectures ", "Respected"], + "rmp_id": "2801166", + "instructor_id": "yxm180001", + "overall_grade_rating": 3.9, + "total_grade_count": 106, + "course_ratings": { + "FIN3320": 3.98, + "FIN3360": 3.8 + } + } + ], + "janece glauser": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1943309", + "quality_rating": 2.4, + "difficulty_rating": 3.3, + "would_take_again": 26, + "original_rmp_format": "Janece Glauser", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 63, + "tags": [ + "Lots of homework", + "Group projects", + "So many papers", + "Tough grader", + "Skip class? You won't pass." + ], + "rmp_id": "1943309", + "instructor_id": "jbg130030", + "overall_grade_rating": 4.14, + "total_grade_count": 877, + "course_ratings": { + "ECS3390": 4.15, + "COMM2317": 2.52, + "COMM2310": 3.35, + "ECS2390": 4.62, + "RHET2302": 3.95 + } + } + ], + "veronica de los santos": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2288694", + "quality_rating": 3.6, + "difficulty_rating": 2.5, + "would_take_again": 62, + "original_rmp_format": "Veronica de los Santos", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 32, + "tags": [ + "Group projects", + "Lots of homework", + "Caring", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2288694", + "instructor_id": "vxd171930", + "overall_grade_rating": 4.29, + "total_grade_count": 644, + "course_ratings": { + "BCOM4350": 4.73, + "BCOM3100": 3.85, + "BCOM3300": 3.77, + "BCOM1300": 4.16, + "HMGT3100": 4.88, + "BCOM4300": 3.61 + } + } + ], + "kristin riley": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2251804", + "quality_rating": 4.4, + "difficulty_rating": 2.6, + "would_take_again": 83, + "original_rmp_format": "Kristin Riley", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 29, + "tags": [ + "Gives good feedback", + "Participation matters", + "Caring", + "Skip class? You won't pass.", + "Accessible outside class" + ], + "rmp_id": "2251804", + "instructor_id": "knr091000", + "overall_grade_rating": 4.26, + "total_grade_count": 529, + "course_ratings": { + "RHET1302": 4.24, + "LIT3339": 4.31, + "LIT3337": 4.57, + "RHET2302": 4.07, + "LIT3300": 4.58, + "LIT3319": 4.45 + } + } + ], + "christina montgomery": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2580573", + "quality_rating": 4.8, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Christina Montgomery", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 22, + "tags": [ + "Gives good feedback", + "Caring", + "Respected", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2580573", + "instructor_id": "cxm190022", + "overall_grade_rating": 4.49, + "total_grade_count": 671, + "course_ratings": { + "ECS3390": 4.61, + "RHET1302": 4.31, + "RHET2302": 4.28, + "ECS2390": 4.81 + } + } + ], + "seth giertz": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2316566", + "quality_rating": 3.5, + "difficulty_rating": 3.3, + "would_take_again": 58, + "original_rmp_format": "Seth Giertz", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 12, + "tags": [ + "Clear grading criteria", + "EXTRA CREDIT", + "Respected", + "Lecture heavy", + "Gives good feedback" + ], + "rmp_id": "2316566", + "instructor_id": "sxg154831", + "overall_grade_rating": 3.89, + "total_grade_count": 398, + "course_ratings": { + "ECON4320": 3.97, + "ECON4302": 3.73, + "ECON4330": 3.89 + } + } + ], + "irina panovska": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2588185", + "quality_rating": 4.8, + "difficulty_rating": 2.4, + "would_take_again": 100, + "original_rmp_format": "Irina Panovska", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 10, + "tags": [ + "Caring", + "Clear grading criteria", + "Accessible outside class", + "Participation matters", + "Amazing lectures " + ], + "rmp_id": "2588185", + "instructor_id": "ixp190001", + "overall_grade_rating": 4.66, + "total_grade_count": 251, + "course_ratings": { + "ECON6302": 4.47, + "ECON4386": 4.7, + "ECON4385": 4.83, + "ECON3311": 4.28, + "ECON5397": 4.97 + } + } + ], + "sivaram cheruvu": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2733471", + "quality_rating": 5, + "difficulty_rating": 2.2, + "would_take_again": 100, + "original_rmp_format": "Sivaram Cheruvu", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 9, + "tags": [ + "Amazing lectures ", + "Participation matters", + "Get ready to read", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "2733471", + "instructor_id": "sxc210048", + "overall_grade_rating": 4.26, + "total_grade_count": 310, + "course_ratings": { + "PSCI4363": 3.83, + "PSCI6321": 4.71, + "PSCI3351": 3.87, + "PSCI4309": 4.27, + "PSCI6337": 4.79, + "PSCI3350": 4.51, + "PSCI6342": 4.87 + } + } + ], + "shaghayegh ashouri": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/3049965", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Shaghayegh Ashouri", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 7, + "tags": [ + "Gives good feedback", + "Caring", + "Clear grading criteria", + "Inspirational", + "Hilarious" + ], + "rmp_id": "3049965", + "instructor_id": "sxa210030", + "overall_grade_rating": 4.06, + "total_grade_count": 100, + "course_ratings": { + "ATCM2302": 4.06 + } + } + ], + "paul cheung": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2845413", + "quality_rating": 2.3, + "difficulty_rating": 3.7, + "would_take_again": 33, + "original_rmp_format": "Paul Cheung", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 6, + "tags": ["Lots of homework", "Test heavy", "Participation matters", "Gives good feedback"], + "rmp_id": "2845413", + "instructor_id": "phc220001", + "overall_grade_rating": 3.99, + "total_grade_count": 61, + "course_ratings": { + "BA1310": 3.95, + "MECO6345": 4.17 + } + } + ], + "curtis bram": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/3011637", + "quality_rating": 3.6, + "difficulty_rating": 2.8, + "would_take_again": 60, + "original_rmp_format": "Curtis Bram", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 5, + "tags": [ + "Get ready to read", + "Gives good feedback", + "Caring", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "3011637", + "instructor_id": "cxb230007", + "overall_grade_rating": 4.28, + "total_grade_count": 142, + "course_ratings": { + "EPPS7386": 4.78, + "PSCI4319": 4.35, + "PSCI3333": 4.1 + } + } + ], + "en li": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/3028379", + "quality_rating": 3.7, + "difficulty_rating": 3, + "would_take_again": 67, + "original_rmp_format": "En Li", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 3, + "tags": ["Get ready to read", "Group projects", "Amazing lectures ", "Caring", "Test heavy"], + "rmp_id": "3028379", + "instructor_id": "exl230012", + "overall_grade_rating": 3.78, + "total_grade_count": 136, + "course_ratings": { + "HIST2341": 3.64, + "HIST4358": 3.57, + "HIST3350": 4.2 + } + } + ], + "muhammad ahmad": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2972280", + "quality_rating": 2.7, + "difficulty_rating": 3, + "would_take_again": 33, + "original_rmp_format": "Muhammad Ahmad", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 3, + "tags": [ + "Participation matters", + "So many papers", + "Get ready to read", + "Caring", + "Graded by few things" + ], + "rmp_id": "2972280", + "instructor_id": "mxa210077", + "overall_grade_rating": 3.77, + "total_grade_count": 88, + "course_ratings": { + "RHET1302": 3.77 + } + } + ], + "tristan whalen": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2058619", + "quality_rating": 4.3, + "difficulty_rating": 3, + "would_take_again": 79, + "original_rmp_format": "Tristan Whalen", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 147, + "tags": ["Amazing lectures ", "Hilarious", "Respected", "Caring", "Clear grading criteria"], + "rmp_id": "2058619", + "instructor_id": "tgw100020", + "overall_grade_rating": 3.75, + "total_grade_count": 3118, + "course_ratings": { + "SE3341": 2.89, + "CS3341": 3.56, + "BUAN6359": 3.99, + "OPRE3360": 3.65, + "OPRE6359": 4.12, + "OPRE3340": 3.48, + "OPRE3333": 3.64, + "MATH2306": 3.13, + "BUAN6398": 4.68, + "STAT2332": 3.92 + } + } + ], + "tooraj nikoubin": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2526472", + "quality_rating": 2.7, + "difficulty_rating": 3.7, + "would_take_again": 43, + "original_rmp_format": "Tooraj Nikoubin", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 37, + "tags": [ + "Lots of homework", + "EXTRA CREDIT", + "Lecture heavy", + "Beware of pop quizzes", + "Caring" + ], + "rmp_id": "2526472", + "instructor_id": "txn190011", + "overall_grade_rating": 4.22, + "total_grade_count": 603, + "course_ratings": { + "CE3201": 4.25, + "CE3320": 3.98, + "EE3201": 4.27, + "EE3320": 4.0, + "CE6302": 4.46, + "EEDG6302": 4.85, + "CE2310": 3.69, + "EE2310": 4.25 + } + } + ], + "walter sutton": [ + { + "department": "Law", + "url": "https://www.ratemyprofessors.com/professor/2363287", + "quality_rating": 4.9, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Walter Sutton", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 21, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Caring", + "EXTRA CREDIT", + "Inspirational" + ], + "rmp_id": "2363287", + "instructor_id": "wls015100", + "overall_grade_rating": 4.12, + "total_grade_count": 506, + "course_ratings": { + "BLAW2301": 4.0, + "BLAW4301": 4.73 + } + } + ], + "rashaunda henderson": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2135919", + "quality_rating": 3, + "difficulty_rating": 2.4, + "would_take_again": 57, + "original_rmp_format": "Rashaunda Henderson", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 8, + "tags": [ + "Lots of homework", + "Participation matters", + "Get ready to read", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "2135919", + "instructor_id": "rmh072000", + "overall_grade_rating": 4.26, + "total_grade_count": 861, + "course_ratings": { + "EERF6311": 4.29, + "CE4202": 4.57, + "ECS1100": 4.41, + "EE4202": 3.81, + "EE4368": 3.35, + "EERF6351": 4.98 + } + } + ], + "jerillyn kent": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2795950", + "quality_rating": 4, + "difficulty_rating": 3.7, + "would_take_again": 67, + "original_rmp_format": "Jerillyn Kent", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 3, + "tags": [ + "Get ready to read", + "Lecture heavy", + "Participation matters", + "Gives good feedback" + ], + "rmp_id": "2795950", + "instructor_id": "jxk210033", + "overall_grade_rating": 4.26, + "total_grade_count": 120, + "course_ratings": { + "HCS7355": 4.6, + "PSY4326": 4.15 + } + } + ], + "min chen": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1377273", + "quality_rating": 3.8, + "difficulty_rating": 2.9, + "would_take_again": 61, + "original_rmp_format": "Min Chen", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 28, + "tags": [ + "Caring", + "Clear grading criteria", + "Respected", + "Accessible outside class", + "Lecture heavy" + ], + "rmp_id": "1377273", + "instructor_id": "mxc136030", + "overall_grade_rating": 4.28, + "total_grade_count": 1370, + "course_ratings": { + "STAT5351": 3.96, + "STAT2332": 3.9, + "CS6313": 4.41, + "STAT6338": 4.42 + } + } + ], + "kamil sarac": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1447736", + "quality_rating": 4.1, + "difficulty_rating": 3.2, + "would_take_again": 83, + "original_rmp_format": "Kamil Sarac", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 25, + "tags": [ + "Amazing lectures ", + "Group projects", + "Gives good feedback", + "Lots of homework", + "Respected" + ], + "rmp_id": "1447736", + "instructor_id": "kxs028100", + "overall_grade_rating": 4.08, + "total_grade_count": 368, + "course_ratings": { + "CS6349": 4.21, + "CS6390": 4.48, + "CS4396": 3.89 + } + } + ], + "thomas gray": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2290470", + "quality_rating": 4.5, + "difficulty_rating": 3.4, + "would_take_again": 92, + "original_rmp_format": "Thomas Gray", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 24, + "tags": [ + "Amazing lectures ", + "Get ready to read", + "Participation matters", + "Respected", + "Test heavy" + ], + "rmp_id": "2290470", + "instructor_id": "txg171430", + "overall_grade_rating": 3.72, + "total_grade_count": 769, + "course_ratings": { + "GOVT2305": 3.03, + "PSCI3303": 3.95, + "PSCI6331": 4.47, + "PSCI4310": 4.06, + "PSCI4396": 4.47, + "PSCI4343": 4.2, + "PSCI6347": 4.12 + } + } + ], + "sharon hewitt": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2391880", + "quality_rating": 2.9, + "difficulty_rating": 2.8, + "would_take_again": 50, + "original_rmp_format": "Sharon Hewitt", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 10, + "tags": [ + "Participation matters", + "Graded by few things", + "Caring", + "Tough grader", + "Gives good feedback" + ], + "rmp_id": "2391880", + "instructor_id": "sxh090220", + "overall_grade_rating": 3.79, + "total_grade_count": 1080, + "course_ratings": { + "ATCM2302": 4.23, + "ATCM4350": 3.77, + "ATCM3350": 3.72, + "ATCM4397": 4.21 + } + } + ], + "brecken wellborn": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/2784323", + "quality_rating": 4.9, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Brecken Wellborn", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 10, + "tags": [ + "Hilarious", + "Gives good feedback", + "Amazing lectures ", + "Caring", + "Participation matters" + ], + "rmp_id": "2784323", + "instructor_id": "bhw200001", + "overall_grade_rating": 4.3, + "total_grade_count": 206, + "course_ratings": { + "FILM2332": 4.25, + "FILM3325": 4.57 + } + } + ], + "cynthia miller": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/2859462", + "quality_rating": 1.3, + "difficulty_rating": 4.5, + "would_take_again": 0, + "original_rmp_format": "Cynthia Miller", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 4, + "tags": [ + "Lots of homework", + "So many papers", + "Tough grader", + "Participation matters", + "Beware of pop quizzes" + ], + "rmp_id": "2859462", + "instructor_id": "cmm016900", + "overall_grade_rating": 3.78, + "total_grade_count": 106, + "course_ratings": { + "ARTS2350": 3.9, + "ARTS3371": 3.71, + "VPAS3340": 3.73 + } + } + ], + "jiawei hu": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2959418", + "quality_rating": 3.3, + "difficulty_rating": 2.3, + "would_take_again": 67, + "original_rmp_format": "Jiawei Hu", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 3, + "tags": [ + "EXTRA CREDIT", + "Graded by few things", + "Tough grader", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2959418", + "instructor_id": "jxh190066", + "overall_grade_rating": 4.15, + "total_grade_count": 110, + "course_ratings": { + "FIN3300": 4.15 + } + } + ], + "semiramis amirpour": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/1890568", + "quality_rating": 3.7, + "difficulty_rating": 3.1, + "would_take_again": 63, + "original_rmp_format": "Semiramis Amirpour", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 50, + "tags": [ + "Participation matters", + "Tough grader", + "Lots of homework", + "Skip class? You won't pass.", + "Caring" + ], + "rmp_id": "1890568", + "instructor_id": "sxa130731", + "overall_grade_rating": 3.99, + "total_grade_count": 1106, + "course_ratings": { + "MKT4332": 4.14, + "MKT3330": 3.98, + "MKT3300": 4.09 + } + } + ], + "surya janakiraman": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1741787", + "quality_rating": 2.8, + "difficulty_rating": 3.9, + "would_take_again": 40, + "original_rmp_format": "Surya Janakiraman", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 30, + "tags": [ + "Lecture heavy", + "Tough grader", + "Get ready to read", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "1741787", + "instructor_id": "suryaj", + "overall_grade_rating": 4.11, + "total_grade_count": 1550, + "course_ratings": { + "ACCT6202": 4.14, + "ACCT6305": 4.18, + "ACCT6345": 4.28, + "SYSM6337": 4.49, + "ACCT2302": 3.6, + "ACCT6331": 4.01 + } + } + ], + "justin ruths": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2200818", + "quality_rating": 2.8, + "difficulty_rating": 4.8, + "would_take_again": 45, + "original_rmp_format": "Justin Ruths", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 20, + "tags": [ + "Lots of homework", + "Tough grader", + "Skip class? You won't pass.", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2200818", + "instructor_id": "jxr163730", + "overall_grade_rating": 3.46, + "total_grade_count": 246, + "course_ratings": { + "MECH4310": 3.25, + "MECH6317": 4.69, + "SYSM6302": 4.09 + } + } + ], + "anh tran": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1962921", + "quality_rating": 3.8, + "difficulty_rating": 3.3, + "would_take_again": 62, + "original_rmp_format": "Anh Tran", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 16, + "tags": [ + "Lots of homework", + "Amazing lectures ", + "Would take again", + "Respected", + "Test heavy" + ], + "rmp_id": "1962921", + "instructor_id": "att140830", + "overall_grade_rating": 2.89, + "total_grade_count": 619, + "course_ratings": { + "MATH4341": 3.28, + "MATH2414": 2.48, + "MATH3380": 4.03, + "MATH6310": 4.2, + "MATH6309": 3.63 + } + } + ], + "lin jia": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2722748", + "quality_rating": 2.7, + "difficulty_rating": 3.7, + "would_take_again": 40, + "original_rmp_format": "Lin Jia", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 10, + "tags": [ + "Test heavy", + "Lecture heavy", + "Graded by few things", + "Accessible outside class", + "Get ready to read" + ], + "rmp_id": "2722748", + "instructor_id": "lxj200008", + "overall_grade_rating": 3.53, + "total_grade_count": 795, + "course_ratings": { + "BIOL3161": 3.53, + "BIOL3361": 3.49, + "CHEM3361": 4.11 + } + } + ], + "ozgur aksoy": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/3003555", + "quality_rating": 4.9, + "difficulty_rating": 2.1, + "would_take_again": 100, + "original_rmp_format": "Ozgur Aksoy", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 7, + "tags": [ + "Caring", + "Accessible outside class", + "Amazing lectures ", + "EXTRA CREDIT", + "Clear grading criteria" + ], + "rmp_id": "3003555", + "instructor_id": "oxa190009", + "overall_grade_rating": 4.23, + "total_grade_count": 126, + "course_ratings": { + "ITSS3311": 4.23 + } + } + ], + "xinya du": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2844042", + "quality_rating": 3.8, + "difficulty_rating": 3.2, + "would_take_again": 80, + "original_rmp_format": "Xinya Du", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 5, + "tags": [ + "Group projects", + "Gives good feedback", + "Graded by few things", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2844042", + "instructor_id": "xxd220001", + "overall_grade_rating": 4.68, + "total_grade_count": 355, + "course_ratings": { + "CS6320": 4.74, + "CS6301": 4.91, + "CS4375": 4.34 + } + } + ], + "elisa miller": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/3022774", + "quality_rating": 4, + "difficulty_rating": 1, + "would_take_again": 0, + "original_rmp_format": "Elisa Miller", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 1, + "tags": ["Caring", "Graded by few things", "Accessible outside class"], + "rmp_id": "3022774", + "instructor_id": "dal938034", + "overall_grade_rating": 3.97, + "total_grade_count": 88, + "course_ratings": { + "ATCM3336": 4.34, + "ATCM3337": 3.61, + "ATCM4397": 4.62 + } + } + ], + "hayley duplantier": [ + { + "department": "Fine Arts", + "url": "https://www.ratemyprofessors.com/professor/3055577", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Hayley Duplantier ", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 1, + "tags": ["Gives good feedback", "Caring", "Lecture heavy"], + "rmp_id": "3055577", + "instructor_id": "hjd230000", + "overall_grade_rating": 4.37, + "total_grade_count": 112, + "course_ratings": { + "DANC2321": 4.43, + "DANC3336": 4.83, + "DANC1310": 4.28 + } + } + ], + "rasoul ramezani": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2300002", + "quality_rating": 2.5, + "difficulty_rating": 4.1, + "would_take_again": 34, + "original_rmp_format": "Rasoul Ramezani", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 58, + "tags": [ + "Lots of homework", + "Test heavy", + "Tough grader", + "Lecture heavy", + "Clear grading criteria" + ], + "rmp_id": "2300002", + "instructor_id": "rxr145930", + "overall_grade_rating": 3.83, + "total_grade_count": 1465, + "course_ratings": { + "ECON2302": 2.97, + "BUAN6359": 3.97, + "BUAN6398": 4.0, + "OPRE3360": 3.61, + "OPRE6359": 4.16, + "BUAN4373": 2.95, + "OPRE6301": 3.5 + } + } + ], + "jessica ouyang": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2524932", + "quality_rating": 2.4, + "difficulty_rating": 4.4, + "would_take_again": 22, + "original_rmp_format": "Jessica Ouyang", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 46, + "tags": [ + "Tough grader", + "Lots of homework", + "Test heavy", + "Get ready to read", + "Lecture heavy" + ], + "rmp_id": "2524932", + "instructor_id": "jjo190001", + "overall_grade_rating": 3.81, + "total_grade_count": 412, + "course_ratings": { + "CS6320": 4.39, + "CS2305": 3.22, + "CS3305": 4.11 + } + } + ], + "robert lowry": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1254749", + "quality_rating": 3.1, + "difficulty_rating": 3.3, + "would_take_again": 47, + "original_rmp_format": "Robert Lowry", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 40, + "tags": [ + "Graded by few things", + "Lecture heavy", + "Skip class? You won't pass.", + "Get ready to read", + "Clear grading criteria" + ], + "rmp_id": "1254749", + "instructor_id": "rcl062000", + "overall_grade_rating": 3.71, + "total_grade_count": 1001, + "course_ratings": { + "PSCI3325": 3.46, + "PSCI6324": 4.29, + "GOVT2306": 4.04, + "PSCI6352": 4.58, + "PSCI4304": 3.85, + "GOVT2305": 2.82, + "PSCI4326": 3.53 + } + } + ], + "william griffin": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/1941048", + "quality_rating": 3.5, + "difficulty_rating": 2, + "would_take_again": 54, + "original_rmp_format": "William Griffin", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 32, + "tags": [ + "Lecture heavy", + "Clear grading criteria", + "Graded by few things", + "Test heavy", + "Skip class? You won't pass." + ], + "rmp_id": "1941048", + "instructor_id": "griffin", + "overall_grade_rating": 4.03, + "total_grade_count": 1454, + "course_ratings": { + "GEOS1103": 3.82, + "GEOS1303": 4.37, + "ISNS2359": 3.67, + "GEOS3421": 4.32, + "GEOS2340": 4.81, + "GEOS3464": 3.95, + "GEOS2409": 4.07 + } + } + ], + "malgorzata woldu": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2459429", + "quality_rating": 2.4, + "difficulty_rating": 3.6, + "would_take_again": 44, + "original_rmp_format": "Malgorzata Woldu", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 18, + "tags": [ + "Lecture heavy", + "Test heavy", + "Clear grading criteria", + "Get ready to read", + "EXTRA CREDIT" + ], + "rmp_id": "2459429", + "instructor_id": "mxw180018", + "overall_grade_rating": 3.18, + "total_grade_count": 449, + "course_ratings": { + "OPRE3333": 3.41, + "OPRE3360": 3.12 + } + } + ], + "quinn gordon": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2780621", + "quality_rating": 4, + "difficulty_rating": 2.2, + "would_take_again": 100, + "original_rmp_format": "Quinn Gordon", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 5, + "tags": [ + "Clear grading criteria", + "Gives good feedback", + "Accessible outside class", + "Get ready to read", + "EXTRA CREDIT" + ], + "rmp_id": "2780621", + "instructor_id": "qtg140030", + "overall_grade_rating": 3.23, + "total_grade_count": 162, + "course_ratings": { + "CRIM2313": 3.13, + "CRIM1301": 3.34, + "CRIM4311": 3.65 + } + } + ], + "yaqing jin": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2537851", + "quality_rating": 4.3, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Yaqing Jin", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 3, + "tags": [ + "Group projects", + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2537851", + "instructor_id": "yxj190011", + "overall_grade_rating": 4.73, + "total_grade_count": 784, + "course_ratings": { + "MECH3315": 4.71, + "MECH3115": 4.74 + } + } + ], + "giuseppe peressotti": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/3052756", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Giuseppe Peressotti", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 1, + "tags": ["Participation matters", "Gives good feedback", "Accessible outside class"], + "rmp_id": "3052756", + "instructor_id": "gxp210031", + "overall_grade_rating": 3.82, + "total_grade_count": 34, + "course_ratings": { + "EPPS2301": 3.82 + } + } + ], + "bei chen": [ + { + "department": "Languages", + "url": "https://www.ratemyprofessors.com/professor/2115596", + "quality_rating": 4.9, + "difficulty_rating": 2.1, + "would_take_again": 100, + "original_rmp_format": "Bei Chen", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 12, + "tags": [ + "Caring", + "Lots of homework", + "Participation matters", + "EXTRA CREDIT", + "Gives good feedback" + ], + "rmp_id": "2115596", + "instructor_id": "bxc152730", + "overall_grade_rating": 4.63, + "total_grade_count": 286, + "course_ratings": { + "CHIN1311": 4.48, + "CHIN1301": 4.78, + "CHIN1312": 4.68, + "CHIN2312": 4.76, + "CHIN2311": 4.68, + "CHIN3311": 4.48 + } + } + ], + "karen minzer": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2743065", + "quality_rating": 2.3, + "difficulty_rating": 2.3, + "would_take_again": 25, + "original_rmp_format": "Karen Minzer", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 8, + "tags": [ + "Participation matters", + "Group projects", + "Gives good feedback", + "Lots of homework", + "Get ready to read" + ], + "rmp_id": "2743065", + "instructor_id": "kxm156130", + "overall_grade_rating": 4.3, + "total_grade_count": 164, + "course_ratings": { + "RHET1302": 4.1, + "CRWT2301": 5.0 + } + } + ], + "irene marroquin": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2274745", + "quality_rating": 2.6, + "difficulty_rating": 1.1, + "would_take_again": 43, + "original_rmp_format": "Irene Marroquin", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 7, + "tags": [ + "Respected", + "Lecture heavy", + "Clear grading criteria", + "Caring", + "Graded by few things" + ], + "rmp_id": "2274745", + "instructor_id": "ixm033000", + "overall_grade_rating": 3.96, + "total_grade_count": 557, + "course_ratings": { + "ECS1100": 3.96, + "AHTC1100": 3.99 + } + } + ], + "suyash garg": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2824757", + "quality_rating": 3.2, + "difficulty_rating": 1.8, + "would_take_again": 50, + "original_rmp_format": "Suyash Garg", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 6, + "tags": [ + "Group projects", + "Participation matters", + "Get ready to read", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2824757", + "instructor_id": "sxg180150", + "overall_grade_rating": 4.78, + "total_grade_count": 176, + "course_ratings": { + "BPS4305": 4.78, + "IMS3310": 4.78 + } + } + ], + "katie widner": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2977203", + "quality_rating": 5, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Katie Widner", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 3, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Gives good feedback", + "Caring", + "Graded by few things" + ], + "rmp_id": "2977203", + "instructor_id": "kxw200020", + "overall_grade_rating": 4.29, + "total_grade_count": 245, + "course_ratings": { + "GOVT2305": 4.34, + "GOVT2306": 3.91, + "PSCI4321": 4.52 + } + } + ], + "crystal conway": [ + { + "department": "Geography", + "url": "https://www.ratemyprofessors.com/professor/3033773", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Crystal Conway", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 2, + "tags": [ + "Clear grading criteria", + "Gives good feedback", + "Caring", + "Accessible outside class" + ], + "rmp_id": "3033773", + "instructor_id": "cmc210002", + "overall_grade_rating": 4.11, + "total_grade_count": 50, + "course_ratings": { + "GEOG2303": 4.11 + } + } + ], + "leehyun yoon": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/3053543", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Leehyun Yoon", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 1, + "tags": ["Participation matters", "Gives good feedback", "Caring"], + "rmp_id": "3053543", + "instructor_id": "lxy230006", + "overall_grade_rating": 4.48, + "total_grade_count": 28, + "course_ratings": { + "PSY3393": 4.14, + "HCS6317": 5.0 + } + } + ], + "zalman balanov": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1508016", + "quality_rating": 3.9, + "difficulty_rating": 3.3, + "would_take_again": 78, + "original_rmp_format": "Zalman Balanov", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 24, + "tags": [ + "Hilarious", + "Respected", + "Skip class? You won't pass.", + "Clear grading criteria", + "Lots of homework" + ], + "rmp_id": "1508016", + "instructor_id": "zxb105020", + "overall_grade_rating": 3.21, + "total_grade_count": 285, + "course_ratings": { + "MATH6301": 3.88, + "MATH2417": 2.75, + "MATH2420": 3.12 + } + } + ], + "jiyu wang": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/2942391", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Jiyu Wang", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 2, + "tags": ["EXTRA CREDIT", "Clear grading criteria", "Accessible outside class"], + "rmp_id": "2942391", + "instructor_id": "jxw180000", + "overall_grade_rating": 4.46, + "total_grade_count": 192, + "course_ratings": { + "IMS3310": 4.46 + } + } + ], + "sarah dornback": [ + { + "department": "Interdisciplinary Studies", + "url": "https://www.ratemyprofessors.com/professor/3052401", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Sarah Dornback", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Tough grader", "Lots of homework"], + "rmp_id": "3052401", + "instructor_id": "sxd220144", + "overall_grade_rating": 4.12, + "total_grade_count": 355, + "course_ratings": { + "BIS2190": 4.14, + "HLTH4380": 4.39, + "HLTH4310": 3.7 + } + } + ], + "hangu chen": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/3052515", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Hangu Chen", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Caring", "Lecture heavy", "Accessible outside class"], + "rmp_id": "3052515", + "instructor_id": "hxc200040", + "overall_grade_rating": 3.74, + "total_grade_count": 39, + "course_ratings": { + "ACCT2301": 3.74 + } + } + ], + "shouqiang wang": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2217309", + "quality_rating": 3.4, + "difficulty_rating": 4.2, + "would_take_again": 50, + "original_rmp_format": "Shouqiang Wang", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 24, + "tags": [ + "Beware of pop quizzes", + "Lots of homework", + "Amazing lectures ", + "Tough grader", + "Respected" + ], + "rmp_id": "2217309", + "instructor_id": "sxw163830", + "overall_grade_rating": 3.64, + "total_grade_count": 418, + "course_ratings": { + "OPRE4350": 3.1, + "OPRE6301": 3.81 + } + } + ], + "daniel karnuta": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2365150", + "quality_rating": 3.9, + "difficulty_rating": 3.5, + "would_take_again": 81, + "original_rmp_format": "Daniel Karnuta", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 21, + "tags": [ + "Participation matters", + "Respected", + "Lecture heavy", + "Clear grading criteria", + "Test heavy" + ], + "rmp_id": "2365150", + "instructor_id": "dxk173030", + "overall_grade_rating": 3.78, + "total_grade_count": 916, + "course_ratings": { + "ACCT6332": 4.1, + "HMGT3311": 3.65, + "HMGT6311": 4.6, + "HMGT3320": 3.62, + "ACCT2301": 3.31, + "ACCT3332": 2.55, + "HMGT3301": 3.56 + } + } + ], + "stephen levene": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1033612", + "quality_rating": 2.4, + "difficulty_rating": 4.8, + "would_take_again": 25, + "original_rmp_format": "Stephen Levene", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 5, + "tags": [ + "Get ready to read", + "Skip class? You won't pass.", + "Respected", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "1033612", + "instructor_id": "sdlevene", + "overall_grade_rating": 3.69, + "total_grade_count": 94, + "course_ratings": { + "BMEN3315": 2.97, + "BMEN6374": 3.49, + "BMEN3325": 4.43 + } + } + ], + "larissa werhnyak": [ + { + "department": "Science", + "url": "https://www.ratemyprofessors.com/professor/2177118", + "quality_rating": 2.1, + "difficulty_rating": 2.5, + "would_take_again": 27, + "original_rmp_format": "Larissa Werhnyak", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 44, + "tags": [ + "Get ready to read", + "Hilarious", + "Graded by few things", + "Tough grader", + "So many papers" + ], + "rmp_id": "2177118", + "instructor_id": "lxw163630", + "overall_grade_rating": 4.1, + "total_grade_count": 974, + "course_ratings": { + "BIS1100": 4.73, + "AMS2341": 3.51, + "ISIS4304": 3.83, + "GST2300": 3.8, + "SOC2300": 3.76, + "AMS3302": 3.31, + "ISIS4303": 3.59, + "AMS2300": 4.34 + } + } + ], + "jennifer lee": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2877284", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Jennifer Lee", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 6, + "tags": [ + "Gives good feedback", + "Caring", + "Participation matters", + "Clear grading criteria", + "Group projects" + ], + "rmp_id": "2877284", + "instructor_id": "jxl220041", + "overall_grade_rating": 4.25, + "total_grade_count": 429, + "course_ratings": { + "BPS4305": 4.25 + } + } + ], + "kangkook jee": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2597969", + "quality_rating": 3.4, + "difficulty_rating": 4.4, + "would_take_again": 61, + "original_rmp_format": "Kangkook Jee", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 18, + "tags": [ + "Lots of homework", + "Accessible outside class", + "Get ready to read", + "Caring", + "Tough grader" + ], + "rmp_id": "2597969", + "instructor_id": "kxj190011", + "overall_grade_rating": 4.01, + "total_grade_count": 253, + "course_ratings": { + "CS6332": 4.25, + "CS4301": 3.65, + "CS4459": 3.71 + } + } + ], + "kevin hamlen": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1280992", + "quality_rating": 4.4, + "difficulty_rating": 4.2, + "would_take_again": 60, + "original_rmp_format": "Kevin Hamlen", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 13, + "tags": [ + "Gives good feedback", + "Get ready to read", + "Lots of homework", + "Amazing lectures ", + "Lecture heavy" + ], + "rmp_id": "1280992", + "instructor_id": "kxh060100", + "overall_grade_rating": 3.85, + "total_grade_count": 127, + "course_ratings": { + "CS6301": 4.06, + "CS6335": 4.22, + "CS6371": 3.57, + "CS4301": 3.19 + } + } + ], + "lori kirk rolley": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/3040966", + "quality_rating": 2.5, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Lori Kirk-Rolley", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 2, + "tags": ["Tough grader", "Group projects", "EXTRA CREDIT", "Test heavy"], + "rmp_id": "3040966", + "instructor_id": "lxk230030", + "overall_grade_rating": 3.64, + "total_grade_count": 110, + "course_ratings": { + "MKT3300": 3.54, + "MKT4340": 3.71 + } + } + ], + "jason bennett": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/3044802", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Jason Bennett", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Participation matters", "Amazing lectures ", "Gives good feedback"], + "rmp_id": "3044802", + "instructor_id": "jhb042000", + "overall_grade_rating": 4.13, + "total_grade_count": 34, + "course_ratings": { + "RHET1302": 4.13 + } + }, + { + "instructor_id": "jxb230049", + "overall_grade_rating": 4.5, + "total_grade_count": 309, + "course_ratings": { + "MUSI1306": 4.5 + } + } + ], + "jonathan sonnier": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/2764690", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Jonathan Sonnier", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Get ready to read"], + "rmp_id": "2764690", + "instructor_id": "jsonnier", + "overall_grade_rating": 3.49, + "total_grade_count": 77, + "course_ratings": { + "LIT2331": 3.48, + "RHET1302": 3.53 + } + } + ], + "raluca simion": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/3049585", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Raluca Simion", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Participation matters", "EXTRA CREDIT", "Caring"], + "rmp_id": "3049585", + "instructor_id": "rns230001", + "overall_grade_rating": 4.82, + "total_grade_count": 19, + "course_ratings": { + "RHET1302": 4.82 + } + } + ], + "mustafa arrabai": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2794626", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 75, + "original_rmp_format": "Mustafa Arrabai", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 4, + "tags": [ + "Participation matters", + "Get ready to read", + "Clear grading criteria", + "Hilarious", + "Caring" + ], + "rmp_id": "2794626", + "instructor_id": "mma200002", + "overall_grade_rating": 4.26, + "total_grade_count": 148, + "course_ratings": { + "ARAB1311": 4.41, + "RHET1302": 4.18, + "LIT2331": 4.51 + } + } + ], + "tuhin harit": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/3049107", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Tuhin Harit", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Participation matters", "EXTRA CREDIT", "Gives good feedback"], + "rmp_id": "3049107", + "instructor_id": "txh180026", + "overall_grade_rating": 3.78, + "total_grade_count": 71, + "course_ratings": { + "FIN3320": 3.78 + } + } + ], + "hannah pourchot neale": [ + { + "department": "Speech & Language Pathology", + "url": "https://www.ratemyprofessors.com/professor/2958170", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Hannah Pourchot Neale", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Participation matters", "Clear grading criteria", "Caring"], + "rmp_id": "2958170", + "instructor_id": "hxp121030", + "overall_grade_rating": 4.63, + "total_grade_count": 71, + "course_ratings": { + "SPAU4394": 4.63 + } + } + ], + "jeffrey hicks": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1640936", + "quality_rating": 4.1, + "difficulty_rating": 2, + "would_take_again": 78, + "original_rmp_format": "Jeffrey Hicks", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 71, + "tags": ["Group projects", "Gives good feedback", "Respected", "Hilarious", "Inspirational"], + "rmp_id": "1640936", + "instructor_id": "jnh061000", + "overall_grade_rating": 4.37, + "total_grade_count": 1894, + "course_ratings": { + "BPS6360": 4.65, + "OBHR3310": 4.14, + "OB6301": 4.5, + "SYSM6333": 4.65, + "IMS3310": 4.19, + "OBHR4350": 3.83 + } + } + ], + "liping ma": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2080121", + "quality_rating": 2.6, + "difficulty_rating": 3.8, + "would_take_again": 30, + "original_rmp_format": "Liping Ma", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 29, + "tags": [ + "Tough grader", + "Group projects", + "EXTRA CREDIT", + "Gives good feedback", + "Beware of pop quizzes" + ], + "rmp_id": "2080121", + "instructor_id": "lxm133730", + "overall_grade_rating": 4.22, + "total_grade_count": 1251, + "course_ratings": { + "FIN6306": 4.09, + "FIN6382": 4.24, + "FIN4345": 4.47, + "FIN6307": 4.07, + "FIN6318": 4.45, + "FIN6368": 4.62 + } + } + ], + "pamela gossin": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/923647", + "quality_rating": 3.9, + "difficulty_rating": 3.5, + "would_take_again": 60, + "original_rmp_format": "Pamela Gossin", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 25, + "tags": [ + "Get ready to read", + "Participation matters", + "EXTRA CREDIT", + "Lots of homework", + "So many papers" + ], + "rmp_id": "923647", + "instructor_id": "psgossin", + "overall_grade_rating": 3.74, + "total_grade_count": 355, + "course_ratings": { + "ARHM3342": 3.53, + "HIST3328": 3.94, + "ARHM2343": 4.1, + "PHIL3328": 4.17, + "LIT3316": 3.8, + "HIST3327": 3.25 + } + } + ], + "suresh radhakrishnan": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1623913", + "quality_rating": 4, + "difficulty_rating": 3.1, + "would_take_again": 78, + "original_rmp_format": "Suresh Radhakrishnan", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 14, + "tags": ["Respected", "Caring", "Test heavy", "Amazing lectures ", "Lecture heavy"], + "rmp_id": "1623913", + "instructor_id": "sradhakr", + "overall_grade_rating": 4.58, + "total_grade_count": 5, + "course_ratings": { + "ACCT7323": 4.58 + } + } + ], + "kathryn stecke": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1481346", + "quality_rating": 2, + "difficulty_rating": 3, + "would_take_again": 33, + "original_rmp_format": "Kathryn Stecke", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 7, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Skip class? You won't pass.", + "Lecture heavy" + ], + "rmp_id": "1481346", + "instructor_id": "kes021000", + "overall_grade_rating": 4.38, + "total_grade_count": 51, + "course_ratings": { + "MECH6335": 4.47, + "OPRE6340": 4.1 + } + } + ], + "carmon brandow": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2881329", + "quality_rating": 4.2, + "difficulty_rating": 2.2, + "would_take_again": 83, + "original_rmp_format": "Carmon Brandow", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Participation matters", + "Lecture heavy", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "2881329", + "instructor_id": "cxb190000", + "overall_grade_rating": 3.47, + "total_grade_count": 169, + "course_ratings": { + "RHET1302": 3.39, + "LIT2331": 3.72, + "CRWT2301": 3.54 + } + } + ], + "stephen yurkovich": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2857735", + "quality_rating": 2, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Stephen Yurkovich", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Lots of homework", "Lecture heavy", "Accessible outside class"], + "rmp_id": "2857735", + "instructor_id": "sxy111430", + "overall_grade_rating": 3.94, + "total_grade_count": 134, + "course_ratings": { + "MECH6300": 3.97, + "EECS6331": 3.86 + } + } + ], + "frank anderson": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/877073", + "quality_rating": 3.9, + "difficulty_rating": 3.8, + "would_take_again": 72, + "original_rmp_format": "Frank Anderson", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 44, + "tags": ["Caring", "Gives good feedback", "Respected", "Inspirational", "Tough grader"], + "rmp_id": "877073", + "instructor_id": "fwa012000", + "overall_grade_rating": 3.36, + "total_grade_count": 642, + "course_ratings": { + "FIN4310": 3.35, + "FIN3320": 3.18, + "FIN4395": 4.21 + } + } + ], + "patrick muenks": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2845863", + "quality_rating": 4.4, + "difficulty_rating": 1.8, + "would_take_again": 86, + "original_rmp_format": "Patrick Muenks", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 44, + "tags": [ + "Amazing lectures ", + "Get ready to read", + "Clear grading criteria", + "Caring", + "Lecture heavy" + ], + "rmp_id": "2845863", + "instructor_id": "pxm166330", + "overall_grade_rating": 3.75, + "total_grade_count": 2906, + "course_ratings": { + "GOVT2305": 3.61, + "GOVT2306": 3.82, + "HONS3199": 4.46, + "PSCI3362": 3.77 + } + } + ], + "anne fischer": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/2547687", + "quality_rating": 4.6, + "difficulty_rating": 1.9, + "would_take_again": 89, + "original_rmp_format": "Anne Fischer", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 28, + "tags": [ + "Caring", + "Amazing lectures ", + "Accessible outside class", + "EXTRA CREDIT", + "Gives good feedback" + ], + "rmp_id": "2547687", + "instructor_id": "agf190000", + "overall_grade_rating": 4.62, + "total_grade_count": 887, + "course_ratings": { + "HIST2384": 4.63, + "HIST4360": 4.33, + "HIST4383": 4.54, + "HIST3366": 4.58, + "HIST6335": 4.13 + } + } + ], + "allison templeton": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2063966", + "quality_rating": 4.2, + "difficulty_rating": 2.4, + "would_take_again": 88, + "original_rmp_format": "Allison Templeton", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 18, + "tags": [ + "Gives good feedback", + "Participation matters", + "EXTRA CREDIT", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2063966", + "instructor_id": "aam141730", + "overall_grade_rating": 4.22, + "total_grade_count": 824, + "course_ratings": { + "COMM1311": 4.2, + "COMM1315": 4.28 + } + } + ], + "adewole adeuga": [ + { + "department": "Geography", + "url": "https://www.ratemyprofessors.com/professor/3006238", + "quality_rating": 1.5, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Adewole Adeuga", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 2, + "tags": ["Tough grader", "EXTRA CREDIT", "Lots of homework"], + "rmp_id": "3006238", + "instructor_id": "ama200023", + "overall_grade_rating": 3.8, + "total_grade_count": 52, + "course_ratings": { + "EPPS2302": 4.14, + "ENVR2302": 3.66, + "GEOS2302": 3.57 + } + } + ], + "zachary sickmann": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/3047945", + "quality_rating": 3, + "difficulty_rating": 2, + "would_take_again": 0, + "original_rmp_format": "Zachary Sickmann", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Graded by few things"], + "rmp_id": "3047945", + "instructor_id": "zxs220011", + "overall_grade_rating": 4.06, + "total_grade_count": 136, + "course_ratings": { + "GEOS1303": 3.32, + "GEOS3421": 4.26, + "GEOS4322": 4.41, + "GEOS3300": 4.31, + "GEOS4300": 4.28 + } + } + ], + "hubert zydorek": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1723078", + "quality_rating": 3.3, + "difficulty_rating": 3.1, + "would_take_again": 57, + "original_rmp_format": "Hubert Zydorek", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 54, + "tags": [ + "Group projects", + "Lecture heavy", + "Participation matters", + "Graded by few things", + "EXTRA CREDIT" + ], + "rmp_id": "1723078", + "instructor_id": "hxz120930", + "overall_grade_rating": 4.4, + "total_grade_count": 1384, + "course_ratings": { + "IMS3310": 4.45, + "IMS4330": 4.1, + "IMS4350": 4.73, + "IMS4373": 4.33 + } + } + ], + "ryan pettengill": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/1960098", + "quality_rating": 4.8, + "difficulty_rating": 2.1, + "would_take_again": 94, + "original_rmp_format": "Ryan Pettengill", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 38, + "tags": [ + "Amazing lectures ", + "Inspirational", + "Respected", + "Clear grading criteria", + "EXTRA CREDIT" + ], + "rmp_id": "1960098", + "instructor_id": "rsp120030", + "overall_grade_rating": 4.39, + "total_grade_count": 658, + "course_ratings": { + "HIST1301": 4.32, + "HIST1302": 4.42, + "HIST4378": 4.51 + } + } + ], + "william cready": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/772976", + "quality_rating": 1.3, + "difficulty_rating": 4.5, + "would_take_again": 8, + "original_rmp_format": "William Cready", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 15, + "tags": [ + "Get ready to read", + "Tough grader", + "Test heavy", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "772976", + "instructor_id": "wmc041000", + "overall_grade_rating": 3.45, + "total_grade_count": 350, + "course_ratings": { + "ACCT6330": 3.4, + "ACCT3341": 2.73, + "ACCT6331": 3.9, + "ACCT3331": 3.65 + } + } + ], + "loretta hudelot": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2447725", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Loretta Hudelot", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 4, + "tags": ["Gives good feedback", "Group projects", "Caring", "Inspirational", "Respected"], + "rmp_id": "2447725", + "instructor_id": "lfh170000", + "overall_grade_rating": 4.58, + "total_grade_count": 262, + "course_ratings": { + "MKT3340": 4.58 + } + } + ], + "danielle avram": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/2893076", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Danielle Avram", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 2, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Inspirational", + "Caring", + "Respected" + ], + "rmp_id": "2893076", + "instructor_id": "avram", + "overall_grade_rating": 4.68, + "total_grade_count": 152, + "course_ratings": { + "ARHM2340": 4.77, + "ARTS4310": 4.5, + "AHST2331": 4.98 + } + } + ], + "abhijit biswas": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1045891", + "quality_rating": 4.7, + "difficulty_rating": 3, + "would_take_again": 88, + "original_rmp_format": "Abhijit Biswas", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 230, + "tags": [ + "Amazing lectures ", + "Respected", + "Group projects", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "1045891", + "instructor_id": "axb019100", + "overall_grade_rating": 4.08, + "total_grade_count": 2245, + "course_ratings": { + "MKT6301": 4.21, + "MKT6330": 4.04, + "MKT6310": 4.14, + "MKT4350": 3.76, + "MKT6332": 4.12 + } + } + ], + "rebecca files": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1434093", + "quality_rating": 4.6, + "difficulty_rating": 3.1, + "would_take_again": 80, + "original_rmp_format": "Rebecca Files", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 82, + "tags": [ + "Amazing lectures ", + "Respected", + "Caring", + "Accessible outside class", + "Skip class? You won't pass." + ], + "rmp_id": "1434093", + "instructor_id": "rlf092000", + "overall_grade_rating": 3.92, + "total_grade_count": 666, + "course_ratings": { + "ACCT3331": 3.14, + "ACCT2301": 4.11 + } + } + ], + "nina baranchuk": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/771726", + "quality_rating": 2.2, + "difficulty_rating": 4.2, + "would_take_again": 41, + "original_rmp_format": "Nina Baranchuk", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 39, + "tags": [ + "Participation matters", + "Lecture heavy", + "Skip class? You won't pass.", + "Group projects", + "Test heavy" + ], + "rmp_id": "771726", + "instructor_id": "nxb043000", + "overall_grade_rating": 3.77, + "total_grade_count": 646, + "course_ratings": { + "FIN6350": 3.97, + "ENTP3360": 3.36, + "FIN3360": 3.75, + "FIN6353": 3.85, + "FIN3320": 2.84, + "FIN7340": 4.12, + "FIN6318": 4.07, + "FIN6301": 4.38 + } + } + ], + "amy pinkham": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/2176252", + "quality_rating": 4, + "difficulty_rating": 3.8, + "would_take_again": 65, + "original_rmp_format": "Amy Pinkham", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 34, + "tags": [ + "Skip class? You won't pass.", + "Amazing lectures ", + "Lecture heavy", + "Tough grader", + "Test heavy" + ], + "rmp_id": "2176252", + "instructor_id": "aep140430", + "overall_grade_rating": 3.33, + "total_grade_count": 1447, + "course_ratings": { + "PSY4343": 3.32, + "HCS6317": 4.54 + } + } + ], + "abdullah al helal": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2376224", + "quality_rating": 2.7, + "difficulty_rating": 3, + "would_take_again": 67, + "original_rmp_format": "Abdullah Al Helal", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 3, + "tags": [ + "Lots of homework", + "Clear grading criteria", + "Caring", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "2376224", + "instructor_id": "axh113230", + "overall_grade_rating": 3.12, + "total_grade_count": 86, + "course_ratings": { + "MATH1314": 3.1, + "MATH1326": 3.14 + } + } + ], + "emmalyn miron": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/3011791", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Emmalyn Miron", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 2, + "tags": ["Group projects", "Caring", "Participation matters", "Clear grading criteria"], + "rmp_id": "3011791", + "instructor_id": "ewm210000", + "overall_grade_rating": 4.2, + "total_grade_count": 145, + "course_ratings": { + "DANC1310": 4.13, + "THEA1310": 4.34 + } + } + ], + "kuei sun": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2122961", + "quality_rating": 4.2, + "difficulty_rating": 2.8, + "would_take_again": 86, + "original_rmp_format": "Kuei Sun", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 37, + "tags": [ + "Caring", + "Clear grading criteria", + "Participation matters", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "2122961", + "instructor_id": "kxs147030", + "overall_grade_rating": 4.44, + "total_grade_count": 6360, + "course_ratings": { + "PHYS2125": 4.53, + "PHYS1302": 3.64, + "PHYS4373": 4.93 + } + } + ], + "yexiao xu": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1838929", + "quality_rating": 2.4, + "difficulty_rating": 4.4, + "would_take_again": 33, + "original_rmp_format": "Yexiao XU", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 19, + "tags": [ + "Tough grader", + "Lots of homework", + "Lecture heavy", + "Test heavy", + "Skip class? You won't pass." + ], + "rmp_id": "1838929", + "instructor_id": "yexiaoxu", + "overall_grade_rating": 4.09, + "total_grade_count": 514, + "course_ratings": { + "FIN6310": 4.39, + "FIN6301": 3.82, + "FIN6318": 4.15 + } + } + ], + "khai chiong": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2467546", + "quality_rating": 5, + "difficulty_rating": 1.2, + "would_take_again": 100, + "original_rmp_format": "Khai Chiong", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 17, + "tags": [ + "Amazing lectures ", + "Caring", + "Group projects", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "2467546", + "instructor_id": "kxc173030", + "overall_grade_rating": 4.49, + "total_grade_count": 316, + "course_ratings": { + "MECO7312": 4.47, + "MKT3300": 4.5 + } + } + ], + "daniel hodan": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1744067", + "quality_rating": 4.5, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Daniel Hodan", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 6, + "tags": [ + "Gives good feedback", + "Caring", + "Participation matters", + "Inspirational", + "Get ready to read" + ], + "rmp_id": "1744067", + "instructor_id": "dmh017000", + "overall_grade_rating": 4.59, + "total_grade_count": 220, + "course_ratings": { + "MUSI2315": 4.59 + } + } + ], + "katrina rushing": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2833345", + "quality_rating": 4.8, + "difficulty_rating": 1.9, + "would_take_again": 92, + "original_rmp_format": "Katrina Rushing", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 12, + "tags": [ + "Amazing lectures ", + "Lots of homework", + "Caring", + "EXTRA CREDIT", + "Get ready to read" + ], + "rmp_id": "2833345", + "instructor_id": "kxr220042", + "overall_grade_rating": 4.39, + "total_grade_count": 692, + "course_ratings": { + "MUSI1306": 4.5, + "MUSI2328": 4.05, + "MUSI2329": 4.38, + "HONS3199": 5.0, + "MUSI3328": 5.0 + } + } + ], + "zirong gu": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/3040896", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Zirong Gu", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Get ready to read", "Test heavy", "Graded by few things"], + "rmp_id": "3040896", + "instructor_id": "zxg230006", + "overall_grade_rating": 2.46, + "total_grade_count": 18, + "course_ratings": { + "ACN6340": 2.46 + } + } + ], + "john sibert": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/189922", + "quality_rating": 3.7, + "difficulty_rating": 3.4, + "would_take_again": 61, + "original_rmp_format": "John Sibert", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 144, + "tags": [ + "Respected", + "Inspirational", + "Test heavy", + "Amazing lectures ", + "Accessible outside class" + ], + "rmp_id": "189922", + "instructor_id": "sibertj", + "overall_grade_rating": 3.64, + "total_grade_count": 1564, + "course_ratings": { + "CHEM1311": 3.01, + "CHEM1115": 4.96, + "CHEM1315": 4.42, + "CHEM3341": 3.46, + "CHEM1116": 4.98, + "CHEM1316": 4.6, + "CHEM2323": 2.96, + "CHEM2325": 3.21 + } + } + ], + "haokun du": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2898423", + "quality_rating": 4.7, + "difficulty_rating": 2.6, + "would_take_again": 91, + "original_rmp_format": "Haokun Du", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 11, + "tags": [ + "Amazing lectures ", + "Caring", + "EXTRA CREDIT", + "Clear grading criteria", + "Accessible outside class" + ], + "rmp_id": "2898423", + "instructor_id": "hxd180022", + "overall_grade_rating": 4.06, + "total_grade_count": 194, + "course_ratings": { + "OPRE3360": 4.06, + "OPRE3310": 4.06 + } + } + ], + "junya zhou": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3008351", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Junya Zhou", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": [], + "rmp_id": "3008351", + "instructor_id": "jxz230016", + "overall_grade_rating": 4.0, + "total_grade_count": 137, + "course_ratings": { + "BA3300": 4.0 + } + } + ], + "kenneth brewer": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/1653931", + "quality_rating": 4.9, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Kenneth Brewer", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 75, + "tags": [ + "Amazing lectures ", + "Get ready to read", + "Hilarious", + "Respected", + "Participation matters" + ], + "rmp_id": "1653931", + "instructor_id": "klb092000", + "overall_grade_rating": 4.48, + "total_grade_count": 653, + "course_ratings": { + "LIT3318": 4.04, + "HUMA1301": 4.47, + "LIT3321": 4.06, + "LIT3339": 4.76, + "LIT4329": 4.79, + "LIT2350": 4.56, + "LIT3300": 4.42, + "LIT1301": 4.48, + "LIT2320": 4.64, + "LIT3317": 4.43, + "LIT3319": 4.89, + "LIT4390": 5.0, + "LIT3337": 4.39 + } + } + ], + "benjamin carrion schaefer": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2283197", + "quality_rating": 4.4, + "difficulty_rating": 3.8, + "would_take_again": 81, + "original_rmp_format": "Benjamin Carrion Schaefer", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 31, + "tags": ["Amazing lectures ", "Inspirational", "Respected", "Tough grader", "Group projects"], + "rmp_id": "2283197", + "instructor_id": "bxc162630", + "overall_grade_rating": 4.14, + "total_grade_count": 351, + "course_ratings": { + "EEDG6304": 4.2, + "CE6304": 3.98, + "CS6304": 4.0, + "EE4370": 3.35, + "CE6370": 4.64, + "EEDG6370": 4.66, + "CE4370": 4.02 + } + } + ], + "austin cooper": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2709911", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Austin Cooper", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 4, + "tags": [ + "Hilarious", + "Group projects", + "Gives good feedback", + "Caring", + "Accessible outside class" + ], + "rmp_id": "2709911", + "instructor_id": "acc150730", + "overall_grade_rating": 3.74, + "total_grade_count": 278, + "course_ratings": { + "BCOM3300": 4.03, + "BCOM4300": 3.63, + "BCOM1300": 3.14 + } + } + ], + "samiha rouf": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/3015530", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Samiha Rouf", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 2, + "tags": ["Gives good feedback"], + "rmp_id": "3015530", + "instructor_id": "scr091020", + "overall_grade_rating": 3.13, + "total_grade_count": 224, + "course_ratings": { + "MATH1314": 3.34, + "MATH1325": 3.29, + "MATH2312": 2.34 + } + } + ], + "david marks": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2203347", + "quality_rating": 4.6, + "difficulty_rating": 2.6, + "would_take_again": 100, + "original_rmp_format": "David Marks", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 9, + "tags": [ + "Caring", + "Group projects", + "Clear grading criteria", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "2203347", + "instructor_id": "dem160430", + "overall_grade_rating": 4.23, + "total_grade_count": 593, + "course_ratings": { + "ATCM3346": 4.23, + "ATCM4346": 4.28, + "ATCM2345": 3.98, + "ATCM4319": 4.69, + "ANGM2335": 4.53, + "ANGM2345": 3.88, + "ANGM3373": 4.89, + "ANGM3346": 4.27, + "ATCM4364": 4.82 + } + } + ], + "girish bachani": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2958021", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Girish Bachani", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 8, + "tags": [ + "EXTRA CREDIT", + "Accessible outside class", + "Participation matters", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "2958021", + "instructor_id": "gxb151730", + "overall_grade_rating": 3.31, + "total_grade_count": 125, + "course_ratings": { + "FIN3320": 3.31 + } + } + ], + "sanda harabagiu": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/609200", + "quality_rating": 1.2, + "difficulty_rating": 3.3, + "would_take_again": 8, + "original_rmp_format": "Sanda Harabagiu", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 29, + "tags": [ + "Tough grader", + "Group projects", + "Lots of homework", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "609200", + "instructor_id": "sanda", + "overall_grade_rating": 4.51, + "total_grade_count": 771, + "course_ratings": { + "CS6364": 4.56, + "CS6320": 4.49, + "CS6322": 4.76, + "CS4395": 3.86 + } + } + ], + "saikat biswas": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2934958", + "quality_rating": 3.3, + "difficulty_rating": 2.7, + "would_take_again": 67, + "original_rmp_format": "Saikat Biswas", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 6, + "tags": ["Clear grading criteria", "Lecture heavy", "Test heavy", "Group projects"], + "rmp_id": "2934958", + "instructor_id": "sxb230137", + "overall_grade_rating": 2.94, + "total_grade_count": 416, + "course_ratings": { + "MATH1325": 2.72, + "MATH4334": 3.5, + "CS4334": 3.41, + "MATH6313": 4.06 + } + } + ], + "timothy farage": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/138341", + "quality_rating": 4.2, + "difficulty_rating": 2.1, + "would_take_again": 78, + "original_rmp_format": "Timothy Farage", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 236, + "tags": [ + "Hilarious", + "Amazing lectures ", + "Respected", + "Graded by few things", + "Inspirational" + ], + "rmp_id": "138341", + "instructor_id": "tfarage", + "overall_grade_rating": 4.51, + "total_grade_count": 2047, + "course_ratings": { + "SE3306": 4.49, + "CS4384": 4.9, + "CE2305": 4.5, + "CS2305": 4.2, + "CS3305": 4.64 + } + } + ], + "diane walsh": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1543352", + "quality_rating": 3.6, + "difficulty_rating": 3.3, + "would_take_again": 68, + "original_rmp_format": "Diane Walsh", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 53, + "tags": [ + "Lecture heavy", + "Clear grading criteria", + "Tough grader", + "Skip class? You won't pass.", + "Amazing lectures " + ], + "rmp_id": "1543352", + "instructor_id": "dxg022000", + "overall_grade_rating": 3.97, + "total_grade_count": 1249, + "course_ratings": { + "SPAU3301": 3.98, + "COMD6112": 5.0, + "COMD6330": 5.0, + "SPAU3304": 3.82, + "SPAU3345": 3.74, + "NSC3345": 3.84 + } + } + ], + "zhe zhang": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1946693", + "quality_rating": 3.8, + "difficulty_rating": 2.8, + "would_take_again": 69, + "original_rmp_format": "Zhe Zhang", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 17, + "tags": [ + "Group projects", + "Amazing lectures ", + "Clear grading criteria", + "Hilarious", + "Graded by few things" + ], + "rmp_id": "1946693", + "instructor_id": "zxz145430", + "overall_grade_rating": 4.58, + "total_grade_count": 801, + "course_ratings": { + "BUAN6324": 4.31, + "MIS6324": 4.46, + "OPRE6399": 4.2, + "BUAN6356": 4.63, + "MIS6356": 4.74 + } + } + ], + "cuneyd kaya": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2016875", + "quality_rating": 3.7, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Cuneyd Kaya", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 3, + "tags": [ + "Caring", + "Gives good feedback", + "Hilarious", + "Graded by few things", + "Accessible outside class" + ], + "rmp_id": "2016875", + "instructor_id": "cckaya", + "overall_grade_rating": 4.58, + "total_grade_count": 498, + "course_ratings": { + "BUAN6320": 4.64, + "ITSS4300": 4.32, + "ITSS4380": 4.14 + } + } + ], + "tiffany sidders": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2950274", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Tiffany Sidders", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Participation matters", "Gives good feedback", "Caring"], + "rmp_id": "2950274", + "instructor_id": "txs220060", + "overall_grade_rating": 3.71, + "total_grade_count": 74, + "course_ratings": { + "RHET1302": 3.71 + } + } + ], + "antonio paes": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2824376", + "quality_rating": 5, + "difficulty_rating": 5, + "would_take_again": 100, + "original_rmp_format": "Antonio Paes", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Gives good feedback", "Graded by few things"], + "rmp_id": "2824376", + "instructor_id": "app210006", + "overall_grade_rating": 4.41, + "total_grade_count": 225, + "course_ratings": { + "BUAN6346": 4.25, + "MIS6346": 4.48, + "BUAN6342": 4.67, + "MIS6309": 4.02, + "BUAN6340": 4.88 + } + } + ], + "alana king": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2363203", + "quality_rating": 4.9, + "difficulty_rating": 1.6, + "would_take_again": 100, + "original_rmp_format": "Alana King", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 16, + "tags": [ + "Caring", + "EXTRA CREDIT", + "Gives good feedback", + "Clear grading criteria", + "Group projects" + ], + "rmp_id": "2363203", + "instructor_id": "axk173530", + "overall_grade_rating": 3.94, + "total_grade_count": 155, + "course_ratings": { + "RHET1302": 3.75, + "LIT2331": 4.19 + } + } + ], + "sheryl skaggs": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/1146910", + "quality_rating": 4.1, + "difficulty_rating": 2.9, + "would_take_again": 71, + "original_rmp_format": "Sheryl Skaggs", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 19, + "tags": [ + "Gives good feedback", + "Caring", + "Participation matters", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "1146910", + "instructor_id": "slskaggs", + "overall_grade_rating": 4.37, + "total_grade_count": 334, + "course_ratings": { + "SOC1301": 4.94, + "SOC6344": 4.32, + "SOC3305": 3.45, + "SOC6350": 4.03, + "SOC4305": 4.35, + "PPPE6312": 4.63, + "SOC6312": 4.82, + "SOC4375": 3.83, + "SOC4306": 4.07 + } + } + ], + "jacopo ferruzzi": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2682447", + "quality_rating": 4, + "difficulty_rating": 4.3, + "would_take_again": 75, + "original_rmp_format": "Jacopo Ferruzzi", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 4, + "tags": [ + "Tough grader", + "Lots of homework", + "Test heavy", + "Participation matters", + "Lecture heavy" + ], + "rmp_id": "2682447", + "instructor_id": "jxf200008", + "overall_grade_rating": 3.12, + "total_grade_count": 185, + "course_ratings": { + "BMEN2320": 3.12 + } + } + ], + "banks miller": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1622673", + "quality_rating": 4.3, + "difficulty_rating": 3.4, + "would_take_again": 81, + "original_rmp_format": "Banks Miller", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 30, + "tags": [ + "Test heavy", + "Get ready to read", + "Amazing lectures ", + "Lecture heavy", + "Tough grader" + ], + "rmp_id": "1622673", + "instructor_id": "bxm093000", + "overall_grade_rating": 3.9, + "total_grade_count": 826, + "course_ratings": { + "PSCI6311": 3.86, + "GOVT2305": 4.03, + "PSCI4341": 3.84, + "PSCI4301": 3.48, + "PSCI3322": 3.81, + "PSCI6343": 4.7, + "PSCI6347": 4.58 + } + } + ], + "rodger bennett": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2431243", + "quality_rating": 3.6, + "difficulty_rating": 2.9, + "would_take_again": 60, + "original_rmp_format": "Rodger Bennett", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 15, + "tags": [ + "Skip class? You won't pass.", + "Clear grading criteria", + "Lots of homework", + "Lecture heavy", + "EXTRA CREDIT" + ], + "rmp_id": "2431243", + "instructor_id": "rxb180025", + "overall_grade_rating": 4.17, + "total_grade_count": 380, + "course_ratings": { + "MUSI2322": 4.33, + "MUSI2328": 3.65, + "MUSI3342": 4.05, + "MUSI4348": 4.41, + "MUSI1306": 4.18 + } + } + ], + "jeeah ham": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2924036", + "quality_rating": 4.3, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Jeeah Ham", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 4, + "tags": [ + "Caring", + "Respected", + "Clear grading criteria", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "2924036", + "instructor_id": "jxh220004", + "overall_grade_rating": 4.19, + "total_grade_count": 155, + "course_ratings": { + "RHET1302": 4.19 + } + } + ], + "hlaing minn": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1246976", + "quality_rating": 2.6, + "difficulty_rating": 4.2, + "would_take_again": 0, + "original_rmp_format": "Hlaing Minn", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 19, + "tags": [ + "Tough grader", + "Test heavy", + "Get ready to read", + "Skip class? You won't pass.", + "Lecture heavy" + ], + "rmp_id": "1246976", + "instructor_id": "hxm025000", + "overall_grade_rating": 4.07, + "total_grade_count": 242, + "course_ratings": { + "EESC6349": 4.01, + "EE4360": 4.06, + "EESC6352": 4.16 + } + } + ], + "xianming dai": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2281594", + "quality_rating": 3.8, + "difficulty_rating": 2.8, + "would_take_again": 72, + "original_rmp_format": "Xianming Dai", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 18, + "tags": [ + "Clear grading criteria", + "Gives good feedback", + "EXTRA CREDIT", + "Respected", + "Test heavy" + ], + "rmp_id": "2281594", + "instructor_id": "xxd161630", + "overall_grade_rating": 4.35, + "total_grade_count": 244, + "course_ratings": { + "MECH6375": 4.67, + "MECH5373": 4.62, + "MECH3320": 4.24 + } + } + ], + "christopher reilly": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2898179", + "quality_rating": 1.8, + "difficulty_rating": 3.8, + "would_take_again": 20, + "original_rmp_format": "Christopher Reilly", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 5, + "tags": ["Lecture heavy", "Test heavy", "Graded by few things"], + "rmp_id": "2898179", + "instructor_id": "cxr220013", + "overall_grade_rating": 3.92, + "total_grade_count": 238, + "course_ratings": { + "FIN3320": 3.92 + } + } + ], + "jiahui guo": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/3039274", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Jiahui Guo", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Get ready to read", "Group projects"], + "rmp_id": "3039274", + "instructor_id": "jxg230022", + "overall_grade_rating": 3.84, + "total_grade_count": 68, + "course_ratings": { + "ACN6330": 4.28, + "CGS2301": 3.63 + } + } + ], + "charles haseman": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2434659", + "quality_rating": 3.7, + "difficulty_rating": 2, + "would_take_again": 69, + "original_rmp_format": "Charles Haseman", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 32, + "tags": [ + "Group projects", + "Participation matters", + "Hilarious", + "Graded by few things", + "Caring" + ], + "rmp_id": "2434659", + "instructor_id": "cxh180018", + "overall_grade_rating": 4.14, + "total_grade_count": 640, + "course_ratings": { + "MKT3300": 4.04, + "MKT4336": 4.26, + "MKT4335": 4.26, + "MKT4333": 4.76 + } + } + ], + "atanas hansen": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2478192", + "quality_rating": 4.9, + "difficulty_rating": 2.2, + "would_take_again": 100, + "original_rmp_format": "Atanas Hansen", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 28, + "tags": [ + "Respected", + "Gives good feedback", + "Caring", + "Accessible outside class", + "Amazing lectures " + ], + "rmp_id": "2478192", + "instructor_id": "ayt061000", + "overall_grade_rating": 3.63, + "total_grade_count": 605, + "course_ratings": { + "ITSS3300": 3.64, + "ITSS4356": 3.6 + } + } + ], + "jie zhang": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2232002", + "quality_rating": 2.5, + "difficulty_rating": 2.3, + "would_take_again": 50, + "original_rmp_format": "Jie Zhang", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 4, + "tags": [ + "Group projects", + "Lecture heavy", + "Get ready to read", + "Graded by few things", + "Accessible outside class" + ], + "rmp_id": "2232002", + "instructor_id": "jxz156730", + "overall_grade_rating": 4.37, + "total_grade_count": 258, + "course_ratings": { + "MECH6318": 4.44, + "MECH6342": 4.43, + "MECH4365": 3.7 + } + } + ], + "jesse poucher": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/1831256", + "quality_rating": 4.1, + "difficulty_rating": 3.1, + "would_take_again": 61, + "original_rmp_format": "Jesse Poucher", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 21, + "tags": [ + "EXTRA CREDIT", + "Amazing lectures ", + "Get ready to read", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "1831256", + "instructor_id": "jwp082000", + "overall_grade_rating": 3.75, + "total_grade_count": 697, + "course_ratings": { + "PSY4331": 3.84, + "PSY3392": 3.52 + } + } + ], + "casey johnson": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2255006", + "quality_rating": 2.4, + "difficulty_rating": 4.4, + "would_take_again": 25, + "original_rmp_format": "Casey Johnson", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 16, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Clear grading criteria", + "Lots of homework", + "Graded by few things" + ], + "rmp_id": "2255006", + "instructor_id": "caj150430", + "overall_grade_rating": 2.87, + "total_grade_count": 797, + "course_ratings": { + "ATCM6305": 4.17, + "ATCM3311": 2.68, + "ATCM3306": 2.67, + "ATCM3308": 2.33, + "ATCM3368": 3.66, + "ANGM3308": 2.82, + "ANGM3311": 2.8, + "ANGM4317": 4.68, + "ATCM6318": 3.96, + "ATCM4397": 4.32, + "ATCM4319": 2.44, + "ATCM4316": 5.0, + "ANGM3306": 2.6, + "ANGM4323": 3.38 + } + } + ], + "andrew scott": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2063946", + "quality_rating": 3.5, + "difficulty_rating": 3.7, + "would_take_again": 50, + "original_rmp_format": "Andrew Scott", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 6, + "tags": [ + "Lots of homework", + "Graded by few things", + "Participation matters", + "Skip class? You won't pass.", + "Group projects" + ], + "rmp_id": "2063946", + "instructor_id": "afs140330", + "overall_grade_rating": 3.94, + "total_grade_count": 221, + "course_ratings": { + "ATCM6321": 5.0, + "ATCM2355": 3.33, + "ATCM3355": 3.74, + "ATCM6001": 5.0, + "ATCM3356": 4.09, + "ATCM6395": 4.94 + } + } + ], + "xtine burrough": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2783829", + "quality_rating": 5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Xtine Burrough", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 2, + "tags": [ + "Amazing lectures ", + "Gives good feedback", + "Caring", + "Graded by few things", + "Accessible outside class" + ], + "rmp_id": "2783829", + "instructor_id": "cxb153930", + "overall_grade_rating": 4.29, + "total_grade_count": 215, + "course_ratings": { + "ATCM6377": 4.69, + "ATCM4330": 4.0, + "ATCM3330": 4.37, + "ATCM6304": 4.86, + "ATCM6330": 4.88, + "ATCM2335": 4.25, + "ATCM6322": 5.0 + } + } + ], + "shahin modjarrad": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2058173", + "quality_rating": 4.4, + "difficulty_rating": 2.2, + "would_take_again": 90, + "original_rmp_format": "Shahin Modjarrad", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 10, + "tags": [ + "Participation matters", + "EXTRA CREDIT", + "Graded by few things", + "Get ready to read", + "Amazing lectures " + ], + "rmp_id": "2058173", + "instructor_id": "ssm140230", + "overall_grade_rating": 4.56, + "total_grade_count": 181, + "course_ratings": { + "PSCI4364": 4.56 + } + } + ], + "kimberly hill": [ + { + "department": "Arts amp Humanities", + "url": "https://www.ratemyprofessors.com/professor/2430652", + "quality_rating": 4.4, + "difficulty_rating": 2.5, + "would_take_again": 88, + "original_rmp_format": "Kimberly Hill", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 8, + "tags": [ + "Inspirational", + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback", + "Get ready to read" + ], + "rmp_id": "2430652", + "instructor_id": "kdh140430", + "overall_grade_rating": 4.23, + "total_grade_count": 504, + "course_ratings": { + "HIST4357": 3.82, + "HUHI6314": 4.27, + "ARHM3342": 4.24, + "HIST6325": 4.32, + "HIST4381": 4.2, + "HIST6330": 4.41, + "HIST3366": 4.05, + "HIST3390": 3.79, + "ARHM6310": 4.41, + "HIST1301": 4.34, + "HIST3301": 4.11 + } + } + ], + "jared edgerton": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2883314", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Jared Edgerton", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Get ready to read", "EXTRA CREDIT", "Group projects"], + "rmp_id": "2883314", + "instructor_id": "jxe220000", + "overall_grade_rating": 4.31, + "total_grade_count": 286, + "course_ratings": { + "PSCI3328": 4.32, + "PSCI4359": 4.13, + "PSCI6350": 4.7, + "EPPS6316": 4.46 + } + } + ], + "john fonseka": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/200233", + "quality_rating": 3.3, + "difficulty_rating": 3.8, + "would_take_again": 58, + "original_rmp_format": "John Fonseka", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 36, + "tags": [ + "Beware of pop quizzes", + "Tough grader", + "Test heavy", + "Graded by few things", + "Skip class? You won't pass." + ], + "rmp_id": "200233", + "instructor_id": "kjp", + "overall_grade_rating": 3.11, + "total_grade_count": 718, + "course_ratings": { + "ENGR3341": 3.1, + "EESC6349": 3.92 + } + } + ], + "mehmet ayvaci": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1862431", + "quality_rating": 1.7, + "difficulty_rating": 4.1, + "would_take_again": 20, + "original_rmp_format": "Mehmet Ayvaci", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 11, + "tags": [ + "Tough grader", + "Lots of homework", + "Beware of pop quizzes", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "1862431", + "instructor_id": "mua120030", + "overall_grade_rating": 4.45, + "total_grade_count": 289, + "course_ratings": { + "HMGT6323": 4.43, + "HMGT6334": 4.47, + "MIS6317": 4.75 + } + } + ], + "jackie kimzey": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2112288", + "quality_rating": 3.7, + "difficulty_rating": 3, + "would_take_again": 60, + "original_rmp_format": "Jackie Kimzey", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 28, + "tags": [ + "Group projects", + "Participation matters", + "Tough grader", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2112288", + "instructor_id": "jxk092000", + "overall_grade_rating": 3.93, + "total_grade_count": 1298, + "course_ratings": { + "ENTP6370": 4.15, + "ENTP3301": 3.43, + "ENTP6378": 3.62 + } + } + ], + "yan zhu": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/3035287", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Yan Zhu", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 1, + "tags": ["Tough grader", "Participation matters", "Test heavy"], + "rmp_id": "3035287", + "instructor_id": "yxz200050", + "overall_grade_rating": 4.18, + "total_grade_count": 51, + "course_ratings": { + "ITSS4381": 4.18 + } + } + ], + "sara johnson": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/2745071", + "quality_rating": 4.3, + "difficulty_rating": 1.9, + "would_take_again": 81, + "original_rmp_format": "Sara Johnson", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 36, + "tags": [ + "Clear grading criteria", + "EXTRA CREDIT", + "Caring", + "Lecture heavy", + "Amazing lectures " + ], + "rmp_id": "2745071", + "instructor_id": "skj170230", + "overall_grade_rating": 4.03, + "total_grade_count": 2427, + "course_ratings": { + "GOVT2305": 3.92, + "GOVT2306": 4.21, + "EPPS2301": 3.75 + } + } + ], + "taimur khan": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2400950", + "quality_rating": 4.9, + "difficulty_rating": 1.8, + "would_take_again": 98, + "original_rmp_format": "Taimur Khan", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 44, + "tags": [ + "Caring", + "Inspirational", + "Respected", + "Accessible outside class", + "Gives good feedback" + ], + "rmp_id": "2400950", + "instructor_id": "txk123530", + "overall_grade_rating": 4.07, + "total_grade_count": 853, + "course_ratings": { + "ITSS4330": 4.01, + "ITSS4361": 4.47, + "ITSS4362": 4.13 + } + } + ], + "metin cakanyildirim": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/998718", + "quality_rating": 2.5, + "difficulty_rating": 4.3, + "would_take_again": 40, + "original_rmp_format": "Metin Cakanyildirim", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 12, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "998718", + "instructor_id": "metin", + "overall_grade_rating": 4.35, + "total_grade_count": 209, + "course_ratings": { + "OPRE7310": 4.46, + "OPRE6377": 4.33, + "OPRE6366": 4.31, + "OPRE6389": 4.49 + } + } + ], + "daniel moss": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2199048", + "quality_rating": 3.8, + "difficulty_rating": 2.2, + "would_take_again": 64, + "original_rmp_format": "Daniel Moss", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 14, + "tags": [ + "Group projects", + "Gives good feedback", + "Participation matters", + "EXTRA CREDIT", + "Caring" + ], + "rmp_id": "2199048", + "instructor_id": "djm161130", + "overall_grade_rating": 3.82, + "total_grade_count": 135, + "course_ratings": { + "COMM1311": 3.82 + } + } + ], + "greg ozbirn": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/182581", + "quality_rating": 4.1, + "difficulty_rating": 3.2, + "would_take_again": 81, + "original_rmp_format": "Greg Ozbirn", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 190, + "tags": [ + "Clear grading criteria", + "Lots of homework", + "Respected", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "182581", + "instructor_id": "ozbirn", + "overall_grade_rating": 3.65, + "total_grade_count": 2590, + "course_ratings": { + "CS5343": 4.67, + "CE3345": 3.6, + "CS3345": 3.83, + "CS4348": 3.33, + "SE4348": 3.34, + "SE3345": 3.33, + "CS5348": 4.41, + "CS4336": 4.1 + } + } + ], + "michael saenz": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2231376", + "quality_rating": 4, + "difficulty_rating": 1.4, + "would_take_again": 73, + "original_rmp_format": "Michael Saenz", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 11, + "tags": [ + "Clear grading criteria", + "EXTRA CREDIT", + "Gives good feedback", + "Caring", + "Participation matters" + ], + "rmp_id": "2231376", + "instructor_id": "mas130030", + "overall_grade_rating": 4.66, + "total_grade_count": 374, + "course_ratings": { + "COMM1311": 4.65, + "COMM1315": 4.66 + } + } + ], + "maria hasenhuttl": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1284321", + "quality_rating": 2.7, + "difficulty_rating": 3, + "would_take_again": 37, + "original_rmp_format": "Maria Hasenhuttl", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 96, + "tags": [ + "Lots of homework", + "Participation matters", + "Get ready to read", + "So many papers", + "Lecture heavy" + ], + "rmp_id": "1284321", + "instructor_id": "h1562", + "overall_grade_rating": 4.55, + "total_grade_count": 1840, + "course_ratings": { + "OBHR3310": 4.02, + "OB6301": 4.56, + "BA1100": 3.79, + "OB6331": 4.84 + } + } + ], + "carl sechen": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1167235", + "quality_rating": 4.2, + "difficulty_rating": 4, + "would_take_again": 83, + "original_rmp_format": "Carl Sechen", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 35, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "Group projects", + "Amazing lectures ", + "Test heavy" + ], + "rmp_id": "1167235", + "instructor_id": "cms057000", + "overall_grade_rating": 4.02, + "total_grade_count": 562, + "course_ratings": { + "EECT6325": 4.14, + "CE6325": 3.74, + "EECT7325": 4.66, + "EE4325": 3.67, + "CE3311": 4.26, + "EE3311": 4.17 + } + } + ], + "luba ketsler": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1242490", + "quality_rating": 4.4, + "difficulty_rating": 2.4, + "would_take_again": 87, + "original_rmp_format": "Luba Ketsler", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 205, + "tags": [ + "Caring", + "Amazing lectures ", + "Clear grading criteria", + "Respected", + "Gives good feedback" + ], + "rmp_id": "1242490", + "instructor_id": "lxk010300", + "overall_grade_rating": 3.84, + "total_grade_count": 3680, + "course_ratings": { + "ECON2301": 3.6, + "ECON3330": 4.27 + } + } + ], + "joseph friedman": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2592300", + "quality_rating": 2.1, + "difficulty_rating": 3.6, + "would_take_again": 29, + "original_rmp_format": "Joseph Friedman", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 17, + "tags": [ + "Get ready to read", + "Tough grader", + "Lots of homework", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "2592300", + "instructor_id": "jsf160330", + "overall_grade_rating": 3.95, + "total_grade_count": 279, + "course_ratings": { + "EE3101": 4.21, + "CE3101": 3.46, + "CE3301": 3.87, + "EE3301": 3.99, + "EE2301": 3.78, + "CE2301": 3.51, + "CE6325": 4.53, + "EECT6325": 3.95 + } + } + ], + "florence lowe": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2819081", + "quality_rating": 3.5, + "difficulty_rating": 2, + "would_take_again": 50, + "original_rmp_format": "Florence Lowe", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 2, + "tags": ["Participation matters", "Tough grader", "Group projects", "Amazing lectures "], + "rmp_id": "2819081", + "instructor_id": "fxl210009", + "overall_grade_rating": 4.53, + "total_grade_count": 450, + "course_ratings": { + "MIS6393": 4.53 + } + } + ], + "engin calisir": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2457521", + "quality_rating": 4.3, + "difficulty_rating": 3.3, + "would_take_again": 83, + "original_rmp_format": "Engin Calisir", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 12, + "tags": ["Gives good feedback", "Caring", "Respected", "Inspirational", "Hilarious"], + "rmp_id": "2457521", + "instructor_id": "exc030100", + "overall_grade_rating": 4.35, + "total_grade_count": 871, + "course_ratings": { + "ITSS4300": 4.11, + "ITSS4354": 3.9, + "MIS6389": 4.19, + "BUAN6320": 4.8, + "MIS6363": 4.54 + } + } + ], + "marilyn waligore": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1434747", + "quality_rating": 3.8, + "difficulty_rating": 2.7, + "would_take_again": 67, + "original_rmp_format": "Marilyn Waligore", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 12, + "tags": ["Gives good feedback", "Inspirational", "Caring", "Respected", "Lecture heavy"], + "rmp_id": "1434747", + "instructor_id": "waligore", + "overall_grade_rating": 4.51, + "total_grade_count": 258, + "course_ratings": { + "ARTS3377": 4.53, + "HUAS6391": 4.94, + "VPAS6336": 4.21, + "AHST3324": 4.41, + "ARTS2350": 4.74, + "ARTS1301": 5.0, + "ARTS4372": 4.11, + "VPAS6391": 5.0 + } + } + ], + "liugen song": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2559169", + "quality_rating": 4.1, + "difficulty_rating": 3.7, + "would_take_again": 75, + "original_rmp_format": "Liugen Song", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 12, + "tags": [ + "EXTRA CREDIT", + "Inspirational", + "Tough grader", + "Participation matters", + "Amazing lectures " + ], + "rmp_id": "2559169", + "instructor_id": "lxs190018", + "overall_grade_rating": 4.43, + "total_grade_count": 468, + "course_ratings": { + "MIS6363": 4.43 + } + } + ], + "michael burton": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2365377", + "quality_rating": 2.2, + "difficulty_rating": 4.1, + "would_take_again": 22, + "original_rmp_format": "Michael Burton", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 9, + "tags": [ + "Test heavy", + "Lecture heavy", + "Skip class? You won't pass.", + "Graded by few things", + "Get ready to read" + ], + "rmp_id": "2365377", + "instructor_id": "mdb150330", + "overall_grade_rating": 3.5, + "total_grade_count": 317, + "course_ratings": { + "NSC4372": 3.4, + "ACN7372": 4.72 + } + } + ], + "lawrence chung": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/411477", + "quality_rating": 2.2, + "difficulty_rating": 3.9, + "would_take_again": 17, + "original_rmp_format": "Lawrence Chung", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 41, + "tags": [ + "Group projects", + "Tough grader", + "Skip class? You won't pass.", + "Participation matters", + "Lecture heavy" + ], + "rmp_id": "411477", + "instructor_id": "chung", + "overall_grade_rating": 3.9, + "total_grade_count": 760, + "course_ratings": { + "SE4351": 3.75, + "SE6362": 4.29, + "SE6361": 4.44, + "SE3306": 3.39, + "CS6361": 4.17, + "SE4352": 3.51, + "CS6359": 4.44, + "CS4376": 3.49 + } + } + ], + "emily choi": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1686832", + "quality_rating": 4.4, + "difficulty_rating": 2.4, + "would_take_again": 81, + "original_rmp_format": "Emily Choi", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 33, + "tags": [ + "Group projects", + "Gives good feedback", + "Participation matters", + "Caring", + "Inspirational" + ], + "rmp_id": "1686832", + "instructor_id": "exc113230", + "overall_grade_rating": 4.18, + "total_grade_count": 518, + "course_ratings": { + "BPS4305": 3.93, + "ENTP3320": 3.89, + "ENTP4360": 4.26, + "ENTP4395": 4.44, + "ENTP6360": 4.58, + "ENTP3301": 4.15, + "ENTP4399": 4.56 + } + } + ], + "david wright": [ + { + "department": "Undergraduate Studies", + "url": "https://www.ratemyprofessors.com/professor/114804", + "quality_rating": 3.4, + "difficulty_rating": 3.1, + "would_take_again": 53, + "original_rmp_format": "David Wright", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 32, + "tags": [ + "Lecture heavy", + "Tough grader", + "Graded by few things", + "So many papers", + "Get ready to read" + ], + "rmp_id": "114804", + "instructor_id": "wright", + "overall_grade_rating": 4.22, + "total_grade_count": 609, + "course_ratings": { + "BIS3320": 4.22 + } + } + ], + "joonhwi joo": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3015748", + "quality_rating": 2.3, + "difficulty_rating": 4.3, + "would_take_again": 33, + "original_rmp_format": "Joonhwi Joo", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 3, + "tags": ["Tough grader", "Hilarious", "Respected", "Test heavy"], + "rmp_id": "3015748", + "instructor_id": "jxj180020", + "overall_grade_rating": 4.38, + "total_grade_count": 434, + "course_ratings": { + "BUAN6312": 4.34, + "MKT4337": 4.46, + "BUAN6337": 4.41 + } + } + ], + "jason slinker": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1529104", + "quality_rating": 4.2, + "difficulty_rating": 2.5, + "would_take_again": 93, + "original_rmp_format": "Jason Slinker", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 77, + "tags": [ + "EXTRA CREDIT", + "Clear grading criteria", + "Amazing lectures ", + "Caring", + "Hilarious" + ], + "rmp_id": "1529104", + "instructor_id": "jds107020", + "overall_grade_rating": 4.3, + "total_grade_count": 909, + "course_ratings": { + "PHYS4373": 4.82, + "PHYS2325": 4.3, + "PHYS1301": 3.57 + } + } + ], + "sriram sivaramakrishnan": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2893353", + "quality_rating": 4.3, + "difficulty_rating": 2.3, + "would_take_again": 67, + "original_rmp_format": "Sriram Sivaramakrishnan", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 3, + "tags": ["Participation matters", "Group projects", "Amazing lectures "], + "rmp_id": "2893353", + "instructor_id": "sxs230045", + "overall_grade_rating": 4.77, + "total_grade_count": 443, + "course_ratings": { + "MIS6308": 4.74, + "MIS6313": 4.81 + } + } + ], + "shujing sun": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2735370", + "quality_rating": 3.5, + "difficulty_rating": 3.9, + "would_take_again": 54, + "original_rmp_format": "Shujing Sun", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 13, + "tags": [ + "Group projects", + "Tough grader", + "Test heavy", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2735370", + "instructor_id": "sxs200168", + "overall_grade_rating": 4.5, + "total_grade_count": 242, + "course_ratings": { + "BUAN6356": 4.44, + "MIS6356": 4.69 + } + } + ], + "charles cannon": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2626210", + "quality_rating": 4.3, + "difficulty_rating": 2, + "would_take_again": 67, + "original_rmp_format": "Charles Cannon", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 3, + "tags": [ + "EXTRA CREDIT", + "Participation matters", + "Clear grading criteria", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "2626210", + "instructor_id": "cxc190014", + "overall_grade_rating": 4.49, + "total_grade_count": 333, + "course_ratings": { + "COMM1315": 4.49 + } + } + ], + "vinita hajeri": [ + { + "department": "Science", + "url": "https://www.ratemyprofessors.com/professor/2433111", + "quality_rating": 3.1, + "difficulty_rating": 2.9, + "would_take_again": 43, + "original_rmp_format": "Vinita Hajeri", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 14, + "tags": [ + "Get ready to read", + "Group projects", + "Lots of homework", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2433111", + "instructor_id": "vxh151030", + "overall_grade_rating": 4.12, + "total_grade_count": 357, + "course_ratings": { + "NATS1101": 4.77, + "BIOL3320": 3.85, + "NATS4390": 4.36, + "BIOL5330": 4.87 + } + } + ], + "alayna thomas": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2939305", + "quality_rating": 4.9, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Alayna Thomas", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 7, + "tags": [ + "EXTRA CREDIT", + "Participation matters", + "Group projects", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2939305", + "instructor_id": "agt160030", + "overall_grade_rating": 4.42, + "total_grade_count": 170, + "course_ratings": { + "OBHR3330": 4.42 + } + } + ], + "jyoti aggarwal": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2967876", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Jyoti Aggarwal", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 2, + "tags": [ + "Participation matters", + "Tough grader", + "Amazing lectures ", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "2967876", + "instructor_id": "jxa210047", + "overall_grade_rating": 3.66, + "total_grade_count": 19, + "course_ratings": { + "PA3333": 3.66 + } + } + ], + "reza aria": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2923056", + "quality_rating": 4.3, + "difficulty_rating": 2.5, + "would_take_again": 78, + "original_rmp_format": "Reza Aria", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 27, + "tags": [ + "Group projects", + "Caring", + "Get ready to read", + "Amazing lectures ", + "Inspirational" + ], + "rmp_id": "2923056", + "instructor_id": "rxa230057", + "overall_grade_rating": 4.07, + "total_grade_count": 573, + "course_ratings": { + "BUAN6390": 4.56, + "ITSS4300": 3.79, + "MIS6349": 4.47, + "MIS6398": 4.65 + } + } + ], + "xinyao kong": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/3015475", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Xinyao Kong", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 2, + "tags": ["Amazing lectures ", "Caring", "Participation matters", "Clear grading criteria"], + "rmp_id": "3015475", + "instructor_id": "xxk230000", + "overall_grade_rating": 4.57, + "total_grade_count": 120, + "course_ratings": { + "MKT3300": 4.57 + } + } + ], + "karren knowlton": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3026455", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Karren Knowlton", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 1, + "tags": ["Participation matters", "Amazing lectures ", "Caring"], + "rmp_id": "3026455", + "instructor_id": "kxk230060", + "overall_grade_rating": 3.78, + "total_grade_count": 107, + "course_ratings": { + "OBHR3310": 3.78 + } + } + ], + "hongbing lu": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1568595", + "quality_rating": 3.9, + "difficulty_rating": 3.9, + "would_take_again": 71, + "original_rmp_format": "Hongbing LU", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 8, + "tags": [ + "Clear grading criteria", + "Lecture heavy", + "Skip class? You won't pass.", + "Group projects", + "Amazing lectures " + ], + "rmp_id": "1568595", + "instructor_id": "hxl101000", + "overall_grade_rating": 4.44, + "total_grade_count": 1135, + "course_ratings": { + "MECH2120": 4.41, + "MECH6306": 4.62, + "MECH6350": 4.63, + "MECH6355": 4.91 + } + } + ], + "kristin tesmer": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2829129", + "quality_rating": 3.3, + "difficulty_rating": 4, + "would_take_again": 57, + "original_rmp_format": "Kristin Tesmer", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 7, + "tags": [ + "Lecture heavy", + "Tough grader", + "Participation matters", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "2829129", + "instructor_id": "kmj063000", + "overall_grade_rating": 3.84, + "total_grade_count": 593, + "course_ratings": { + "HMGT3310": 3.89, + "HMGT3301": 3.77 + } + } + ], + "janos turi": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1185155", + "quality_rating": 2.3, + "difficulty_rating": 3.5, + "would_take_again": 23, + "original_rmp_format": "Janos Turi", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 17, + "tags": [ + "Get ready to read", + "Test heavy", + "Lots of homework", + "Lecture heavy", + "Tough grader" + ], + "rmp_id": "1185155", + "instructor_id": "turi", + "overall_grade_rating": 2.93, + "total_grade_count": 447, + "course_ratings": { + "MATH2418": 2.3, + "MATH3351": 2.93, + "MATH6321": 4.66, + "MATH4362": 3.53 + } + } + ], + "domi oh": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2916071", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Domi Oh", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 4, + "tags": [ + "Participation matters", + "Caring", + "Inspirational", + "Group projects", + "Gives good feedback" + ], + "rmp_id": "2916071", + "instructor_id": "dxo210002", + "overall_grade_rating": 4.76, + "total_grade_count": 166, + "course_ratings": { + "MUSI2317": 4.68, + "MUSI3388": 4.8, + "MUSI3181": 5.0 + } + } + ], + "robert hart": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2487729", + "quality_rating": 4.7, + "difficulty_rating": 3.2, + "would_take_again": 100, + "original_rmp_format": "Robert Hart", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 6, + "tags": [ + "Gives good feedback", + "Caring", + "Respected", + "Participation matters", + "Group projects" + ], + "rmp_id": "2487729", + "instructor_id": "rxh124630", + "overall_grade_rating": 4.27, + "total_grade_count": 1925, + "course_ratings": { + "MECH4381": 4.23, + "MECH4382": 4.35, + "MECH2340": 3.97 + } + } + ], + "bilal akin": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1971962", + "quality_rating": 4.8, + "difficulty_rating": 2.5, + "would_take_again": 93, + "original_rmp_format": "Bilal Akin", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 16, + "tags": [ + "Amazing lectures ", + "Respected", + "Accessible outside class", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "1971962", + "instructor_id": "bxa123330", + "overall_grade_rating": 3.95, + "total_grade_count": 436, + "course_ratings": { + "ENGR2300": 3.51, + "EEPE6354": 4.65, + "CE4205": 4.22, + "EE4205": 4.47, + "EEPE6356": 4.77 + } + } + ], + "walter johnston": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1507675", + "quality_rating": 3.5, + "difficulty_rating": 2.2, + "would_take_again": 46, + "original_rmp_format": "Walter Johnston", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 65, + "tags": [ + "Tough grader", + "Tests are tough", + "Beware of pop quizzes", + "Skip class? You won't pass.", + "Lots of homework" + ], + "rmp_id": "1507675", + "instructor_id": "wlj031000", + "overall_grade_rating": 4.84, + "total_grade_count": 817, + "course_ratings": { + "MIS6357": 4.94, + "BUAN6357": 4.86, + "ITSS4351": 4.74, + "BUAN6356": 4.84 + } + } + ], + "nimali abeykoon": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2301342", + "quality_rating": 3.9, + "difficulty_rating": 2.7, + "would_take_again": 74, + "original_rmp_format": "Nimali Abeykoon", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 50, + "tags": [ + "Participation matters", + "Caring", + "Skip class? You won't pass.", + "Clear grading criteria", + "Lots of homework" + ], + "rmp_id": "2301342", + "instructor_id": "nxa124430", + "overall_grade_rating": 3.75, + "total_grade_count": 2780, + "course_ratings": { + "CHEM1111": 4.25, + "CHEM1112": 4.29, + "CHEM1311": 2.64, + "CHEM3472": 3.15, + "CHEM1312": 2.37, + "CHEM2123": 4.95, + "CHEM2125": 4.6 + } + } + ], + "james harrington": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/2057092", + "quality_rating": 4.4, + "difficulty_rating": 2.5, + "would_take_again": 86, + "original_rmp_format": "James Harrington", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 10, + "tags": [ + "Clear grading criteria", + "Participation matters", + "EXTRA CREDIT", + "Gives good feedback", + "Group projects" + ], + "rmp_id": "2057092", + "instructor_id": "jxh134630", + "overall_grade_rating": 4.62, + "total_grade_count": 387, + "course_ratings": { + "PA7330": 4.05, + "EPPS6316": 4.25, + "PA2325": 4.8, + "PA6315": 4.67, + "PA6399": 5.0, + "SOC6315": 4.79, + "ECS2361": 4.41 + } + } + ], + "heeseung lee": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2904979", + "quality_rating": 4.8, + "difficulty_rating": 2.3, + "would_take_again": 83, + "original_rmp_format": "Heeseung Lee", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 6, + "tags": [ + "Caring", + "Group projects", + "Clear grading criteria", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2904979", + "instructor_id": "hxl220030", + "overall_grade_rating": 4.45, + "total_grade_count": 260, + "course_ratings": { + "BUAN6356": 4.43, + "MIS6356": 4.48 + } + } + ], + "minmin zhang": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2907997", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 75, + "original_rmp_format": "Minmin Zhang", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 4, + "tags": [ + "Caring", + "Test heavy", + "Accessible outside class", + "Participation matters", + "Amazing lectures " + ], + "rmp_id": "2907997", + "instructor_id": "mxz180015", + "overall_grade_rating": 4.22, + "total_grade_count": 183, + "course_ratings": { + "OPRE3310": 4.22 + } + } + ], + "trisha murphy": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2598272", + "quality_rating": 4.8, + "difficulty_rating": 1.8, + "would_take_again": 75, + "original_rmp_format": "Trisha Murphy", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 4, + "tags": [ + "Participation matters", + "Group projects", + "Gives good feedback", + "Caring", + "Respected" + ], + "rmp_id": "2598272", + "instructor_id": "tam160330", + "overall_grade_rating": 4.33, + "total_grade_count": 88, + "course_ratings": { + "RHET1302": 4.33 + } + } + ], + "robert geibler": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2792578", + "quality_rating": 4.7, + "difficulty_rating": 2, + "would_take_again": 89, + "original_rmp_format": "Robert Geibler", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 19, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Accessible outside class", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2792578", + "instructor_id": "rxg210036", + "overall_grade_rating": 4.38, + "total_grade_count": 129, + "course_ratings": { + "CRIM3309": 4.45, + "CRIM2306": 4.25, + "CRIM1301": 4.65, + "CRIM1307": 4.44 + } + } + ], + "hillary klimkowski": [ + { + "department": "Speech & Language Pathology", + "url": "https://www.ratemyprofessors.com/professor/3024130", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Hillary Klimkowski", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 1, + "tags": ["Clear grading criteria", "Caring", "Graded by few things"], + "rmp_id": "3024130", + "instructor_id": "hxd121330", + "overall_grade_rating": 4.32, + "total_grade_count": 280, + "course_ratings": { + "CLDP3303": 4.08, + "SPAU3303": 4.15, + "COMD6378": 4.76, + "SPAU4394": 4.54, + "COMD5344": 4.92, + "SPAU3344": 3.54 + } + } + ], + "kathy lingo": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/844015", + "quality_rating": 3.3, + "difficulty_rating": 2.7, + "would_take_again": 61, + "original_rmp_format": "Kathy Lingo", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 29, + "tags": [ + "Participation matters", + "Gives good feedback", + "Hilarious", + "Caring", + "Tough grader" + ], + "rmp_id": "844015", + "instructor_id": "klingo", + "overall_grade_rating": 4.42, + "total_grade_count": 479, + "course_ratings": { + "COMM3320": 4.51, + "THEA1310": 4.87, + "THEA2372": 4.47, + "THEA3372": 4.54, + "THEA1351": 4.0, + "COMM1315": 3.56, + "THEA3320": 4.54, + "THEA3342": 4.71, + "THEA4372": 4.67 + } + } + ], + "peter mccord": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2356310", + "quality_rating": 4.3, + "difficulty_rating": 3.6, + "would_take_again": 80, + "original_rmp_format": "Peter McCord", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 10, + "tags": [ + "Gives good feedback", + "Clear grading criteria", + "Inspirational", + "Lecture heavy", + "Tough grader" + ], + "rmp_id": "2356310", + "instructor_id": "pam062000", + "overall_grade_rating": 3.83, + "total_grade_count": 897, + "course_ratings": { + "ATCM3306": 2.77, + "ATCM3307": 3.44, + "ATCM4317": 4.98, + "ANGM3307": 4.07, + "ANGM4317": 5.0, + "ANGM3330": 4.96, + "ANGM6305": 4.54, + "ATCM4307": 4.1, + "ATCM4316": 5.0, + "ANGM4307": 4.43, + "ANGM4316": 5.0 + } + } + ], + "brynn higgins stirrup": [ + { + "department": "Fine Arts", + "url": "https://www.ratemyprofessors.com/professor/3023638", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Brynn Higgins-Stirrup", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 1, + "tags": ["Gives good feedback", "Caring", "Accessible outside class"], + "rmp_id": "3023638", + "instructor_id": "bxh230012", + "overall_grade_rating": 4.1, + "total_grade_count": 150, + "course_ratings": { + "ARTS1316": 3.89, + "ARTS3366": 4.34, + "ARTS3367": 4.05, + "ARTS3383": 4.18, + "ARTS4366": 4.26 + } + } + ], + "haim schweitzer": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/182842", + "quality_rating": 2.9, + "difficulty_rating": 2.4, + "would_take_again": 29, + "original_rmp_format": "Haim Schweitzer", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 35, + "tags": [ + "Test heavy", + "Lecture heavy", + "Tough grader", + "Participation matters", + "Lots of homework" + ], + "rmp_id": "182842", + "instructor_id": "haim", + "overall_grade_rating": 4.4, + "total_grade_count": 960, + "course_ratings": { + "CS6301": 4.54, + "CS6344": 4.48, + "CS6384": 4.69, + "CS6364": 4.27, + "CS6375": 4.15 + } + } + ], + "zlata stankovic ramirez": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2955185", + "quality_rating": 5, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Zlata Stankovic-Ramirez", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 9, + "tags": [ + "Caring", + "EXTRA CREDIT", + "Amazing lectures ", + "Inspirational", + "Participation matters" + ], + "rmp_id": "2955185", + "instructor_id": "zxs230015", + "overall_grade_rating": 4.44, + "total_grade_count": 360, + "course_ratings": { + "CLDP3310": 4.67, + "HDCD6312": 5.0, + "HDCD6315": 5.0, + "PSY3310": 4.35, + "HDCD6316": 4.9 + } + } + ], + "alireza hamzeh": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3011734", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Alireza Hamzeh", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 2, + "tags": ["Participation matters", "EXTRA CREDIT", "Gives good feedback", "Lecture heavy"], + "rmp_id": "3011734", + "instructor_id": "axh190064", + "overall_grade_rating": 4.2, + "total_grade_count": 106, + "course_ratings": { + "FIN4300": 4.49, + "FIN3320": 3.96 + } + } + ], + "ali kheirandish": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2937937", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Ali Kheirandish", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 1, + "tags": ["Group projects", "Inspirational", "Respected"], + "rmp_id": "2937937", + "instructor_id": "axk095320", + "overall_grade_rating": 4.65, + "total_grade_count": 170, + "course_ratings": { + "BPS4396": 4.67, + "HMGT4395": 4.78, + "BPS4395": 4.45 + } + } + ], + "yaxin wen": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2710666", + "quality_rating": 4.6, + "difficulty_rating": 2.9, + "would_take_again": 91, + "original_rmp_format": "Yaxin Wen", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 11, + "tags": [ + "Clear grading criteria", + "Caring", + "Respected", + "Accessible outside class", + "Amazing lectures " + ], + "rmp_id": "2710666", + "instructor_id": "yxw163930", + "overall_grade_rating": 4.33, + "total_grade_count": 162, + "course_ratings": { + "FIN3320": 4.23, + "ENTP3360": 4.34, + "FIN3360": 4.55 + } + } + ], + "purna joshi": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2894323", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Purna Joshi", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 1, + "tags": ["Respected", "Lecture heavy"], + "rmp_id": "2894323", + "instructor_id": "pxj210010", + "overall_grade_rating": 4.09, + "total_grade_count": 132, + "course_ratings": { + "BIOL6342": 4.89, + "BIOL3102": 3.85 + } + } + ], + "sanjay jain": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2252295", + "quality_rating": 4.6, + "difficulty_rating": 3, + "would_take_again": 89, + "original_rmp_format": "Sanjay Jain", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 9, + "tags": [ + "Group projects", + "Participation matters", + "Amazing lectures ", + "So many papers", + "Lots of homework" + ], + "rmp_id": "2252295", + "instructor_id": "sxj164830", + "overall_grade_rating": 4.28, + "total_grade_count": 322, + "course_ratings": { + "MKT6301": 4.28 + } + } + ], + "shervin tehrani": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2472130", + "quality_rating": 4, + "difficulty_rating": 3.2, + "would_take_again": 89, + "original_rmp_format": "Shervin Tehrani", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 9, + "tags": [ + "Participation matters", + "Group projects", + "Lots of homework", + "Accessible outside class", + "Amazing lectures " + ], + "rmp_id": "2472130", + "instructor_id": "sst180003", + "overall_grade_rating": 4.25, + "total_grade_count": 134, + "course_ratings": { + "BUAN6337": 4.32, + "MKT3300": 4.07, + "MKT6337": 4.71 + } + } + ], + "sonya mehta": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2967824", + "quality_rating": 4, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Sonya Mehta", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 2, + "tags": [ + "Group projects", + "Participation matters", + "Clear grading criteria", + "Inspirational", + "Accessible outside class" + ], + "rmp_id": "2967824", + "instructor_id": "sxm053100", + "overall_grade_rating": 3.93, + "total_grade_count": 224, + "course_ratings": { + "COMD6305": 5.0, + "SPAU3343": 3.8 + } + } + ], + "malgorzata dabkowska": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1248723", + "quality_rating": 3.7, + "difficulty_rating": 2.9, + "would_take_again": 88, + "original_rmp_format": "Malgorzata Dabkowska", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 50, + "tags": [ + "Lecture heavy", + "Clear grading criteria", + "Caring", + "Accessible outside class", + "Gives good feedback" + ], + "rmp_id": "1248723", + "instructor_id": "mxd066000", + "overall_grade_rating": 3.89, + "total_grade_count": 694, + "course_ratings": { + "MATH3310": 3.9, + "MATH3311": 3.88 + } + } + ], + "juyoung leem": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2969136", + "quality_rating": 4.5, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "Juyoung Leem", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 4, + "tags": [ + "Clear grading criteria", + "Caring", + "Test heavy", + "Accessible outside class", + "Participation matters" + ], + "rmp_id": "2969136", + "instructor_id": "jxl230028", + "overall_grade_rating": 3.45, + "total_grade_count": 130, + "course_ratings": { + "MECH2320": 3.36, + "MECH6350": 4.06 + } + } + ], + "robert kieschnick": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1308568", + "quality_rating": 2.2, + "difficulty_rating": 4.2, + "would_take_again": 13, + "original_rmp_format": "Robert Kieschnick", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 23, + "tags": [ + "Tough grader", + "Get ready to read", + "Lecture heavy", + "Participation matters", + "Lots of homework" + ], + "rmp_id": "1308568", + "instructor_id": "rkiesch", + "overall_grade_rating": 3.8, + "total_grade_count": 99, + "course_ratings": { + "FIN4395": 3.8 + } + } + ], + "jonathan palant": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2368442", + "quality_rating": 3.7, + "difficulty_rating": 2.7, + "would_take_again": 63, + "original_rmp_format": "Jonathan Palant", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 19, + "tags": [ + "Participation matters", + "Respected", + "Clear grading criteria", + "Inspirational", + "Hilarious" + ], + "rmp_id": "2368442", + "instructor_id": "jxp170230", + "overall_grade_rating": 4.53, + "total_grade_count": 693, + "course_ratings": { + "MUSI1306": 3.65, + "MUSI2127": 4.67, + "MUSI3185": 4.33, + "MUSI4185": 4.98, + "MUSI3127": 4.84 + } + } + ], + "vanessa corder": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/3019821", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Vanessa Corder", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 1, + "tags": ["Participation matters", "Gives good feedback", "Caring"], + "rmp_id": "3019821", + "instructor_id": "vxc220036", + "overall_grade_rating": 4.12, + "total_grade_count": 61, + "course_ratings": { + "MUSI2315": 3.96, + "MUSI3380": 4.38 + } + } + ], + "william anderson": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1902904", + "quality_rating": 2.3, + "difficulty_rating": 3.9, + "would_take_again": 42, + "original_rmp_format": "William Anderson", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 27, + "tags": [ + "Lots of homework", + "Skip class? You won't pass.", + "Lecture heavy", + "Get ready to read", + "Tough grader" + ], + "rmp_id": "1902904", + "instructor_id": "wca140030", + "overall_grade_rating": 3.67, + "total_grade_count": 340, + "course_ratings": { + "MECH6370": 4.06, + "MECH3315": 3.53, + "MECH3370": 3.45, + "MECH7100": 5.0, + "MECH3310": 3.25 + } + } + ], + "dushanthi dissanayake": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2301322", + "quality_rating": 4.5, + "difficulty_rating": 2.2, + "would_take_again": 89, + "original_rmp_format": "Dushanthi Dissanayake", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 19, + "tags": [ + "Gives good feedback", + "Accessible outside class", + "Clear grading criteria", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "2301322", + "instructor_id": "dxd122030", + "overall_grade_rating": 4.06, + "total_grade_count": 1662, + "course_ratings": { + "CHEM1111": 4.31, + "CHEM1112": 4.05, + "CHEM2401": 3.73, + "CHEM2323": 3.05, + "CHEM4473": 3.12, + "CHEM2125": 4.71, + "CHEM2123": 4.56 + } + } + ], + "xuejing bai": [ + { + "department": "Fine Arts", + "url": "https://www.ratemyprofessors.com/professor/2983502", + "quality_rating": 3.5, + "difficulty_rating": 2, + "would_take_again": 50, + "original_rmp_format": "Xuejing Bai", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 2, + "tags": ["Participation matters", "Group projects", "Lecture heavy"], + "rmp_id": "2983502", + "instructor_id": "xxb230001", + "overall_grade_rating": 4.56, + "total_grade_count": 33, + "course_ratings": { + "DANC1305": 4.56 + } + } + ], + "mortaza pirouz": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/2516116", + "quality_rating": 3.6, + "difficulty_rating": 2.2, + "would_take_again": 80, + "original_rmp_format": "Mortaza Pirouz", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 5, + "tags": [ + "Lots of homework", + "Clear grading criteria", + "Online Savvy", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2516116", + "instructor_id": "mxp180004", + "overall_grade_rating": 4.38, + "total_grade_count": 3090, + "course_ratings": { + "GEOS1303": 2.99, + "ISNS2359": 4.46, + "ISNS2367": 4.48, + "GEOS3470": 3.1, + "GEOS4300": 4.11, + "GEOS3300": 4.1 + } + } + ], + "jeanne sluder": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1164597", + "quality_rating": 3.5, + "difficulty_rating": 2.4, + "would_take_again": 56, + "original_rmp_format": "Jeanne Sluder", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 68, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "Group projects", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "1164597", + "instructor_id": "jis081000", + "overall_grade_rating": 4.43, + "total_grade_count": 463, + "course_ratings": { + "BCOM3310": 4.75, + "ACCT3200": 4.45, + "COMM1315": 3.83, + "COMM1311": 4.03 + } + } + ], + "balaji raghavachari": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1762841", + "quality_rating": 4.6, + "difficulty_rating": 3.8, + "would_take_again": 81, + "original_rmp_format": "Balaji Raghavachari", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 48, + "tags": [ + "Respected", + "Amazing lectures ", + "Inspirational", + "Lots of homework", + "Gives good feedback" + ], + "rmp_id": "1762841", + "instructor_id": "rbk", + "overall_grade_rating": 3.85, + "total_grade_count": 260, + "course_ratings": { + "CS6301": 4.19, + "CS4349": 2.97, + "CS6363": 4.19 + } + } + ], + "thomas riccio": [ + { + "department": "Theater", + "url": "https://www.ratemyprofessors.com/professor/1011201", + "quality_rating": 3.3, + "difficulty_rating": 3.3, + "would_take_again": 29, + "original_rmp_format": "Thomas Riccio", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 15, + "tags": [ + "Amazing lectures ", + "Inspirational", + "Tough grader", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "1011201", + "instructor_id": "txr033000", + "overall_grade_rating": 4.38, + "total_grade_count": 50, + "course_ratings": { + "ARTS1301": 4.63, + "HUAS6392": 4.64, + "VPAS3340": 3.87 + } + } + ], + "vidroha debroy": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2330086", + "quality_rating": 4.5, + "difficulty_rating": 1.4, + "would_take_again": 94, + "original_rmp_format": "Vidroha Debroy", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 16, + "tags": [ + "Caring", + "Amazing lectures ", + "Clear grading criteria", + "Respected", + "Group projects" + ], + "rmp_id": "2330086", + "instructor_id": "vxd024000", + "overall_grade_rating": 4.64, + "total_grade_count": 1721, + "course_ratings": { + "CS3162": 4.67, + "CS2336": 3.97, + "SE3162": 4.56 + } + } + ], + "taek kang": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2961866", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Taek Kang", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 3, + "tags": [ + "EXTRA CREDIT", + "Group projects", + "Amazing lectures ", + "Caring", + "Accessible outside class" + ], + "rmp_id": "2961866", + "instructor_id": "txk102120", + "overall_grade_rating": 4.48, + "total_grade_count": 33, + "course_ratings": { + "BMEN1300": 4.48 + } + } + ], + "anvar zakhidov": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/258962", + "quality_rating": 2.7, + "difficulty_rating": 3.4, + "would_take_again": 29, + "original_rmp_format": "Anvar Zakhidov", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 19, + "tags": [ + "EXTRA CREDIT", + "Test heavy", + "Caring", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "258962", + "instructor_id": "zakhidov", + "overall_grade_rating": 3.44, + "total_grade_count": 160, + "course_ratings": { + "PHYS1100": 0.84, + "PHYS2325": 3.46 + } + } + ], + "laurence wensel": [ + { + "department": "Theater", + "url": "https://www.ratemyprofessors.com/professor/2947390", + "quality_rating": 5, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Laurence Wensel", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 3, + "tags": [ + "Inspirational", + "Participation matters", + "EXTRA CREDIT", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2947390", + "instructor_id": "llw180000", + "overall_grade_rating": 4.49, + "total_grade_count": 55, + "course_ratings": { + "THEA1351": 4.49 + } + } + ], + "madhavi biswas": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/1926689", + "quality_rating": 3.1, + "difficulty_rating": 2.3, + "would_take_again": 43, + "original_rmp_format": "Madhavi Biswas", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 19, + "tags": [ + "Participation matters", + "Get ready to read", + "Skip class? You won't pass.", + "Gives good feedback", + "Group projects" + ], + "rmp_id": "1926689", + "instructor_id": "mxb128930", + "overall_grade_rating": 4.46, + "total_grade_count": 78, + "course_ratings": { + "LIT2331": 4.39, + "FILM1303": 4.56 + } + } + ], + "ronan conlon": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2634978", + "quality_rating": 4.3, + "difficulty_rating": 3.3, + "would_take_again": 88, + "original_rmp_format": "Ronan Conlon", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 17, + "tags": [ + "Accessible outside class", + "Amazing lectures ", + "Caring", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "2634978", + "instructor_id": "rxc200021", + "overall_grade_rating": 3.21, + "total_grade_count": 280, + "course_ratings": { + "MATH2414": 2.78, + "MATH3379": 3.06, + "MATH6390": 4.5, + "MATH6303": 4.18, + "MATH6309": 4.32 + } + } + ], + "amy zwierzchowski": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2948110", + "quality_rating": 4.3, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Amy Zwierzchowski", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 6, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Clear grading criteria", + "Caring", + "EXTRA CREDIT" + ], + "rmp_id": "2948110", + "instructor_id": "anz101020", + "overall_grade_rating": 4.61, + "total_grade_count": 565, + "course_ratings": { + "NSC3361": 4.84, + "NSC4353": 4.77, + "NSC4352": 4.45, + "NSC4363": 4.59 + } + } + ], + "clark meyer": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2089984", + "quality_rating": 3.2, + "difficulty_rating": 3.6, + "would_take_again": 67, + "original_rmp_format": "Clark Meyer", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 16, + "tags": [ + "Lots of homework", + "Group projects", + "Tough grader", + "Skip class? You won't pass.", + "Accessible outside class" + ], + "rmp_id": "2089984", + "instructor_id": "cam140130", + "overall_grade_rating": 4.15, + "total_grade_count": 495, + "course_ratings": { + "BMEN1100": 4.53, + "BMEN1208": 4.11, + "BMEN2320": 3.28, + "BMEN3325": 4.8, + "BMEN4355": 4.19 + } + } + ], + "jedson pinto": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2642128", + "quality_rating": 4.8, + "difficulty_rating": 2.5, + "would_take_again": 92, + "original_rmp_format": "Jedson Pinto", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 12, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Caring", + "Accessible outside class", + "EXTRA CREDIT" + ], + "rmp_id": "2642128", + "instructor_id": "jpp200002", + "overall_grade_rating": 4.47, + "total_grade_count": 122, + "course_ratings": { + "ACCT2302": 4.47 + } + } + ], + "todd fechter": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1129902", + "quality_rating": 4.9, + "difficulty_rating": 3.6, + "would_take_again": 100, + "original_rmp_format": "Todd Fechter", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 8, + "tags": [ + "Gives good feedback", + "Lots of homework", + "Group projects", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "1129902", + "instructor_id": "taf051000", + "overall_grade_rating": 4.26, + "total_grade_count": 385, + "course_ratings": { + "ATCM3309": 4.02, + "ATCM6313": 5.0, + "ATCM3338": 3.82, + "ANGM2309": 4.56, + "ANGM6313": 4.65, + "ATCM3306": 3.59, + "ATCM4306": 4.58, + "ATCM4319": 3.99, + "ANGM4320": 3.9, + "ATCM4317": 5.0 + } + } + ], + "alexandra balasa": [ + { + "department": "Arts amp Humanities", + "url": "https://www.ratemyprofessors.com/professor/2315980", + "quality_rating": 4.5, + "difficulty_rating": 1.7, + "would_take_again": 83, + "original_rmp_format": "Alexandra Balasa", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 6, + "tags": [ + "Gives good feedback", + "Caring", + "Participation matters", + "EXTRA CREDIT", + "Clear grading criteria" + ], + "rmp_id": "2315980", + "instructor_id": "axb177630", + "overall_grade_rating": 3.86, + "total_grade_count": 113, + "course_ratings": { + "RHET1302": 3.6, + "CRWT2301": 4.84 + } + } + ], + "nambi thirumalai": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2422696", + "quality_rating": 3.1, + "difficulty_rating": 3.1, + "would_take_again": 54, + "original_rmp_format": "Nambi Thirumalai", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 28, + "tags": [ + "Participation matters", + "Accessible outside class", + "Gives good feedback", + "Inspirational", + "Lecture heavy" + ], + "rmp_id": "2422696", + "instructor_id": "ndt180001", + "overall_grade_rating": 3.93, + "total_grade_count": 386, + "course_ratings": { + "ITSS4360": 3.93 + } + } + ], + "jeffrey miranda": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2145933", + "quality_rating": 4.7, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Jeffrey Miranda", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 6, + "tags": [ + "Inspirational", + "Hilarious", + "Participation matters", + "Gives good feedback", + "Group projects" + ], + "rmp_id": "2145933", + "instructor_id": "jxm069000", + "overall_grade_rating": 4.84, + "total_grade_count": 235, + "course_ratings": { + "ARTS3367": 4.81, + "ARTS3366": 4.98, + "ARTS1316": 4.84 + } + } + ], + "sunil parupati": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2820702", + "quality_rating": 5, + "difficulty_rating": 1.4, + "would_take_again": 100, + "original_rmp_format": "Sunil Parupati", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 5, + "tags": [ + "Amazing lectures ", + "Gives good feedback", + "Accessible outside class", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "2820702", + "instructor_id": "skp190001", + "overall_grade_rating": 3.95, + "total_grade_count": 120, + "course_ratings": { + "ACCT2301": 3.95 + } + } + ], + "daniel wickberg": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/93458", + "quality_rating": 3.3, + "difficulty_rating": 3.4, + "would_take_again": 67, + "original_rmp_format": "Daniel Wickberg", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 31, + "tags": [ + "Get ready to read", + "Participation matters", + "Gives good feedback", + "Lecture heavy", + "Skip class? You won't pass." + ], + "rmp_id": "93458", + "instructor_id": "wickberg", + "overall_grade_rating": 3.54, + "total_grade_count": 247, + "course_ratings": { + "ARHM3342": 3.55, + "HUHI7305": 4.79, + "HIST3376": 3.25, + "HIST4380": 4.07, + "HIST6387": 3.45, + "HIST3377": 3.33, + "HUHI6314": 4.01, + "HIST4390": 3.62 + } + } + ], + "randell torno": [ + { + "department": "Public Policy", + "url": "https://www.ratemyprofessors.com/professor/2996564", + "quality_rating": 4.8, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Randell Torno", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 6, + "tags": [ + "Participation matters", + "Clear grading criteria", + "Get ready to read", + "EXTRA CREDIT", + "Group projects" + ], + "rmp_id": "2996564", + "instructor_id": "rxt131930", + "overall_grade_rating": 4.69, + "total_grade_count": 34, + "course_ratings": { + "IPEC4376": 4.92, + "PSCI4376": 4.6 + } + } + ], + "si xie": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2959126", + "quality_rating": 1.2, + "difficulty_rating": 4.2, + "would_take_again": 17, + "original_rmp_format": "Si Xie", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Lecture heavy", + "Graded by few things", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "2959126", + "instructor_id": "sxx170008", + "overall_grade_rating": 3.98, + "total_grade_count": 238, + "course_ratings": { + "ITSS3311": 3.98 + } + } + ], + "james scott": [ + { + "department": "Undergraduate Studies", + "url": "https://www.ratemyprofessors.com/professor/2212364", + "quality_rating": 4.6, + "difficulty_rating": 3.2, + "would_take_again": 80, + "original_rmp_format": "James Scott", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 5, + "tags": [ + "Inspirational", + "Skip class? You won't pass.", + "Group projects", + "Lecture heavy", + "Participation matters" + ], + "rmp_id": "2212364", + "instructor_id": "jas076100", + "overall_grade_rating": 3.86, + "total_grade_count": 346, + "course_ratings": { + "ITSS3300": 3.87, + "BUAN6320": 4.65, + "EPPS6354": 4.07, + "ITSS4300": 3.65 + } + } + ], + "jennifer fry": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2099482", + "quality_rating": 3.6, + "difficulty_rating": 2.5, + "would_take_again": 65, + "original_rmp_format": "Jennifer Fry", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 58, + "tags": [ + "Group projects", + "Lots of homework", + "Gives good feedback", + "Tough grader", + "Clear grading criteria" + ], + "rmp_id": "2099482", + "instructor_id": "jlf130030", + "overall_grade_rating": 3.63, + "total_grade_count": 918, + "course_ratings": { + "BCOM3310": 4.43, + "BCOM1300": 3.35, + "BCOM3300": 3.29, + "BCOM4300": 3.56, + "BCOM3200": 4.38 + } + } + ], + "shayla holub": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/947529", + "quality_rating": 3.7, + "difficulty_rating": 2.7, + "would_take_again": 59, + "original_rmp_format": "Shayla Holub", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 41, + "tags": [ + "Get ready to read", + "Tough grader", + "Skip class? You won't pass.", + "Caring", + "Gives good feedback" + ], + "rmp_id": "947529", + "instructor_id": "sch052000", + "overall_grade_rating": 4.12, + "total_grade_count": 546, + "course_ratings": { + "HCS6350": 3.7, + "CLDP3332": 4.15, + "PSY3332": 4.12, + "HDCD6320": 4.13, + "PSY3393": 3.88 + } + } + ], + "michael tiefelsdorf": [ + { + "department": "Geography", + "url": "https://www.ratemyprofessors.com/professor/862860", + "quality_rating": 2.2, + "difficulty_rating": 4.2, + "would_take_again": 17, + "original_rmp_format": "Michael Tiefelsdorf", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 10, + "tags": [ + "Tough grader", + "Tests are tough", + "Lots of homework", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "862860", + "instructor_id": "mrt052000", + "overall_grade_rating": 3.89, + "total_grade_count": 307, + "course_ratings": { + "GISC6301": 4.04, + "ECON6306": 3.9, + "EPPS2302": 2.67, + "EPPS6316": 3.32, + "GEOG3357": 4.14, + "GISC7364": 4.63, + "EPPS6326": 3.98, + "GISC6323": 4.03 + } + } + ], + "athena alimirzaei": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/1892278", + "quality_rating": 3.8, + "difficulty_rating": 2.7, + "would_take_again": 72, + "original_rmp_format": "Athena Alimirzaei", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 68, + "tags": [ + "Caring", + "Lots of homework", + "Test heavy", + "Skip class? You won't pass.", + "Respected" + ], + "rmp_id": "1892278", + "instructor_id": "axa134231", + "overall_grade_rating": 4.48, + "total_grade_count": 1091, + "course_ratings": { + "BUAN6398": 4.67, + "OPRE3333": 4.41, + "OPRE6398": 4.75, + "OPRE3360": 3.96 + } + } + ], + "kathryn lookadoo": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2183780", + "quality_rating": 3.4, + "difficulty_rating": 3.3, + "would_take_again": 55, + "original_rmp_format": "Kathryn Lookadoo", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 42, + "tags": [ + "Tough grader", + "Gives good feedback", + "Lots of homework", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2183780", + "instructor_id": "kxl164330", + "overall_grade_rating": 3.61, + "total_grade_count": 1119, + "course_ratings": { + "BCOM4350": 3.96, + "BCOM3310": 3.97, + "BA3200": 4.24, + "FIN3200": 4.08, + "BCOM1300": 3.2, + "BCOM4300": 3.47, + "BA3100": 4.32, + "ITSS3100": 4.1, + "IMS3100": 4.28 + } + } + ], + "anthony cummings": [ + { + "department": "Geography", + "url": "https://www.ratemyprofessors.com/professor/2040245", + "quality_rating": 3.2, + "difficulty_rating": 3.2, + "would_take_again": 44, + "original_rmp_format": "Anthony Cummings", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 23, + "tags": [ + "Participation matters", + "Respected", + "Lecture heavy", + "Lots of homework", + "Hilarious" + ], + "rmp_id": "2040245", + "instructor_id": "arc131030", + "overall_grade_rating": 3.59, + "total_grade_count": 393, + "course_ratings": { + "GEOG2302": 3.43, + "GISC6325": 4.34, + "GEOS2302": 3.36, + "GEOS5325": 3.83, + "GISC4386": 3.69 + } + } + ], + "vasant gondhalekar": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2891221", + "quality_rating": 3.4, + "difficulty_rating": 3.4, + "would_take_again": 60, + "original_rmp_format": "Vasant Gondhalekar", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 10, + "tags": [ + "Participation matters", + "Group projects", + "Gives good feedback", + "Tough grader", + "Graded by few things" + ], + "rmp_id": "2891221", + "instructor_id": "vxg220085", + "overall_grade_rating": 4.49, + "total_grade_count": 337, + "course_ratings": { + "MIS6393": 4.53, + "MIS6302": 4.37 + } + } + ], + "riki takeuchi": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2482462", + "quality_rating": 3.4, + "difficulty_rating": 4, + "would_take_again": 56, + "original_rmp_format": "Riki Takeuchi", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 9, + "tags": [ + "Graded by few things", + "Participation matters", + "Group projects", + "Tough grader", + "EXTRA CREDIT" + ], + "rmp_id": "2482462", + "instructor_id": "rxt173730", + "overall_grade_rating": 3.72, + "total_grade_count": 214, + "course_ratings": { + "OB7310": 4.58, + "IMS6341": 4.55, + "OBHR3330": 3.58 + } + } + ], + "william godbey": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2869111", + "quality_rating": 1.8, + "difficulty_rating": 3.8, + "would_take_again": 20, + "original_rmp_format": "William Godbey", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 5, + "tags": [ + "Group projects", + "Get ready to read", + "Participation matters", + "Hilarious", + "So many papers" + ], + "rmp_id": "2869111", + "instructor_id": "wrg032000", + "overall_grade_rating": 3.26, + "total_grade_count": 178, + "course_ratings": { + "BCOM3300": 3.27, + "BCOM1300": 3.24 + } + } + ], + "wangsheng zhu": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2841212", + "quality_rating": 5, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Wangsheng Zhu", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 3, + "tags": [ + "Inspirational", + "Caring", + "Accessible outside class", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2841212", + "instructor_id": "zxw180001", + "overall_grade_rating": 4.59, + "total_grade_count": 125, + "course_ratings": { + "ITSS3311": 4.57, + "ITSS4381": 4.62 + } + } + ], + "dawn owens": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1899741", + "quality_rating": 3.4, + "difficulty_rating": 3.5, + "would_take_again": 52, + "original_rmp_format": "Dawn Owens", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 53, + "tags": [ + "Tough grader", + "Lots of homework", + "Group projects", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "1899741", + "instructor_id": "dmo130130", + "overall_grade_rating": 3.94, + "total_grade_count": 892, + "course_ratings": { + "ITSS4300": 3.76, + "ITSS4330": 4.23, + "ITSS4395": 4.18, + "BUAN6320": 4.13, + "MIS6308": 4.21, + "ITSS4380": 4.18, + "ITSS3300": 3.48 + } + } + ], + "nasser kehtarnavaz": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1194701", + "quality_rating": 2.1, + "difficulty_rating": 4.1, + "would_take_again": 25, + "original_rmp_format": "Nasser Kehtarnavaz", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 23, + "tags": [ + "Tough grader", + "Lots of homework", + "Lecture heavy", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "1194701", + "instructor_id": "nxk019000", + "overall_grade_rating": 3.77, + "total_grade_count": 595, + "course_ratings": { + "CE3102": 4.29, + "EE3102": 4.23, + "EESC6363": 3.88, + "EESC6364": 4.09, + "EESC6367": 4.28, + "CE4203": 4.14, + "EE4203": 4.06, + "CE3303": 3.0, + "EE3302": 2.91 + } + } + ], + "gil sadka": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2242302", + "quality_rating": 4.2, + "difficulty_rating": 2.2, + "would_take_again": 86, + "original_rmp_format": "Gil Sadka", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 22, + "tags": ["Hilarious", "Amazing lectures ", "Test heavy", "Graded by few things", "Respected"], + "rmp_id": "2242302", + "instructor_id": "gxs143630", + "overall_grade_rating": 4.02, + "total_grade_count": 498, + "course_ratings": { + "ACCT7344": 5.0, + "ACCT6305": 4.43, + "ACCT3341": 3.89 + } + } + ], + "daniel krawczyk": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/1115445", + "quality_rating": 4.2, + "difficulty_rating": 2.9, + "would_take_again": 83, + "original_rmp_format": "Daniel Krawczyk", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 17, + "tags": [ + "Amazing lectures ", + "Test heavy", + "Clear grading criteria", + "Caring", + "EXTRA CREDIT" + ], + "rmp_id": "1115445", + "instructor_id": "dck061000", + "overall_grade_rating": 4.3, + "total_grade_count": 283, + "course_ratings": { + "PSY4320": 3.86, + "HCS7372": 4.64, + "PSYC6352": 4.83, + "CGS4320": 3.78 + } + } + ], + "claire baetge": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/2393080", + "quality_rating": 2.7, + "difficulty_rating": 3.7, + "would_take_again": 36, + "original_rmp_format": "Claire Baetge", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 14, + "tags": [ + "Get ready to read", + "Tough grader", + "Clear grading criteria", + "Test heavy", + "Lots of homework" + ], + "rmp_id": "2393080", + "instructor_id": "cxb170330", + "overall_grade_rating": 3.66, + "total_grade_count": 613, + "course_ratings": { + "HLTH1301": 3.66 + } + } + ], + "rhonda green": [ + { + "department": "Law", + "url": "https://www.ratemyprofessors.com/professor/2415498", + "quality_rating": 2.5, + "difficulty_rating": 3.7, + "would_take_again": 36, + "original_rmp_format": "Rhonda Green", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 14, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Get ready to read", + "Participation matters", + "Lecture heavy" + ], + "rmp_id": "2415498", + "instructor_id": "rxg180032", + "overall_grade_rating": 4.44, + "total_grade_count": 135, + "course_ratings": { + "BLAW3301": 4.16, + "OBHR3330": 4.76 + } + } + ], + "sunela thomas": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2249405", + "quality_rating": 2.7, + "difficulty_rating": 3.8, + "would_take_again": 50, + "original_rmp_format": "Sunela Thomas", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 12, + "tags": [ + "Tough grader", + "Lecture heavy", + "Participation matters", + "Skip class? You won't pass.", + "Test heavy" + ], + "rmp_id": "2249405", + "instructor_id": "sxt167730", + "overall_grade_rating": 3.85, + "total_grade_count": 412, + "course_ratings": { + "ITSS4330": 4.06, + "ITSS4381": 3.16, + "ITSS3300": 3.38, + "ITSS4354": 3.87, + "BUAN6390": 4.92, + "ITSS3312": 3.4, + "MIS6308": 3.91, + "MIS6323": 3.91 + } + } + ], + "fatemeh hassanipour": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1689115", + "quality_rating": 3.3, + "difficulty_rating": 2.6, + "would_take_again": 83, + "original_rmp_format": "Fatemeh Hassanipour", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 11, + "tags": [ + "Participation matters", + "Group projects", + "Gives good feedback", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "1689115", + "instructor_id": "fxh091000", + "overall_grade_rating": 4.72, + "total_grade_count": 1055, + "course_ratings": { + "MECH3120": 4.84, + "MECH3370": 3.99, + "MECH4380": 4.22, + "MECH3310": 3.67 + } + } + ], + "reza roshangarzadeh": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2911293", + "quality_rating": 4.3, + "difficulty_rating": 1.3, + "would_take_again": 90, + "original_rmp_format": "Reza Roshangarzadeh", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 10, + "tags": ["Group projects", "Clear grading criteria", "Caring", "EXTRA CREDIT", "Respected"], + "rmp_id": "2911293", + "instructor_id": "rxr180002", + "overall_grade_rating": 4.6, + "total_grade_count": 284, + "course_ratings": { + "MKT3300": 4.6 + } + } + ], + "tyler summers": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2133999", + "quality_rating": 4.5, + "difficulty_rating": 3.6, + "would_take_again": 88, + "original_rmp_format": "Tyler Summers", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 9, + "tags": [ + "Gives good feedback", + "Accessible outside class", + "EXTRA CREDIT", + "Amazing lectures ", + "Lots of homework" + ], + "rmp_id": "2133999", + "instructor_id": "ths150130", + "overall_grade_rating": 3.57, + "total_grade_count": 233, + "course_ratings": { + "MECH4310": 3.22, + "MECH6326": 3.52, + "MECH3340": 3.97, + "MECH6327": 4.73 + } + } + ], + "shengwang du": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2660421", + "quality_rating": 3.3, + "difficulty_rating": 3.1, + "would_take_again": 38, + "original_rmp_format": "Shengwang Du", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 8, + "tags": [ + "Respected", + "Lecture heavy", + "Clear grading criteria", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "2660421", + "instructor_id": "sxd200057", + "overall_grade_rating": 3.97, + "total_grade_count": 329, + "course_ratings": { + "PHYS1301": 3.97 + } + } + ], + "mohammad islam": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2998837", + "quality_rating": 4, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Mohammad Islam", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 3, + "tags": ["Group projects", "Gives good feedback", "Lots of homework", "Caring", "Respected"], + "rmp_id": "2998837", + "instructor_id": "mai230002", + "overall_grade_rating": 4.11, + "total_grade_count": 14, + "course_ratings": { + "MIS6330": 4.11 + } + } + ], + "gretchen vanwormer": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/3015238", + "quality_rating": 2, + "difficulty_rating": 1, + "would_take_again": 0, + "original_rmp_format": "Gretchen VanWormer", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 1, + "tags": ["Get ready to read", "Participation matters"], + "rmp_id": "3015238", + "instructor_id": "gxv230008", + "overall_grade_rating": 4.39, + "total_grade_count": 26, + "course_ratings": { + "LIT6325": 4.43, + "CRWT3308": 4.36 + } + } + ], + "hanno berger": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/3015234", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Hanno Berger", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 1, + "tags": ["Participation matters", "Gives good feedback", "Inspirational"], + "rmp_id": "3015234", + "instructor_id": "hxb230023", + "overall_grade_rating": 3.59, + "total_grade_count": 78, + "course_ratings": { + "FILM1303": 3.24, + "FILM3342": 4.54 + } + } + ], + "peter assmann": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/235661", + "quality_rating": 2.9, + "difficulty_rating": 3.6, + "would_take_again": 29, + "original_rmp_format": "Peter Assmann", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 73, + "tags": [ + "Lecture heavy", + "Beware of pop quizzes", + "Tough grader", + "Graded by few things", + "Skip class? You won't pass." + ], + "rmp_id": "235661", + "instructor_id": "assmann", + "overall_grade_rating": 3.57, + "total_grade_count": 1038, + "course_ratings": { + "PSY2364": 3.2, + "ACN6389": 4.37, + "AUD6306": 4.84, + "PSY3360": 3.63 + } + } + ], + "michael kolodrubetz": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2293651", + "quality_rating": 3.4, + "difficulty_rating": 4.2, + "would_take_again": 60, + "original_rmp_format": "Michael Kolodrubetz", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 40, + "tags": [ + "Lots of homework", + "Test heavy", + "Tough grader", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "2293651", + "instructor_id": "mxk177330", + "overall_grade_rating": 3.52, + "total_grade_count": 609, + "course_ratings": { + "PHYS5322": 3.98, + "PHYS2325": 3.5 + } + } + ], + "hui ouyang": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2252396", + "quality_rating": 4.1, + "difficulty_rating": 3.1, + "would_take_again": 83, + "original_rmp_format": "Hui Ouyang", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 23, + "tags": ["Caring", "Group projects", "Gives good feedback", "EXTRA CREDIT", "Respected"], + "rmp_id": "2252396", + "instructor_id": "hxo150330", + "overall_grade_rating": 4.1, + "total_grade_count": 947, + "course_ratings": { + "MECH3320": 4.06, + "MECH3310": 4.01, + "MECH3115": 4.75 + } + } + ], + "balakrishnan prabhakaran": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1084207", + "quality_rating": 1.8, + "difficulty_rating": 3.8, + "would_take_again": 10, + "original_rmp_format": "Balakrishnan Prabhakaran", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 13, + "tags": [ + "Tough grader", + "Lecture heavy", + "Test heavy", + "Lots of homework", + "Graded by few things" + ], + "rmp_id": "1084207", + "instructor_id": "praba", + "overall_grade_rating": 4.18, + "total_grade_count": 227, + "course_ratings": { + "CS6331": 4.48, + "CS6327": 4.23, + "CS7301": 5.0, + "CS3305": 3.82 + } + } + ], + "catherine boynton": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2785223", + "quality_rating": 5, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Catherine Boynton", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 4, + "tags": ["Caring", "Hilarious", "Respected", "Amazing lectures ", "Inspirational"], + "rmp_id": "2785223", + "instructor_id": "cxb120030", + "overall_grade_rating": 4.61, + "total_grade_count": 772, + "course_ratings": { + "BBSU1100": 4.52, + "PSY4346": 4.68 + } + } + ], + "sabrina starnaman": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/1807198", + "quality_rating": 3.8, + "difficulty_rating": 3.1, + "would_take_again": 71, + "original_rmp_format": "Sabrina Starnaman", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 36, + "tags": [ + "Get ready to read", + "Tough grader", + "Skip class? You won't pass.", + "Beware of pop quizzes", + "Participation matters" + ], + "rmp_id": "1807198", + "instructor_id": "sxs090100", + "overall_grade_rating": 3.87, + "total_grade_count": 558, + "course_ratings": { + "LIT3316": 3.96, + "LIT3323": 3.75, + "LIT3329": 4.18, + "ARHM3342": 2.92, + "LIT3317": 3.85, + "ARHM2342": 3.91, + "LIT2329": 4.25, + "LIT3339": 3.56 + } + } + ], + "lisa vazzi": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2210928", + "quality_rating": 3.5, + "difficulty_rating": 2.4, + "would_take_again": 65, + "original_rmp_format": "Lisa Vazzi", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 17, + "tags": [ + "Clear grading criteria", + "EXTRA CREDIT", + "Group projects", + "Tough grader", + "Gives good feedback" + ], + "rmp_id": "2210928", + "instructor_id": "lxv160630", + "overall_grade_rating": 4.33, + "total_grade_count": 417, + "course_ratings": { + "COMM1311": 4.33 + } + } + ], + "jogen pathak": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2715890", + "quality_rating": 1.9, + "difficulty_rating": 4, + "would_take_again": 18, + "original_rmp_format": "Jogen Pathak", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 11, + "tags": [ + "Tough grader", + "Graded by few things", + "Get ready to read", + "Participation matters", + "Group projects" + ], + "rmp_id": "2715890", + "instructor_id": "jkp210004", + "overall_grade_rating": 3.65, + "total_grade_count": 231, + "course_ratings": { + "CE4348": 3.65, + "CS4348": 3.65 + } + } + ], + "karen hamer": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2771591", + "quality_rating": 3.8, + "difficulty_rating": 1.3, + "would_take_again": 50, + "original_rmp_format": "Karen Hamer", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 4, + "tags": ["Group projects", "Lots of homework", "Caring", "Participation matters"], + "rmp_id": "2771591", + "instructor_id": "kxh200012", + "overall_grade_rating": 4.41, + "total_grade_count": 198, + "course_ratings": { + "SOC2303": 4.34, + "CRIM3319": 4.48, + "CRIM3303": 4.25 + } + } + ], + "revansiddha khanapure": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2241054", + "quality_rating": 3.2, + "difficulty_rating": 3.6, + "would_take_again": 65, + "original_rmp_format": "Revansiddha Khanapure", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 20, + "tags": [ + "Get ready to read", + "Test heavy", + "Lecture heavy", + "Amazing lectures ", + "Lots of homework" + ], + "rmp_id": "2241054", + "instructor_id": "rbk160130", + "overall_grade_rating": 4.03, + "total_grade_count": 997, + "course_ratings": { + "FIN3320": 3.78, + "FIN4300": 4.16, + "FIN6310": 4.42, + "FIN6301": 3.77 + } + } + ], + "george decourcy": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1718380", + "quality_rating": 4.4, + "difficulty_rating": 2.8, + "would_take_again": 91, + "original_rmp_format": "George Decourcy", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 20, + "tags": [ + "Inspirational", + "Test heavy", + "Amazing lectures ", + "Clear grading criteria", + "Respected" + ], + "rmp_id": "1718380", + "instructor_id": "gad075000", + "overall_grade_rating": 4.2, + "total_grade_count": 1076, + "course_ratings": { + "FIN3365": 4.08, + "REAL3365": 3.94, + "FIN6322": 4.49, + "FIN3320": 3.72, + "REAL6322": 4.37, + "REAL3305": 3.32, + "FIN3305": 3.46 + } + } + ], + "monica evans": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1349505", + "quality_rating": 4.9, + "difficulty_rating": 2.6, + "would_take_again": 100, + "original_rmp_format": "Monica Evans", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 16, + "tags": ["Hilarious", "Amazing lectures ", "Gives good feedback", "Inspirational", "Caring"], + "rmp_id": "1349505", + "instructor_id": "mevans", + "overall_grade_rating": 4.74, + "total_grade_count": 537, + "course_ratings": { + "ATCM3369": 4.61, + "ATCM3366": 4.97, + "ANGM3369": 4.63, + "ANGM6356": 4.89, + "ATCM6356": 5.0, + "ATCM2375": 4.69, + "ATCM4379": 5.0, + "ANGM2375": 4.74, + "ANGM4369": 5.0 + } + } + ], + "yihong liu": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2849671", + "quality_rating": 5, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Yihong Liu", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 6, + "tags": [ + "Gives good feedback", + "Clear grading criteria", + "Caring", + "Amazing lectures ", + "Respected" + ], + "rmp_id": "2849671", + "instructor_id": "yxl180111", + "overall_grade_rating": 4.1, + "total_grade_count": 183, + "course_ratings": { + "ITSS3300": 4.1 + } + } + ], + "laura campos": [ + { + "department": "Philosophy", + "url": "https://www.ratemyprofessors.com/professor/3013960", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Laura Campos", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 1, + "tags": ["Participation matters", "Clear grading criteria", "Caring"], + "rmp_id": "3013960", + "instructor_id": "lxc230018", + "overall_grade_rating": 3.62, + "total_grade_count": 56, + "course_ratings": { + "PHIL1301": 3.62 + } + } + ], + "ranavir bose": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2310698", + "quality_rating": 2.2, + "difficulty_rating": 3.3, + "would_take_again": 22, + "original_rmp_format": "Ranavir Bose", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 36, + "tags": [ + "Group projects", + "Tough grader", + "Participation matters", + "Lecture heavy", + "Lots of homework" + ], + "rmp_id": "2310698", + "instructor_id": "rxb132730", + "overall_grade_rating": 3.93, + "total_grade_count": 911, + "course_ratings": { + "ITSS3300": 3.84, + "MIS6302": 4.51, + "ITSS4344": 3.98, + "MIS6378": 4.82 + } + } + ], + "pingle wang": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2667229", + "quality_rating": 3.5, + "difficulty_rating": 4, + "would_take_again": 62, + "original_rmp_format": "Pingle Wang", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 13, + "tags": [ + "Graded by few things", + "Gives good feedback", + "Caring", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "2667229", + "instructor_id": "pxw200007", + "overall_grade_rating": 3.78, + "total_grade_count": 350, + "course_ratings": { + "FIN3320": 3.78 + } + } + ], + "jonathan hartmann": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2556983", + "quality_rating": 2.1, + "difficulty_rating": 2.2, + "would_take_again": 33, + "original_rmp_format": "Jonathan Hartmann", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 9, + "tags": [ + "Group projects", + "Participation matters", + "Tough grader", + "Skip class? You won't pass.", + "Gives good feedback" + ], + "rmp_id": "2556983", + "instructor_id": "jxh190042", + "overall_grade_rating": 4.55, + "total_grade_count": 273, + "course_ratings": { + "ECS3390": 4.46, + "COMM1311": 4.74, + "ECS2390": 4.92 + } + } + ], + "rym zalila wenkstern": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1786953", + "quality_rating": 3.6, + "difficulty_rating": 3.8, + "would_take_again": 58, + "original_rmp_format": "Rym Zalila-Wenkstern", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 22, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Tough grader", + "Group projects", + "Inspirational" + ], + "rmp_id": "1786953", + "instructor_id": "rmili", + "overall_grade_rating": 3.94, + "total_grade_count": 367, + "course_ratings": { + "SE6329": 4.14, + "CS4376": 3.39, + "SE4376": 3.41, + "CS6359": 3.81, + "SE6387": 5.0, + "CS3354": 4.15 + } + } + ], + "ning luo": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2897779", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Ning Luo", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 4, + "tags": [ + "Clear grading criteria", + "Caring", + "Gives good feedback", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "2897779", + "instructor_id": "nxl180000", + "overall_grade_rating": 4.51, + "total_grade_count": 227, + "course_ratings": { + "ITSS3312": 4.51 + } + } + ], + "linda salisbury": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/1978634", + "quality_rating": 3.3, + "difficulty_rating": 2.5, + "would_take_again": 43, + "original_rmp_format": "Linda Salisbury", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 41, + "tags": [ + "Get ready to read", + "Lots of homework", + "Caring", + "Participation matters", + "Gives good feedback" + ], + "rmp_id": "1978634", + "instructor_id": "ljs130230", + "overall_grade_rating": 4.46, + "total_grade_count": 940, + "course_ratings": { + "MUSI1306": 4.42, + "MUSI3122": 4.95 + } + } + ], + "wesley ferguson": [ + { + "department": "Theater", + "url": "https://www.ratemyprofessors.com/professor/1838112", + "quality_rating": 4.7, + "difficulty_rating": 1.7, + "would_take_again": 89, + "original_rmp_format": "Wesley Ferguson", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 33, + "tags": [ + "Hilarious", + "Amazing lectures ", + "Caring", + "Beware of pop quizzes", + "Clear grading criteria" + ], + "rmp_id": "1838112", + "instructor_id": "waf061000", + "overall_grade_rating": 4.74, + "total_grade_count": 631, + "course_ratings": { + "THEA1310": 4.74 + } + } + ], + "xiaoyan shi": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2239227", + "quality_rating": 2.7, + "difficulty_rating": 3.2, + "would_take_again": 40, + "original_rmp_format": "Xiaoyan Shi", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 25, + "tags": [ + "Beware of pop quizzes", + "EXTRA CREDIT", + "Lots of homework", + "Graded by few things", + "Test heavy" + ], + "rmp_id": "2239227", + "instructor_id": "xxs151730", + "overall_grade_rating": 3.43, + "total_grade_count": 795, + "course_ratings": { + "PHYS4352": 4.05, + "PHYS1302": 3.77, + "PHYS2325": 3.15 + } + } + ], + "upender subramanian": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1362151", + "quality_rating": 2.3, + "difficulty_rating": 3.4, + "would_take_again": 20, + "original_rmp_format": "Upender Subramanian", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 22, + "tags": [ + "Tough grader", + "Lots of homework", + "Lecture heavy", + "Graded by few things", + "Group projects" + ], + "rmp_id": "1362151", + "instructor_id": "uxs092000", + "overall_grade_rating": 4.16, + "total_grade_count": 1024, + "course_ratings": { + "BUAN6337": 4.12, + "MKT6337": 4.03, + "MKT6339": 4.55 + } + } + ], + "josef velten": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2578679", + "quality_rating": 4.4, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "Josef Velten", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 8, + "tags": ["Accessible outside class", "Caring", "Hilarious", "Get ready to read", "Respected"], + "rmp_id": "2578679", + "instructor_id": "jav072000", + "overall_grade_rating": 3.97, + "total_grade_count": 39, + "course_ratings": { + "PHYS3427": 3.97 + } + } + ], + "alexander edsel": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/1514812", + "quality_rating": 3.7, + "difficulty_rating": 2.8, + "would_take_again": 68, + "original_rmp_format": "Alexander Edsel", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 67, + "tags": [ + "Lecture heavy", + "Clear grading criteria", + "Lots of homework", + "EXTRA CREDIT", + "Gives good feedback" + ], + "rmp_id": "1514812", + "instructor_id": "ade012000", + "overall_grade_rating": 3.99, + "total_grade_count": 1681, + "course_ratings": { + "MKT6321": 4.3, + "MKT4330": 3.72, + "MKT6341": 4.46, + "MKT6374": 4.68, + "ENTP4335": 3.67 + } + } + ], + "richard davis": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2412876", + "quality_rating": 4.3, + "difficulty_rating": 2.8, + "would_take_again": 75, + "original_rmp_format": "Richard Davis", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 4, + "tags": [ + "Clear grading criteria", + "Group projects", + "Gives good feedback", + "Respected", + "Accessible outside class" + ], + "rmp_id": "2412876", + "instructor_id": "rld170030", + "overall_grade_rating": 4.1, + "total_grade_count": 147, + "course_ratings": { + "FIN6356": 4.27, + "FIN6352": 4.07 + } + } + ], + "shonte clement": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/3012940", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Shonte Clement", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 1, + "tags": ["Clear grading criteria", "Caring", "Accessible outside class"], + "rmp_id": "3012940", + "instructor_id": "smc200016", + "overall_grade_rating": 3.8, + "total_grade_count": 117, + "course_ratings": { + "ATCM2302": 3.8 + } + } + ], + "heidi kane": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2040594", + "quality_rating": 1.9, + "difficulty_rating": 4.6, + "would_take_again": 19, + "original_rmp_format": "Heidi Kane", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 25, + "tags": [ + "Tough grader", + "Get ready to read", + "Test heavy", + "Participation matters", + "Lots of homework" + ], + "rmp_id": "2040594", + "instructor_id": "hsk140330", + "overall_grade_rating": 3.08, + "total_grade_count": 662, + "course_ratings": { + "HCS6376": 4.47, + "PSYC6376": 4.35, + "PSY3331": 2.93, + "PSY4328": 3.13 + } + } + ], + "matthew heins": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2233346", + "quality_rating": 4.7, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "Matthew Heins", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 24, + "tags": [ + "Gives good feedback", + "Accessible outside class", + "Clear grading criteria", + "Respected", + "Amazing lectures " + ], + "rmp_id": "2233346", + "instructor_id": "msh130130", + "overall_grade_rating": 3.94, + "total_grade_count": 912, + "course_ratings": { + "EE3350": 3.87, + "EE4301": 3.82, + "EERF6393": 4.65, + "EEGR6316": 4.59, + "ENGR2300": 3.92 + } + } + ], + "randall lehmann": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1601828", + "quality_rating": 4.7, + "difficulty_rating": 2.8, + "would_take_again": 82, + "original_rmp_format": "Randall Lehmann", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 22, + "tags": [ + "Respected", + "Amazing lectures ", + "Caring", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "1601828", + "instructor_id": "rel041000", + "overall_grade_rating": 4.11, + "total_grade_count": 718, + "course_ratings": { + "EE4368": 3.98, + "EERF6395": 4.26, + "EERF6396": 4.33 + } + } + ], + "jun xia": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2521970", + "quality_rating": 2.3, + "difficulty_rating": 3.7, + "would_take_again": 33, + "original_rmp_format": "Jun Xia", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 3, + "tags": [ + "Group projects", + "Participation matters", + "Skip class? You won't pass.", + "Clear grading criteria", + "Test heavy" + ], + "rmp_id": "2521970", + "instructor_id": "jxx132030", + "overall_grade_rating": 4.19, + "total_grade_count": 339, + "course_ratings": { + "BPS4305": 3.76, + "BPS7302": 4.77, + "BPS6310": 4.56 + } + } + ], + "troy griffin": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2888420", + "quality_rating": 3.5, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Troy Griffin", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 2, + "tags": ["Lots of homework", "Participation matters", "Gives good feedback", "Lecture heavy"], + "rmp_id": "2888420", + "instructor_id": "txg121730", + "overall_grade_rating": 4.04, + "total_grade_count": 479, + "course_ratings": { + "ANGM2309": 3.86, + "ANGM3338": 4.11, + "ANGM6312": 4.79, + "ATCM3309": 3.96, + "ATCM3338": 4.06, + "ATCM4397": 3.92 + } + } + ], + "xiaodan zhao": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2841797", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Xiaodan Zhao", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 2, + "tags": ["Group projects", "Gives good feedback", "Caring"], + "rmp_id": "2841797", + "instructor_id": "xxz210018", + "overall_grade_rating": 3.45, + "total_grade_count": 296, + "course_ratings": { + "BA1310": 3.42, + "BA1320": 3.53 + } + } + ], + "jonathan pinckney": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/3012012", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Jonathan Pinckney", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 1, + "tags": ["Get ready to read", "Participation matters", "Gives good feedback"], + "rmp_id": "3012012", + "instructor_id": "jxp230022", + "overall_grade_rating": 4.09, + "total_grade_count": 141, + "course_ratings": { + "PSCI4334": 4.18, + "PSCI4396": 4.17, + "PSCI6355": 4.48, + "PSCI3328": 3.91 + } + } + ], + "yibin zhou": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1104175", + "quality_rating": 3.3, + "difficulty_rating": 3.6, + "would_take_again": 62, + "original_rmp_format": "Yibin Zhou", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 50, + "tags": [ + "Tough grader", + "Graded by few things", + "Lecture heavy", + "Clear grading criteria", + "Test heavy" + ], + "rmp_id": "1104175", + "instructor_id": "yxz066000", + "overall_grade_rating": 3.47, + "total_grade_count": 1013, + "course_ratings": { + "ACCT3331": 3.39, + "ACCT2301": 3.01, + "ACCT6301": 4.68, + "ACCT6330": 4.35 + } + } + ], + "syd coppersmith": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1814322", + "quality_rating": 4.2, + "difficulty_rating": 2.4, + "would_take_again": 71, + "original_rmp_format": "Syd Coppersmith", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 23, + "tags": [ + "Caring", + "Participation matters", + "Gives good feedback", + "Hilarious", + "Tough grader" + ], + "rmp_id": "1814322", + "instructor_id": "sxc123831", + "overall_grade_rating": 4.43, + "total_grade_count": 198, + "course_ratings": { + "ECS3390": 4.43 + } + } + ], + "laura imaoka": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2280082", + "quality_rating": 4.2, + "difficulty_rating": 3, + "would_take_again": 87, + "original_rmp_format": "Laura Imaoka", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 15, + "tags": [ + "Gives good feedback", + "Tough grader", + "Get ready to read", + "Accessible outside class", + "Clear grading criteria" + ], + "rmp_id": "2280082", + "instructor_id": "lxi170030", + "overall_grade_rating": 3.76, + "total_grade_count": 473, + "course_ratings": { + "ATCM2320": 3.5, + "ATCM4326": 3.92, + "ATCM3320": 3.77, + "ATCM3301": 3.83, + "ATCM2321": 3.74, + "FILM3342": 3.88 + } + } + ], + "milind dawande": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/868729", + "quality_rating": 3.7, + "difficulty_rating": 3.6, + "would_take_again": 40, + "original_rmp_format": "Milind Dawande", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 9, + "tags": [ + "Gives good feedback", + "Group projects", + "Test heavy", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "868729", + "instructor_id": "milind", + "overall_grade_rating": 4.34, + "total_grade_count": 350, + "course_ratings": { + "OPRE6302": 4.33, + "OPRE7353": 4.35 + } + } + ], + "xinda wang": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2929006", + "quality_rating": 4.9, + "difficulty_rating": 2.4, + "would_take_again": 100, + "original_rmp_format": "Xinda Wang", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 7, + "tags": [ + "Clear grading criteria", + "Group projects", + "Accessible outside class", + "EXTRA CREDIT", + "Caring" + ], + "rmp_id": "2929006", + "instructor_id": "xxw230005", + "overall_grade_rating": 4.85, + "total_grade_count": 170, + "course_ratings": { + "CS6301": 4.91, + "CS4347": 4.76 + } + } + ], + "shelby vincent": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/1436733", + "quality_rating": 3.5, + "difficulty_rating": 3.7, + "would_take_again": 40, + "original_rmp_format": "Shelby Vincent", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Lots of homework", + "Gives good feedback" + ], + "rmp_id": "1436733", + "instructor_id": "sdv034000", + "overall_grade_rating": 3.87, + "total_grade_count": 141, + "course_ratings": { + "SPAN1311": 3.72, + "LIT4348": 4.2, + "CRWT3330": 3.91 + } + } + ], + "jieying zhang": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2157233", + "quality_rating": 4.1, + "difficulty_rating": 3.5, + "would_take_again": 78, + "original_rmp_format": "Jieying Zhang", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 23, + "tags": [ + "Lecture heavy", + "Respected", + "Clear grading criteria", + "Caring", + "Skip class? You won't pass." + ], + "rmp_id": "2157233", + "instructor_id": "jxz146230", + "overall_grade_rating": 3.63, + "total_grade_count": 495, + "course_ratings": { + "ACCT6332": 4.04, + "ACCT2301": 3.49 + } + } + ], + "alex ivaschenko": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2958178", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Alex Ivaschenko", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 6, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Clear grading criteria", + "Accessible outside class", + "Caring" + ], + "rmp_id": "2958178", + "instructor_id": "aii170030", + "overall_grade_rating": 4.35, + "total_grade_count": 91, + "course_ratings": { + "MIS6330": 4.35 + } + } + ], + "ricardo noe": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/2814168", + "quality_rating": 4.8, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Ricardo Noe", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 4, + "tags": [ + "Get ready to read", + "Participation matters", + "EXTRA CREDIT", + "Group projects", + "Gives good feedback" + ], + "rmp_id": "2814168", + "instructor_id": "rxn200000", + "overall_grade_rating": 3.98, + "total_grade_count": 218, + "course_ratings": { + "EPPS2301": 3.9, + "IPEC4304": 3.88, + "GOVT2306": 4.3, + "PSCI4332": 4.2, + "EPPS2302": 4.1 + } + } + ], + "amir khoobroo": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1992941", + "quality_rating": 2.9, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Amir Khoobroo", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 24, + "tags": [ + "Tough grader", + "Lots of homework", + "Skip class? You won't pass.", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "1992941", + "instructor_id": "axk144831", + "overall_grade_rating": 2.96, + "total_grade_count": 417, + "course_ratings": { + "ENGR2300": 2.73, + "EE3302": 2.35, + "EE3120": 4.45, + "CE1202": 2.44, + "EE1202": 3.26, + "CE3320": 3.43, + "EE3320": 3.0 + } + } + ], + "paula goldberg": [ + { + "department": "Writing", + "url": "https://www.ratemyprofessors.com/professor/3010124", + "quality_rating": 2, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Paula Goldberg", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 1, + "tags": ["Participation matters", "Lecture heavy", "Graded by few things"], + "rmp_id": "3010124", + "instructor_id": "pxg180023", + "overall_grade_rating": 4.67, + "total_grade_count": 211, + "course_ratings": { + "CRWT3354": 4.65, + "CRWT4355": 4.82 + } + } + ], + "kyle steadham": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1810846", + "quality_rating": 2.5, + "difficulty_rating": 3.9, + "would_take_again": 43, + "original_rmp_format": "Kyle Steadham", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 40, + "tags": [ + "Tough grader", + "Group projects", + "Lots of homework", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "1810846", + "instructor_id": "kss012400", + "overall_grade_rating": 3.35, + "total_grade_count": 233, + "course_ratings": { + "BCOM4350": 3.57, + "BCOM3310": 4.0, + "BCOM1300": 2.94, + "BCOM3300": 1.34 + } + } + ], + "junfeng wu": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2309802", + "quality_rating": 4.6, + "difficulty_rating": 1.5, + "would_take_again": 91, + "original_rmp_format": "Junfeng Wu", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 22, + "tags": ["Group projects", "Respected", "Lecture heavy", "Participation matters", "Caring"], + "rmp_id": "2309802", + "instructor_id": "jxw175430", + "overall_grade_rating": 4.28, + "total_grade_count": 619, + "course_ratings": { + "OBHR3310": 4.25, + "OB6332": 4.69 + } + } + ], + "jennifer murray": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2124655", + "quality_rating": 4.7, + "difficulty_rating": 3.5, + "would_take_again": 95, + "original_rmp_format": "Jennifer Murray", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 19, + "tags": [ + "Gives good feedback", + "Respected", + "Caring", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2124655", + "instructor_id": "jrm160330", + "overall_grade_rating": 3.92, + "total_grade_count": 391, + "course_ratings": { + "FIN3320": 3.71, + "FIN4310": 4.04, + "FIN4390": 4.8 + } + } + ], + "jun li": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2140336", + "quality_rating": 3.5, + "difficulty_rating": 4.2, + "would_take_again": 64, + "original_rmp_format": "Jun Li", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 12, + "tags": [ + "Test heavy", + "EXTRA CREDIT", + "Lecture heavy", + "Graded by few things", + "Clear grading criteria" + ], + "rmp_id": "2140336", + "instructor_id": "jxl128031", + "overall_grade_rating": 3.63, + "total_grade_count": 455, + "course_ratings": { + "FIN3320": 3.63 + } + } + ], + "entidhar al rashid": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2623320", + "quality_rating": 4.2, + "difficulty_rating": 1.6, + "would_take_again": 100, + "original_rmp_format": "Entidhar Al-Rashid", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 5, + "tags": ["Caring", "Participation matters", "Gives good feedback", "Inspirational"], + "rmp_id": "2623320", + "instructor_id": "eha170000", + "overall_grade_rating": 4.34, + "total_grade_count": 174, + "course_ratings": { + "RHET1302": 4.4, + "LIT2331": 4.01 + } + } + ], + "christopher trevino": [ + { + "department": "Theater", + "url": "https://www.ratemyprofessors.com/professor/2211377", + "quality_rating": 3, + "difficulty_rating": 2.5, + "would_take_again": 75, + "original_rmp_format": "Christopher Trevino", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 4, + "tags": [ + "Accessible outside class", + "Tough grader", + "Participation matters", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "2211377", + "instructor_id": "clt140330", + "overall_grade_rating": 4.82, + "total_grade_count": 109, + "course_ratings": { + "THEA2371": 5.0, + "THEA1310": 4.92, + "THEA3326": 3.99, + "THEA3353": 5.0 + } + } + ], + "ernest bigham": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2541089", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Ernest Bigham", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 3, + "tags": [ + "Group projects", + "Gives good feedback", + "Participation matters", + "Inspirational", + "Lots of homework" + ], + "rmp_id": "2541089", + "instructor_id": "epb180001", + "overall_grade_rating": 4.49, + "total_grade_count": 63, + "course_ratings": { + "MKT4340": 4.3, + "MKT3300": 4.81 + } + } + ], + "chieko hoki": [ + { + "department": "Languages", + "url": "https://www.ratemyprofessors.com/professor/2785417", + "quality_rating": 5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Chieko Hoki", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 2, + "tags": ["Caring", "Participation matters", "EXTRA CREDIT", "Clear grading criteria"], + "rmp_id": "2785417", + "instructor_id": "cxh190009", + "overall_grade_rating": 4.26, + "total_grade_count": 158, + "course_ratings": { + "JAPN1311": 4.14, + "JAPN2311": 4.34, + "JAPN2312": 4.33, + "JAPN3311": 4.43 + } + } + ], + "leonardo estevez": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/2987584", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Leonardo Estevez", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 1, + "tags": ["Group projects", "Amazing lectures ", "Hilarious"], + "rmp_id": "2987584", + "instructor_id": "lwe071000", + "overall_grade_rating": 4.54, + "total_grade_count": 48, + "course_ratings": { + "CGS4353": 4.69, + "CGS3346": 4.43 + } + } + ], + "charissa terranova": [ + { + "department": "Art History", + "url": "https://www.ratemyprofessors.com/professor/1068433", + "quality_rating": 2.5, + "difficulty_rating": 3.4, + "would_take_again": 17, + "original_rmp_format": "Charissa Terranova", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 42, + "tags": [ + "Lecture heavy", + "Skip class? You won't pass.", + "Get ready to read", + "Tough grader", + "Lots of homework" + ], + "rmp_id": "1068433", + "instructor_id": "cxt074100", + "overall_grade_rating": 3.69, + "total_grade_count": 487, + "course_ratings": { + "AHST3319": 3.45, + "HUAS7380": 4.86, + "VPAS3340": 3.53, + "AHST4342": 3.85, + "ARHM6310": 4.54, + "AHST2331": 3.65, + "AHST3318": 3.68 + } + } + ], + "isaac aday": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2735288", + "quality_rating": 4.7, + "difficulty_rating": 1.7, + "would_take_again": 87, + "original_rmp_format": "Isaac Aday", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 15, + "tags": [ + "Caring", + "Gives good feedback", + "Participation matters", + "EXTRA CREDIT", + "Clear grading criteria" + ], + "rmp_id": "2735288", + "instructor_id": "ija180000", + "overall_grade_rating": 3.88, + "total_grade_count": 141, + "course_ratings": { + "RHET1302": 3.84, + "LIT2331": 3.99 + } + } + ], + "david murchison": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1663776", + "quality_rating": 4.6, + "difficulty_rating": 3, + "would_take_again": 89, + "original_rmp_format": "David Murchison", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 10, + "tags": [ + "Respected", + "Amazing lectures ", + "Gives good feedback", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "1663776", + "instructor_id": "dfm100020", + "overall_grade_rating": 4.2, + "total_grade_count": 584, + "course_ratings": { + "BIOL4385": 4.21, + "BIOL3385": 3.78, + "HONS3199": 4.84, + "HONS3116": 4.98 + } + } + ], + "zhiqiang zheng": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/1998244", + "quality_rating": 3.4, + "difficulty_rating": 3.5, + "would_take_again": 62, + "original_rmp_format": "Zhiqiang Zheng ", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 8, + "tags": [ + "Lecture heavy", + "Group projects", + "Accessible outside class", + "Inspirational", + "Respected" + ], + "rmp_id": "1998244", + "instructor_id": "zxz062000", + "overall_grade_rating": 4.26, + "total_grade_count": 184, + "course_ratings": { + "MIS6334": 4.3, + "FIN6392": 4.26 + } + } + ], + "adron ming": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/3009346", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Adron Ming", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 1, + "tags": ["Beware of pop quizzes", "Caring", "Respected"], + "rmp_id": "3009346", + "instructor_id": "axm167231", + "overall_grade_rating": 4.86, + "total_grade_count": 383, + "course_ratings": { + "MUSI3118": 4.97, + "MUSI1306": 4.38, + "MUSI4118": 4.96, + "MUSI2328": 3.86 + } + } + ], + "jeff dejong": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/631911", + "quality_rating": 2.5, + "difficulty_rating": 4.4, + "would_take_again": 32, + "original_rmp_format": "Jeff Dejong", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 59, + "tags": [ + "Test heavy", + "Graded by few things", + "Tough grader", + "Get ready to read", + "Clear grading criteria" + ], + "rmp_id": "631911", + "instructor_id": "dejong", + "overall_grade_rating": 3.08, + "total_grade_count": 2277, + "course_ratings": { + "BIOL3101": 3.01, + "BIOL3162": 3.08, + "BIOL3362": 3.19, + "BIOL3301": 3.11, + "BIOL6337": 4.72 + } + } + ], + "steven billingslea": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2031624", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Steven Billingslea", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 2, + "tags": [ + "Group projects", + "Gives good feedback", + "Lots of homework", + "Respected", + "Graded by few things" + ], + "rmp_id": "2031624", + "instructor_id": "slb073000", + "overall_grade_rating": 4.43, + "total_grade_count": 126, + "course_ratings": { + "ATCM3367": 4.29, + "ATCM4365": 4.37, + "ANGM3365": 4.83 + } + } + ], + "jonathan rosa": [ + { + "department": "International Studies", + "url": "https://www.ratemyprofessors.com/professor/2254720", + "quality_rating": 3.3, + "difficulty_rating": 2.9, + "would_take_again": 43, + "original_rmp_format": "Jonathan Rosa", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 7, + "tags": [ + "Get ready to read", + "Participation matters", + "Group projects", + "Graded by few things", + "Tough grader" + ], + "rmp_id": "2254720", + "instructor_id": "jxr172530", + "overall_grade_rating": 4.17, + "total_grade_count": 415, + "course_ratings": { + "ISIS3335": 4.17 + } + } + ], + "shiyi wei": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2286909", + "quality_rating": 4.6, + "difficulty_rating": 3.2, + "would_take_again": 80, + "original_rmp_format": "Shiyi Wei", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 20, + "tags": [ + "Caring", + "Accessible outside class", + "Group projects", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2286909", + "instructor_id": "sxw174630", + "overall_grade_rating": 3.91, + "total_grade_count": 484, + "course_ratings": { + "CS3354": 3.98, + "CE3354": 3.75, + "CS4386": 3.34, + "CS6301": 4.26, + "CS6353": 4.65, + "CS6356": 4.65 + } + } + ], + "qiwei li": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2550200", + "quality_rating": 2.9, + "difficulty_rating": 3.3, + "would_take_again": 31, + "original_rmp_format": "Qiwei Li", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 13, + "tags": [ + "Group projects", + "Tough grader", + "Graded by few things", + "Skip class? You won't pass.", + "Lots of homework" + ], + "rmp_id": "2550200", + "instructor_id": "qxl190009", + "overall_grade_rating": 3.98, + "total_grade_count": 468, + "course_ratings": { + "STAT3355": 3.84, + "STAT7330": 4.52, + "STAT6390": 4.63, + "STAT5353": 4.52 + } + } + ], + "quincy johnson": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2801740", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Quincy Johnson", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 1, + "tags": ["Group projects", "Amazing lectures ", "Caring"], + "rmp_id": "2801740", + "instructor_id": "qfj061000", + "overall_grade_rating": 4.66, + "total_grade_count": 382, + "course_ratings": { + "MKT4334": 4.54, + "MKT4360": 4.81, + "MKT3300": 4.36 + } + } + ], + "jeff noland": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1776407", + "quality_rating": 5, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "Jeff Noland", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 6, + "tags": [ + "Amazing lectures ", + "Gives good feedback", + "Caring", + "Respected", + "Graded by few things" + ], + "rmp_id": "1776407", + "instructor_id": "jxn125330", + "overall_grade_rating": 4.2, + "total_grade_count": 154, + "course_ratings": { + "FIN3395": 4.21, + "FIN4307": 4.12, + "FIN6352": 4.25 + } + } + ], + "john worrall": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/970230", + "quality_rating": 4, + "difficulty_rating": 2.7, + "would_take_again": 82, + "original_rmp_format": "John Worrall", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 28, + "tags": [ + "Get ready to read", + "Clear grading criteria", + "Group projects", + "Gives good feedback", + "Tough grader" + ], + "rmp_id": "970230", + "instructor_id": "jlw064000", + "overall_grade_rating": 4.0, + "total_grade_count": 780, + "course_ratings": { + "CRIM3300": 3.98, + "CRIM7305": 4.94, + "CRIM6300": 3.75, + "CRIM2317": 4.11, + "CRIM4396": 3.99 + } + } + ], + "emily touchstone": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/1848029", + "quality_rating": 5, + "difficulty_rating": 1.6, + "would_take_again": 100, + "original_rmp_format": "Emily Touchstone", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 77, + "tags": ["Amazing lectures ", "Caring", "Clear grading criteria", "Hilarious", "Respected"], + "rmp_id": "1848029", + "instructor_id": "exw010200", + "overall_grade_rating": 4.73, + "total_grade_count": 2429, + "course_ratings": { + "HCS6357": 4.53, + "HDCD6319": 4.55, + "PSY3310": 4.63, + "CLDP3310": 4.73, + "COMD6240": 4.99, + "COMD7219": 4.99, + "CLDP3305": 4.59, + "COMD7222": 4.97, + "SPAU3305": 4.6, + "SPAU4308": 4.54, + "CLDP4308": 4.37 + } + } + ], + "victor valcarcel": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2099786", + "quality_rating": 3, + "difficulty_rating": 3.7, + "would_take_again": 41, + "original_rmp_format": "Victor Valcarcel", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 35, + "tags": [ + "Skip class? You won't pass.", + "Lecture heavy", + "Beware of pop quizzes", + "Participation matters", + "Tough grader" + ], + "rmp_id": "2099786", + "instructor_id": "vjv150130", + "overall_grade_rating": 3.43, + "total_grade_count": 475, + "course_ratings": { + "ECON2301": 3.58, + "ECON3311": 3.31, + "ECON3312": 2.9, + "ECON7302": 3.82 + } + } + ], + "zhonglan dai": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2366912", + "quality_rating": 1.6, + "difficulty_rating": 4.3, + "would_take_again": 6, + "original_rmp_format": "Zhonglan Dai", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 16, + "tags": [ + "Beware of pop quizzes", + "Test heavy", + "Graded by few things", + "Tough grader", + "Lecture heavy" + ], + "rmp_id": "2366912", + "instructor_id": "zxd051000", + "overall_grade_rating": 3.45, + "total_grade_count": 634, + "course_ratings": { + "ACCT6202": 3.92, + "ACCT2302": 3.34 + } + } + ], + "yunan wu": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/2768006", + "quality_rating": 3.4, + "difficulty_rating": 3.7, + "would_take_again": 58, + "original_rmp_format": "Yunan Wu", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 12, + "tags": [ + "Beware of pop quizzes", + "Caring", + "Accessible outside class", + "EXTRA CREDIT", + "Lecture heavy" + ], + "rmp_id": "2768006", + "instructor_id": "yxw200032", + "overall_grade_rating": 3.96, + "total_grade_count": 331, + "course_ratings": { + "STAT4352": 3.76, + "STAT6341": 4.82, + "STAT2332": 4.07 + } + } + ], + "xiaoxiao tang": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2580921", + "quality_rating": 3.5, + "difficulty_rating": 2.5, + "would_take_again": 50, + "original_rmp_format": "Xiaoxiao Tang", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 6, + "tags": [ + "Test heavy", + "Clear grading criteria", + "Caring", + "EXTRA CREDIT", + "Amazing lectures " + ], + "rmp_id": "2580921", + "instructor_id": "xxt180003", + "overall_grade_rating": 3.94, + "total_grade_count": 247, + "course_ratings": { + "FIN4300": 3.94 + } + } + ], + "rishabh iyer": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2566277", + "quality_rating": 3.4, + "difficulty_rating": 3.9, + "would_take_again": 29, + "original_rmp_format": "Rishabh Iyer", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 7, + "tags": [ + "Get ready to read", + "Lecture heavy", + "Graded by few things", + "Tough grader", + "Clear grading criteria" + ], + "rmp_id": "2566277", + "instructor_id": "rki190000", + "overall_grade_rating": 4.13, + "total_grade_count": 316, + "course_ratings": { + "CS6375": 4.15, + "CS7301": 4.97, + "CS4375": 3.94 + } + } + ], + "sheen levine": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/2230460", + "quality_rating": 3.2, + "difficulty_rating": 4.5, + "would_take_again": 51, + "original_rmp_format": "Sheen Levine", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 37, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Amazing lectures ", + "Beware of pop quizzes" + ], + "rmp_id": "2230460", + "instructor_id": "ssl140530", + "overall_grade_rating": 3.25, + "total_grade_count": 268, + "course_ratings": { + "IMS3310": 2.94, + "BPS4305": 3.88 + } + } + ], + "vikram nanda": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2141604", + "quality_rating": 2.2, + "difficulty_rating": 4, + "would_take_again": 38, + "original_rmp_format": "Vikram Nanda", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 9, + "tags": ["Group projects", "Lecture heavy", "Tough grader", "Lots of homework", "Respected"], + "rmp_id": "2141604", + "instructor_id": "vkn150030", + "overall_grade_rating": 4.35, + "total_grade_count": 231, + "course_ratings": { + "FIN6301": 4.32, + "FIN7345": 5.0 + } + } + ], + "geng sun": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2467942", + "quality_rating": 2.1, + "difficulty_rating": 4.1, + "would_take_again": 12, + "original_rmp_format": "Geng Sun", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 8, + "tags": [ + "Tough grader", + "Lots of homework", + "Lecture heavy", + "Graded by few things", + "Group projects" + ], + "rmp_id": "2467942", + "instructor_id": "gxs122530", + "overall_grade_rating": 4.01, + "total_grade_count": 48, + "course_ratings": { + "ITSS3300": 4.01 + } + } + ], + "guihua wang": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2527968", + "quality_rating": 3.3, + "difficulty_rating": 2.7, + "would_take_again": 57, + "original_rmp_format": "Guihua Wang", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 7, + "tags": [ + "Lots of homework", + "Group projects", + "Amazing lectures ", + "Clear grading criteria", + "Respected" + ], + "rmp_id": "2527968", + "instructor_id": "gxw130630", + "overall_grade_rating": 4.39, + "total_grade_count": 391, + "course_ratings": { + "OPRE6302": 4.38, + "HMGT6325": 4.36, + "OPRE6325": 4.55 + } + } + ], + "michelle prudhomme coleman": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2512416", + "quality_rating": 2.2, + "difficulty_rating": 4, + "would_take_again": 17, + "original_rmp_format": "Michelle Prudhomme-Coleman", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Participation matters", + "Lecture heavy", + "Get ready to read", + "Skip class? You won't pass." + ], + "rmp_id": "2512416", + "instructor_id": "mxp190035", + "overall_grade_rating": 2.92, + "total_grade_count": 241, + "course_ratings": { + "BCOM3310": 3.17, + "BCOM4350": 3.96, + "BCOM1300": 2.71, + "BCOM4300": 2.52 + } + } + ], + "elizabeth boyd": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2209098", + "quality_rating": 4, + "difficulty_rating": 3.9, + "would_take_again": 71, + "original_rmp_format": "Elizabeth Boyd", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 7, + "tags": [ + "Lots of homework", + "Tough grader", + "Gives good feedback", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "2209098", + "instructor_id": "esp041000", + "overall_grade_rating": 3.96, + "total_grade_count": 716, + "course_ratings": { + "ATCM1100": 3.92, + "ATCM3306": 3.57, + "ATCM4306": 3.58, + "ATCM4312": 3.94, + "ATCM2303": 4.52, + "ANGM3306": 3.47, + "ANGM4306": 3.99, + "ANGM4321": 4.9, + "ATCM4397": 4.0, + "ANGM4312": 3.99 + } + } + ], + "amny shuraydi": [ + { + "department": "Journalism", + "url": "https://www.ratemyprofessors.com/professor/2243832", + "quality_rating": 4, + "difficulty_rating": 3.3, + "would_take_again": 75, + "original_rmp_format": "Amny Shuraydi", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 4, + "tags": [ + "Clear grading criteria", + "Caring", + "Lecture heavy", + "Tough grader", + "Would take again" + ], + "rmp_id": "2243832", + "instructor_id": "axs136130", + "overall_grade_rating": 4.22, + "total_grade_count": 39, + "course_ratings": { + "CRIM3301": 4.22 + } + } + ], + "joshua sisk": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2961311", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Joshua Sisk", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 1, + "tags": ["Participation matters", "Gives good feedback", "Caring"], + "rmp_id": "2961311", + "instructor_id": "jrs106020", + "overall_grade_rating": 4.16, + "total_grade_count": 536, + "course_ratings": { + "CHEM1111": 4.04, + "CHEM1112": 4.42 + } + } + ], + "zahra jafarpour": [ + { + "department": "Fine Arts", + "url": "https://www.ratemyprofessors.com/professor/3003575", + "quality_rating": 1, + "difficulty_rating": 2, + "would_take_again": 0, + "original_rmp_format": "Zahra Jafarpour", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 1, + "tags": ["Lots of homework", "Lecture heavy", "Graded by few things"], + "rmp_id": "3003575", + "instructor_id": "zxj220003", + "overall_grade_rating": 4.53, + "total_grade_count": 48, + "course_ratings": { + "ARTS1316": 4.53 + } + } + ], + "carol marcus rehtmeyer": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2980274", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Carol Marcus-Rehtmeyer", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Clear grading criteria", "Gives good feedback"], + "rmp_id": "2980274", + "instructor_id": "cxm230023", + "overall_grade_rating": 4.27, + "total_grade_count": 121, + "course_ratings": { + "ENTP4350": 4.32, + "ENTP4311": 4.19 + } + } + ], + "kimberly wright": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3003375", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Kimberly Wright", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Hilarious", "Accessible outside class"], + "rmp_id": "3003375", + "instructor_id": "kes054000", + "overall_grade_rating": 4.6, + "total_grade_count": 95, + "course_ratings": { + "ENTP4320": 4.6 + } + } + ], + "samantha manuel": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2909718", + "quality_rating": 2.9, + "difficulty_rating": 4.1, + "would_take_again": 47, + "original_rmp_format": "Samantha Manuel ", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 15, + "tags": ["Test heavy", "Tough grader", "Caring", "Participation matters", "Lecture heavy"], + "rmp_id": "2909718", + "instructor_id": "sam160130", + "overall_grade_rating": 3.88, + "total_grade_count": 278, + "course_ratings": { + "CRIM1301": 3.21, + "CRIM4311": 4.24, + "CRIM1307": 3.79, + "CRIM3301": 4.08 + } + } + ], + "pavithra balaji": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2686154", + "quality_rating": 4.3, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Pavithra Balaji", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 4, + "tags": [ + "Group projects", + "Caring", + "Participation matters", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2686154", + "instructor_id": "pxb162030", + "overall_grade_rating": 4.59, + "total_grade_count": 54, + "course_ratings": { + "IMS3310": 4.59 + } + } + ], + "arthur vasquez": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2849853", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Arthur Vasquez", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 14, + "tags": ["Amazing lectures ", "Hilarious", "EXTRA CREDIT", "Get ready to read", "Caring"], + "rmp_id": "2849853", + "instructor_id": "agv100020", + "overall_grade_rating": 4.54, + "total_grade_count": 1089, + "course_ratings": { + "CRIM1301": 4.26, + "CRIM3303": 4.57, + "CRIM3312": 4.7, + "CRIM1307": 4.25, + "CRIM3310": 4.61, + "CRIM4315": 4.64, + "CRIM3307": 4.85, + "CRIM4396": 4.78 + } + } + ], + "katherine wilds": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2911083", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Katherine Wilds", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 3, + "tags": [ + "Clear grading criteria", + "Caring", + "Group projects", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2911083", + "instructor_id": "kmw160130", + "overall_grade_rating": 4.34, + "total_grade_count": 220, + "course_ratings": { + "CRIM3309": 4.39, + "CRIM3310": 4.21, + "CRIM1307": 4.6 + } + } + ], + "diana kim": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/2824000", + "quality_rating": 3.1, + "difficulty_rating": 4.3, + "would_take_again": 54, + "original_rmp_format": "Diana Kim", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 28, + "tags": [ + "Test heavy", + "EXTRA CREDIT", + "Graded by few things", + "Tough grader", + "Lecture heavy" + ], + "rmp_id": "2824000", + "instructor_id": "dpk220003", + "overall_grade_rating": 3.93, + "total_grade_count": 421, + "course_ratings": { + "NSC3361": 3.55, + "NSC4353": 4.46, + "NSC4354": 3.99, + "NSC4373": 4.31, + "ACN6340": 3.86 + } + } + ], + "azharul islam": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2912340", + "quality_rating": 2, + "difficulty_rating": 3, + "would_take_again": 0, + "original_rmp_format": "Azharul Islam", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 1, + "tags": ["Lecture heavy", "Test heavy"], + "rmp_id": "2912340", + "instructor_id": "axi190001", + "overall_grade_rating": 3.38, + "total_grade_count": 108, + "course_ratings": { + "ECON2301": 3.38 + } + } + ], + "rainer schulte": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/808882", + "quality_rating": 3.5, + "difficulty_rating": 3.2, + "would_take_again": 67, + "original_rmp_format": "Rainer Schulte", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 18, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Would take again", + "Gives good feedback", + "Caring" + ], + "rmp_id": "808882", + "instructor_id": "schulte", + "overall_grade_rating": 4.58, + "total_grade_count": 50, + "course_ratings": { + "LIT6380": 4.78, + "LIT6326": 4.51, + "HUAS6350": 4.72, + "LIT7322": 4.25 + } + } + ], + "jason parker": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1805241", + "quality_rating": 3.4, + "difficulty_rating": 3.4, + "would_take_again": 58, + "original_rmp_format": "Jason Parker", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 57, + "tags": [ + "Lots of homework", + "Amazing lectures ", + "Respected", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "1805241", + "instructor_id": "jap090020", + "overall_grade_rating": 4.58, + "total_grade_count": 2077, + "course_ratings": { + "ITSS4353": 4.42, + "MIS6356": 4.56, + "BUAN6356": 4.55, + "BUAN6340": 4.63, + "BUAN6341": 4.48 + } + } + ], + "michael kilgard": [ + { + "department": "Medicine", + "url": "https://www.ratemyprofessors.com/professor/724359", + "quality_rating": 3.8, + "difficulty_rating": 4, + "would_take_again": 88, + "original_rmp_format": "Michael Kilgard", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 27, + "tags": [ + "Get ready to read", + "Participation matters", + "Skip class? You won't pass.", + "Inspirational", + "Amazing lectures " + ], + "rmp_id": "724359", + "instructor_id": "kilgard", + "overall_grade_rating": 4.08, + "total_grade_count": 195, + "course_ratings": { + "ACN6388": 3.57, + "HCS6388": 4.45, + "NSC4371": 3.8, + "HCS7121": 5.0 + } + } + ], + "chidike okeem": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2363564", + "quality_rating": 4, + "difficulty_rating": 2.5, + "would_take_again": 75, + "original_rmp_format": "Chidike Okeem", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 4, + "tags": [ + "Clear grading criteria", + "Participation matters", + "Tough grader", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2363564", + "instructor_id": "cio150030", + "overall_grade_rating": 4.0, + "total_grade_count": 48, + "course_ratings": { + "CRIM3301": 3.73, + "CRIM3319": 4.15 + } + } + ], + "nicole west": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2961254", + "quality_rating": 0, + "difficulty_rating": 0, + "would_take_again": -1, + "original_rmp_format": "Nicole West", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 0, + "tags": ["Group projects"], + "rmp_id": "2961254", + "instructor_id": "nxw230005", + "overall_grade_rating": 3.92, + "total_grade_count": 113, + "course_ratings": { + "BPS4305": 3.92 + } + } + ], + "maryam baig": [ + { + "department": "Theater", + "url": "https://www.ratemyprofessors.com/professor/2284181", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 74, + "original_rmp_format": "Maryam Baig", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 23, + "tags": [ + "Group projects", + "Amazing lectures ", + "Inspirational", + "Participation matters", + "Hilarious" + ], + "rmp_id": "2284181", + "instructor_id": "baig", + "overall_grade_rating": 4.86, + "total_grade_count": 303, + "course_ratings": { + "THEA1310": 4.86 + } + } + ], + "tomoki ohsawa": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2150814", + "quality_rating": 3.7, + "difficulty_rating": 3.5, + "would_take_again": 64, + "original_rmp_format": "Tomoki Ohsawa", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 22, + "tags": [ + "Amazing lectures ", + "Lots of homework", + "Respected", + "Lecture heavy", + "Skip class? You won't pass." + ], + "rmp_id": "2150814", + "instructor_id": "txo140730", + "overall_grade_rating": 2.71, + "total_grade_count": 517, + "course_ratings": { + "MATH2418": 2.74, + "MATH6331": 4.04, + "MATH2417": 2.58, + "MATH4301": 2.87 + } + } + ], + "shailesh shah": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2240625", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Shailesh Shah", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 29, + "tags": [ + "Respected", + "Caring", + "Gives good feedback", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "2240625", + "instructor_id": "sns170230", + "overall_grade_rating": 4.61, + "total_grade_count": 1247, + "course_ratings": { + "CHEM2123": 4.73, + "CHEM2125": 4.65, + "CHEM2323": 3.52 + } + } + ], + "guoping xiong": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2697866", + "quality_rating": 3.3, + "difficulty_rating": 3.8, + "would_take_again": 50, + "original_rmp_format": "Guoping Xiong", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 4, + "tags": [ + "Amazing lectures ", + "Test heavy", + "Graded by few things", + "Tough grader", + "Clear grading criteria" + ], + "rmp_id": "2697866", + "instructor_id": "gxx200001", + "overall_grade_rating": 4.33, + "total_grade_count": 230, + "course_ratings": { + "MECH3310": 4.31, + "MECH3320": 4.29, + "MECH6377": 4.96 + } + } + ], + "zafar anjum": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/1726729", + "quality_rating": 4.5, + "difficulty_rating": 1.6, + "would_take_again": 88, + "original_rmp_format": "Zafar Anjum", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 32, + "tags": [ + "Caring", + "Participation matters", + "Respected", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "1726729", + "instructor_id": "zxa110730", + "overall_grade_rating": 4.65, + "total_grade_count": 425, + "course_ratings": { + "ARAB1311": 4.62, + "HUMA3351": 4.89, + "ARAB1312": 4.28, + "RELS2314": 4.53, + "ARAB3351": 4.64, + "RELS3351": 4.49 + } + } + ], + "waseem abbas": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2996102", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Waseem Abbas", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Inspirational", "Caring"], + "rmp_id": "2996102", + "instructor_id": "wxa210006", + "overall_grade_rating": 3.36, + "total_grade_count": 128, + "course_ratings": { + "EE4310": 3.25, + "MECH6300": 4.23 + } + } + ], + "simon siegenthaler": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2434876", + "quality_rating": 5, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "Simon Siegenthaler", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 12, + "tags": [ + "Amazing lectures ", + "Lecture heavy", + "Clear grading criteria", + "Caring", + "Respected" + ], + "rmp_id": "2434876", + "instructor_id": "sxs177933", + "overall_grade_rating": 3.87, + "total_grade_count": 502, + "course_ratings": { + "MECO6303": 4.47, + "BA3300": 3.67 + } + } + ], + "youngrok kim": [ + { + "department": "Public Policy", + "url": "https://www.ratemyprofessors.com/professor/2884787", + "quality_rating": 3, + "difficulty_rating": 2, + "would_take_again": 0, + "original_rmp_format": "Youngrok Kim", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 1, + "tags": ["Group projects"], + "rmp_id": "2884787", + "instructor_id": "yxk200007", + "overall_grade_rating": 4.51, + "total_grade_count": 48, + "course_ratings": { + "EPPS2301": 4.51 + } + } + ], + "daniel obrien": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/640705", + "quality_rating": 4.4, + "difficulty_rating": 2.1, + "would_take_again": 90, + "original_rmp_format": "Daniel O'Brien", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 15, + "tags": ["EXTRA CREDIT", "Clear grading criteria", "Lots of homework", "Caring", "Respected"], + "rmp_id": "640705", + "instructor_id": "obri", + "overall_grade_rating": 4.57, + "total_grade_count": 303, + "course_ratings": { + "ECON4351": 4.37, + "ECON6305": 4.7, + "ECON6306": 4.85 + } + } + ], + "ahmed alsuhayyan": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2729954", + "quality_rating": 3.3, + "difficulty_rating": 1.7, + "would_take_again": 50, + "original_rmp_format": "Ahmed Alsuhayyan", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 12, + "tags": [ + "Participation matters", + "Gives good feedback", + "Caring", + "Respected", + "Accessible outside class" + ], + "rmp_id": "2729954", + "instructor_id": "axa175431", + "overall_grade_rating": 4.07, + "total_grade_count": 102, + "course_ratings": { + "RHET1302": 4.07 + } + } + ], + "nami kroska": [ + { + "department": "Languages", + "url": "https://www.ratemyprofessors.com/professor/2352710", + "quality_rating": 4.4, + "difficulty_rating": 2.7, + "would_take_again": 91, + "original_rmp_format": "Nami Kroska", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 11, + "tags": [ + "Caring", + "Gives good feedback", + "Lots of homework", + "Respected", + "Accessible outside class" + ], + "rmp_id": "2352710", + "instructor_id": "nxk167330", + "overall_grade_rating": 4.06, + "total_grade_count": 201, + "course_ratings": { + "JAPN2311": 4.12, + "JAPN3311": 4.05, + "JAPN1311": 4.1, + "JAPN1312": 3.8, + "JAPN2312": 4.01 + } + } + ], + "partha de": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2398821", + "quality_rating": 4.5, + "difficulty_rating": 3.7, + "would_take_again": 87, + "original_rmp_format": "Partha De", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 15, + "tags": [ + "Get ready to read", + "Caring", + "Amazing lectures ", + "Skip class? You won't pass.", + "Lecture heavy" + ], + "rmp_id": "2398821", + "instructor_id": "pxd141430", + "overall_grade_rating": 3.98, + "total_grade_count": 326, + "course_ratings": { + "CS1134": 3.83, + "CS1334": 4.14, + "CS2336": 3.97 + } + } + ], + "richard golden": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/1684315", + "quality_rating": 3.6, + "difficulty_rating": 4.2, + "would_take_again": 71, + "original_rmp_format": "Richard Golden", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 16, + "tags": ["Caring", "Respected", "Lecture heavy", "Get ready to read", "Hilarious"], + "rmp_id": "1684315", + "instructor_id": "golden", + "overall_grade_rating": 4.23, + "total_grade_count": 251, + "course_ratings": { + "PSY3393": 3.05, + "ACN6349": 4.81, + "ACN6348": 4.58, + "CGS4314": 2.89, + "CS4314": 3.5, + "ACN6347": 4.64, + "CGS3342": 4.68, + "ACN5314": 4.56 + } + } + ], + "uri smashnov": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2449591", + "quality_rating": 4, + "difficulty_rating": 4.3, + "would_take_again": 75, + "original_rmp_format": "Uri Smashnov", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 16, + "tags": [ + "Lots of homework", + "Accessible outside class", + "Clear grading criteria", + "Get ready to read", + "Tough grader" + ], + "rmp_id": "2449591", + "instructor_id": "uxs051000", + "overall_grade_rating": 3.97, + "total_grade_count": 262, + "course_ratings": { + "BUAN6320": 3.59, + "MKT6373": 3.82, + "BUAN6341": 3.91, + "MIS6326": 4.27 + } + } + ], + "patrick brandt": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1105500", + "quality_rating": 3.4, + "difficulty_rating": 2.8, + "would_take_again": 33, + "original_rmp_format": "Patrick Brandt", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 23, + "tags": [ + "Get ready to read", + "Lecture heavy", + "Would take again", + "Hilarious", + "Skip class? You won't pass." + ], + "rmp_id": "1105500", + "instructor_id": "pxb054000", + "overall_grade_rating": 3.96, + "total_grade_count": 245, + "course_ratings": { + "PSCI6350": 3.86, + "EPPS7390": 3.98, + "EPPS7370": 4.48, + "PSCI4307": 3.58, + "EPPS7316": 4.22, + "GOVT2305": 3.66 + } + } + ], + "murat torlak": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1910124", + "quality_rating": 1.8, + "difficulty_rating": 3.6, + "would_take_again": 20, + "original_rmp_format": "Murat Torlak", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 12, + "tags": [ + "Tough grader", + "Test heavy", + "Get ready to read", + "Participation matters", + "Lecture heavy" + ], + "rmp_id": "1910124", + "instructor_id": "torlak", + "overall_grade_rating": 3.9, + "total_grade_count": 83, + "course_ratings": { + "EESC6390": 4.24, + "EE3350": 3.76 + } + } + ], + "abraham taha": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2577677", + "quality_rating": 2, + "difficulty_rating": 1.3, + "would_take_again": 0, + "original_rmp_format": "Abraham Taha", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 3, + "tags": ["Participation matters", "Graded by few things", "Lecture heavy"], + "rmp_id": "2577677", + "instructor_id": "mxt108120", + "overall_grade_rating": 4.35, + "total_grade_count": 119, + "course_ratings": { + "ECS1100": 4.35 + } + } + ], + "alexander burton": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2940101", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Alexander Burton", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 2, + "tags": ["Get ready to read", "Group projects", "Gives good feedback", "Caring", "Respected"], + "rmp_id": "2940101", + "instructor_id": "axb210254", + "overall_grade_rating": 4.37, + "total_grade_count": 182, + "course_ratings": { + "CRIM2316": 4.33, + "CRIM6313": 4.58, + "CRIM6381": 4.84, + "CRIM4311": 4.28 + } + } + ], + "stan liebowitz": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1583705", + "quality_rating": 3.6, + "difficulty_rating": 3.6, + "would_take_again": 67, + "original_rmp_format": "Stan Liebowitz", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 16, + "tags": [ + "Tough grader", + "Lecture heavy", + "Participation matters", + "EXTRA CREDIT", + "Amazing lectures " + ], + "rmp_id": "1583705", + "instructor_id": "liebowit", + "overall_grade_rating": 4.35, + "total_grade_count": 83, + "course_ratings": { + "MECO6303": 4.29, + "MECO6368": 4.72 + } + } + ], + "namrta sharma": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2832132", + "quality_rating": 4.5, + "difficulty_rating": 2.5, + "would_take_again": 50, + "original_rmp_format": "Namrta Sharma", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 2, + "tags": ["Participation matters", "Group projects", "Amazing lectures ", "So many papers"], + "rmp_id": "2832132", + "instructor_id": "nxs200001", + "overall_grade_rating": 4.3, + "total_grade_count": 75, + "course_ratings": { + "PSCI3310": 4.2, + "PA4370": 4.89, + "PA3333": 4.2 + } + } + ], + "kong bhat": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2714059", + "quality_rating": 4.1, + "difficulty_rating": 2.4, + "would_take_again": 95, + "original_rmp_format": "Kong Bhat", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 19, + "tags": [ + "EXTRA CREDIT", + "Caring", + "Lecture heavy", + "Clear grading criteria", + "Lots of homework" + ], + "rmp_id": "2714059", + "instructor_id": "kpb016100", + "overall_grade_rating": 4.14, + "total_grade_count": 140, + "course_ratings": { + "CS2305": 4.02, + "CS2337": 4.24 + } + } + ], + "melissa hernandez katz": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1968629", + "quality_rating": 4.5, + "difficulty_rating": 2, + "would_take_again": 86, + "original_rmp_format": "Melissa Hernandez-Katz", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 19, + "tags": [ + "Group projects", + "Participation matters", + "Caring", + "Respected", + "Clear grading criteria" + ], + "rmp_id": "1968629", + "instructor_id": "mhkatz", + "overall_grade_rating": 4.65, + "total_grade_count": 573, + "course_ratings": { + "ECS3390": 4.68, + "COMM1315": 4.66, + "ECS2390": 4.59, + "COMM4350": 4.29, + "COMM4371": 4.68, + "COMM4370": 4.92 + } + } + ], + "monica saba": [ + { + "department": "Fine Arts", + "url": "https://www.ratemyprofessors.com/professor/1765064", + "quality_rating": 3.7, + "difficulty_rating": 1.8, + "would_take_again": 38, + "original_rmp_format": "Monica Saba", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 14, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Group projects", + "So many papers", + "Lots of homework" + ], + "rmp_id": "1765064", + "instructor_id": "msaba", + "overall_grade_rating": 4.4, + "total_grade_count": 562, + "course_ratings": { + "DANC2334": 4.18, + "DANC1310": 4.31, + "DANC1305": 4.53, + "DANC2332": 3.51, + "DANC3333": 4.29, + "DANC3335": 4.85, + "DANC3345": 5.0 + } + } + ], + "noirrit chandra": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2816583", + "quality_rating": 1.9, + "difficulty_rating": 4.5, + "would_take_again": 21, + "original_rmp_format": "Noirrit Chandra", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 14, + "tags": [ + "Tough grader", + "EXTRA CREDIT", + "Lots of homework", + "Accessible outside class", + "Get ready to read" + ], + "rmp_id": "2816583", + "instructor_id": "nxc220031", + "overall_grade_rating": 3.99, + "total_grade_count": 275, + "course_ratings": { + "CS3341": 4.06, + "STAT5352": 3.54 + } + } + ], + "david rheams": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2494672", + "quality_rating": 4.9, + "difficulty_rating": 2.4, + "would_take_again": 88, + "original_rmp_format": "David Rheams", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 8, + "tags": ["Caring", "Gives good feedback", "Amazing lectures ", "Inspirational", "Hilarious"], + "rmp_id": "2494672", + "instructor_id": "dcr093020", + "overall_grade_rating": 4.2, + "total_grade_count": 436, + "course_ratings": { + "ATCM3301": 3.93, + "ATCM4326": 4.4, + "ATCM4334": 3.54, + "ATCM3320": 4.12, + "ATCM3325": 4.44, + "ATCM4320": 4.33, + "ATCM4384": 4.43 + } + } + ], + "amy grieshaber": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2962106", + "quality_rating": 5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Amy Grieshaber", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 2, + "tags": ["Group projects", "Amazing lectures ", "Clear grading criteria", "Respected"], + "rmp_id": "2962106", + "instructor_id": "axg230118", + "overall_grade_rating": 4.38, + "total_grade_count": 624, + "course_ratings": { + "ANGM2303": 4.52, + "ANGM3315": 4.13, + "ATCM4397": 3.67, + "ATCM4319": 3.79 + } + } + ], + "tejas shroff": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2620976", + "quality_rating": 4, + "difficulty_rating": 2.4, + "would_take_again": 86, + "original_rmp_format": "Tejas Shroff", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 7, + "tags": [ + "Group projects", + "Participation matters", + "Accessible outside class", + "Tough grader", + "Amazing lectures " + ], + "rmp_id": "2620976", + "instructor_id": "tns190000", + "overall_grade_rating": 4.23, + "total_grade_count": 710, + "course_ratings": { + "MIS6333": 4.31, + "MIS6384": 4.16, + "MIS6330": 4.21, + "MIS6349": 4.32, + "ACCT6313": 3.99, + "MIS6313": 4.09 + } + } + ], + "jeff weekley": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2100316", + "quality_rating": 3.7, + "difficulty_rating": 3, + "would_take_again": 58, + "original_rmp_format": "Jeff Weekley", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 38, + "tags": [ + "Group projects", + "Participation matters", + "Lecture heavy", + "Amazing lectures ", + "Respected" + ], + "rmp_id": "2100316", + "instructor_id": "jaw160330", + "overall_grade_rating": 3.87, + "total_grade_count": 620, + "course_ratings": { + "OBHR3310": 3.66, + "OBHR4334": 3.86, + "OBHR3330": 3.9, + "OBHR4337": 4.21, + "OBHR4360": 4.12, + "OBHR4395": 4.47 + } + } + ], + "noah sasson": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/1471629", + "quality_rating": 4.7, + "difficulty_rating": 2.3, + "would_take_again": 93, + "original_rmp_format": "Noah Sasson", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 76, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Hilarious", + "Respected", + "Lecture heavy" + ], + "rmp_id": "1471629", + "instructor_id": "njs092000", + "overall_grade_rating": 4.08, + "total_grade_count": 1548, + "course_ratings": { + "PSY2301": 4.08 + } + } + ], + "clint peinhardt": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1165603", + "quality_rating": 4.2, + "difficulty_rating": 3.6, + "would_take_again": 80, + "original_rmp_format": "Clint Peinhardt", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 30, + "tags": [ + "Amazing lectures ", + "Get ready to read", + "Respected", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "1165603", + "instructor_id": "cwp052000", + "overall_grade_rating": 3.89, + "total_grade_count": 717, + "course_ratings": { + "PSCI4329": 3.74, + "PSCI6316": 4.57, + "PSCI6309": 4.51, + "HONS3199": 4.85, + "PSCI4356": 3.98, + "PSCI7372": 4.39, + "PSCI4360": 3.53, + "PPPE6368": 4.72 + } + } + ], + "william miller": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2981560", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "William Miller", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Gives good feedback", "Caring"], + "rmp_id": "2981560", + "instructor_id": "wxm230009", + "overall_grade_rating": 4.14, + "total_grade_count": 59, + "course_ratings": { + "MKT3330": 4.14 + } + } + ], + "rebecca cordell": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2542713", + "quality_rating": 4.8, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Rebecca Cordell", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 18, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Respected", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "2542713", + "instructor_id": "rxc190010", + "overall_grade_rating": 4.21, + "total_grade_count": 463, + "course_ratings": { + "PSCI4348": 4.2, + "PSCI6361": 4.64, + "PSCI4357": 4.18, + "EPPS6355": 4.58, + "PSCI6306": 4.5, + "PSCI4316": 3.91 + } + } + ], + "yuan zhang": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1912139", + "quality_rating": 3.9, + "difficulty_rating": 3.6, + "would_take_again": 83, + "original_rmp_format": "Yuan Zhang", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 41, + "tags": [ + "Amazing lectures ", + "Skip class? You won't pass.", + "Tough grader", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "1912139", + "instructor_id": "yxz122931", + "overall_grade_rating": 3.43, + "total_grade_count": 678, + "course_ratings": { + "ACCT6330": 4.04, + "ACCT3331": 3.28 + } + } + ], + "evgenia gorina": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2057083", + "quality_rating": 2.7, + "difficulty_rating": 4, + "would_take_again": 42, + "original_rmp_format": "Evgenia Gorina", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 13, + "tags": [ + "Get ready to read", + "Participation matters", + "Lots of homework", + "Tough grader", + "Caring" + ], + "rmp_id": "2057083", + "instructor_id": "exg131830", + "overall_grade_rating": 4.26, + "total_grade_count": 218, + "course_ratings": { + "EPPS6313": 4.09, + "PA7306": 4.25, + "PA6374": 4.12, + "PA3378": 4.2, + "PA7360": 4.76, + "PA6350": 4.32 + } + } + ], + "srinivasan raghunathan": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1092787", + "quality_rating": 3.8, + "difficulty_rating": 3.2, + "would_take_again": 57, + "original_rmp_format": "Srinivasan Raghunathan", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 28, + "tags": [ + "Group projects", + "Tough grader", + "Participation matters", + "Lecture heavy", + "Lots of homework" + ], + "rmp_id": "1092787", + "instructor_id": "sraghu", + "overall_grade_rating": 4.44, + "total_grade_count": 1301, + "course_ratings": { + "MIS6308": 4.44 + } + } + ], + "kelley henderson": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2874296", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Kelley Henderson", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 1, + "tags": ["Hilarious", "Caring", "Accessible outside class"], + "rmp_id": "2874296", + "instructor_id": "kah111020", + "overall_grade_rating": 4.07, + "total_grade_count": 182, + "course_ratings": { + "ATCM1100": 3.97, + "AHTC1100": 4.24 + } + } + ], + "jessie budd": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2979466", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Jessie Budd", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 1, + "tags": ["Gives good feedback", "Caring", "Accessible outside class"], + "rmp_id": "2979466", + "instructor_id": "jcp101020", + "overall_grade_rating": 3.92, + "total_grade_count": 60, + "course_ratings": { + "ATCM2301": 3.92 + } + } + ], + "xinchen ni": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2975501", + "quality_rating": 3.5, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Xinchen Ni", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 2, + "tags": ["Caring", "Graded by few things"], + "rmp_id": "2975501", + "instructor_id": "xxn230001", + "overall_grade_rating": 3.09, + "total_grade_count": 85, + "course_ratings": { + "MECH2330": 3.09 + } + } + ], + "yi li": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2057679", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "yi li", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 1, + "tags": ["EXTRA CREDIT", "Gives good feedback"], + "rmp_id": "2057679", + "instructor_id": "yxl121030", + "overall_grade_rating": 4.54, + "total_grade_count": 90, + "course_ratings": { + "BMEN1300": 4.58, + "BMEN3331": 4.51 + } + } + ], + "monica rankin": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/830516", + "quality_rating": 4.3, + "difficulty_rating": 3.4, + "would_take_again": 89, + "original_rmp_format": "Monica Rankin", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 21, + "tags": [ + "Get ready to read", + "Accessible outside class", + "Amazing lectures ", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "830516", + "instructor_id": "mar046000", + "overall_grade_rating": 4.2, + "total_grade_count": 420, + "course_ratings": { + "HIST3398": 4.14, + "HONS3199": 4.81, + "HIST3399": 4.68, + "HIST6365": 4.62, + "HIST4359": 3.99, + "HIST4390": 4.27, + "HUHI6315": 4.69, + "HIST2350": 3.53, + "HIST3391": 4.2 + } + } + ], + "shalini prasad": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1793339", + "quality_rating": 3.3, + "difficulty_rating": 4.3, + "would_take_again": 100, + "original_rmp_format": "Shalini Prasad", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 3, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Skip class? You won't pass.", + "Tests are tough" + ], + "rmp_id": "1793339", + "instructor_id": "sxp118230", + "overall_grade_rating": 4.77, + "total_grade_count": 224, + "course_ratings": { + "BMEN6351": 4.78, + "BMEN6355": 4.78, + "BMEN7188": 4.85, + "BMEN8188": 4.54 + } + } + ], + "genya ishigaki": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2403791", + "quality_rating": 3.3, + "difficulty_rating": 3.2, + "would_take_again": 67, + "original_rmp_format": "Genya Ishigaki", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 9, + "tags": [ + "Graded by few things", + "Accessible outside class", + "Get ready to read", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "2403791", + "instructor_id": "gxi160230", + "overall_grade_rating": 2.94, + "total_grade_count": 20, + "course_ratings": { + "CS3305": 2.94 + } + } + ], + "emily hennessy": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1895099", + "quality_rating": 5, + "difficulty_rating": 1.1, + "would_take_again": 100, + "original_rmp_format": "Emily Hennessy", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 14, + "tags": [ + "Caring", + "Respected", + "Gives good feedback", + "Inspirational", + "Participation matters" + ], + "rmp_id": "1895099", + "instructor_id": "eft031000", + "overall_grade_rating": 4.67, + "total_grade_count": 209, + "course_ratings": { + "NATS1101": 4.8, + "ED4343": 4.91, + "NATS1142": 4.56, + "SMED5302": 4.95, + "NATS1141": 4.29 + } + } + ], + "jessica murphy": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/1395790", + "quality_rating": 4.8, + "difficulty_rating": 2.6, + "would_take_again": 100, + "original_rmp_format": "Jessica Murphy", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 25, + "tags": [ + "Participation matters", + "Caring", + "Amazing lectures ", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "1395790", + "instructor_id": "jxm092000", + "overall_grade_rating": 4.66, + "total_grade_count": 68, + "course_ratings": { + "HONS3199": 4.72, + "LIT4390": 4.36 + } + } + ], + "jiayi wang": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/2859972", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Jiayi Wang", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 2, + "tags": [ + "Get ready to read", + "EXTRA CREDIT", + "Clear grading criteria", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2859972", + "instructor_id": "jxw220029", + "overall_grade_rating": 3.74, + "total_grade_count": 232, + "course_ratings": { + "STAT4360": 3.74 + } + } + ], + "arya prakash": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/2910606", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Arya Prakash", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 1, + "tags": ["Participation matters", "EXTRA CREDIT", "Group projects"], + "rmp_id": "2910606", + "instructor_id": "axp200037", + "overall_grade_rating": 3.97, + "total_grade_count": 206, + "course_ratings": { + "FILM2332": 3.88, + "FILM1303": 4.15 + } + } + ], + "andras farago": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1184129", + "quality_rating": 3.4, + "difficulty_rating": 2.4, + "would_take_again": 69, + "original_rmp_format": "Andras Farago", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 23, + "tags": [ + "Clear grading criteria", + "Graded by few things", + "Get ready to read", + "Lecture heavy", + "Tests? Not many" + ], + "rmp_id": "1184129", + "instructor_id": "farago", + "overall_grade_rating": 4.74, + "total_grade_count": 1022, + "course_ratings": { + "CS6385": 4.82, + "TE6385": 4.68, + "CS4390": 4.64, + "CE4390": 4.44 + } + } + ], + "elizabeth escalante": [ + { + "department": "Philosophy", + "url": "https://www.ratemyprofessors.com/professor/2636865", + "quality_rating": 3.1, + "difficulty_rating": 3.5, + "would_take_again": 38, + "original_rmp_format": "Elizabeth Escalante", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 8, + "tags": [ + "Lots of homework", + "Caring", + "Accessible outside class", + "Participation matters", + "EXTRA CREDIT" + ], + "rmp_id": "2636865", + "instructor_id": "exe121230", + "overall_grade_rating": 3.02, + "total_grade_count": 241, + "course_ratings": { + "PHIL2303": 3.02 + } + } + ], + "hwayoung kim": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2940740", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Hwayoung Kim", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 1, + "tags": ["Gives good feedback", "Hilarious", "Lecture heavy"], + "rmp_id": "2940740", + "instructor_id": "hxk200056", + "overall_grade_rating": 4.45, + "total_grade_count": 105, + "course_ratings": { + "OBHR3310": 4.45 + } + } + ], + "stephanie oliver": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/2476790", + "quality_rating": 4.1, + "difficulty_rating": 3, + "would_take_again": 67, + "original_rmp_format": "Stephanie Oliver", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 9, + "tags": [ + "Get ready to read", + "Gives good feedback", + "Lots of homework", + "Caring", + "Accessible outside class" + ], + "rmp_id": "2476790", + "instructor_id": "sxo180009", + "overall_grade_rating": 3.96, + "total_grade_count": 263, + "course_ratings": { + "RHET1302": 3.0, + "FILM2332": 4.19, + "LIT1301": 4.27 + } + } + ], + "yunhui guo": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2843966", + "quality_rating": 3.5, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Yunhui Guo", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 4, + "tags": [ + "Accessible outside class", + "Clear grading criteria", + "Caring", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "2843966", + "instructor_id": "yxg220013", + "overall_grade_rating": 4.15, + "total_grade_count": 342, + "course_ratings": { + "CS4365": 4.14, + "CS4349": 4.22 + } + } + ], + "mofid nakhaei": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2212363", + "quality_rating": 3.4, + "difficulty_rating": 2.4, + "would_take_again": 65, + "original_rmp_format": "Mofid Nakhaei", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 20, + "tags": [ + "Clear grading criteria", + "Test heavy", + "Tough grader", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2212363", + "instructor_id": "mxn162630", + "overall_grade_rating": 4.13, + "total_grade_count": 258, + "course_ratings": { + "OPRE3333": 4.13 + } + } + ], + "rostislav ginevich": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2292869", + "quality_rating": 4.2, + "difficulty_rating": 2.5, + "would_take_again": 82, + "original_rmp_format": "Rostislav Ginevich", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 11, + "tags": [ + "Amazing lectures ", + "Gives good feedback", + "Get ready to read", + "Caring", + "Online Savvy" + ], + "rmp_id": "2292869", + "instructor_id": "rxg172930", + "overall_grade_rating": 4.42, + "total_grade_count": 882, + "course_ratings": { + "MIS6373": 4.75, + "ITSS4360": 4.07 + } + } + ], + "shashank sirsi": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2315595", + "quality_rating": 4.9, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Shashank Sirsi", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 7, + "tags": [ + "Participation matters", + "Get ready to read", + "Respected", + "EXTRA CREDIT", + "Amazing lectures " + ], + "rmp_id": "2315595", + "instructor_id": "srs151630", + "overall_grade_rating": 4.17, + "total_grade_count": 281, + "course_ratings": { + "BMEN3330": 4.01, + "BMEN3332": 4.14, + "BMEN6366": 4.84 + } + } + ], + "jessica lockhart": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2215532", + "quality_rating": 2.7, + "difficulty_rating": 4.1, + "would_take_again": 33, + "original_rmp_format": "Jessica Lockhart", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 15, + "tags": [ + "Tough grader", + "Lots of homework", + "EXTRA CREDIT", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "2215532", + "instructor_id": "jml161330", + "overall_grade_rating": 3.5, + "total_grade_count": 241, + "course_ratings": { + "PSY3392": 3.49, + "PSY3393": 3.53 + } + } + ], + "inki min": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2566213", + "quality_rating": 4.5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Inki Min", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 2, + "tags": ["Participation matters", "Skip class? You won't pass.", "Clear grading criteria"], + "rmp_id": "2566213", + "instructor_id": "iam140230", + "overall_grade_rating": 4.69, + "total_grade_count": 177, + "course_ratings": { + "ARTS1316": 4.68, + "ARTS3366": 4.73, + "ARTS3367": 4.7 + } + } + ], + "roxanne minnish": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2124176", + "quality_rating": 3.9, + "difficulty_rating": 2.4, + "would_take_again": 64, + "original_rmp_format": "Roxanne Minnish", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 23, + "tags": [ + "Gives good feedback", + "Caring", + "Lots of homework", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "2124176", + "instructor_id": "rwm061000", + "overall_grade_rating": 4.38, + "total_grade_count": 804, + "course_ratings": { + "ATCM3340": 4.47, + "ATCM2302": 4.3, + "ATCM4397": 4.57 + } + } + ], + "roozbeh behroozmand": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/2969071", + "quality_rating": 4, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Roozbeh Behroozmand", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 1, + "tags": ["Clear grading criteria", "Lecture heavy", "Graded by few things"], + "rmp_id": "2969071", + "instructor_id": "rxb230048", + "overall_grade_rating": 4.4, + "total_grade_count": 165, + "course_ratings": { + "COMD5344": 5.0, + "NSC3344": 2.73, + "SPAU3344": 4.48 + } + } + ], + "michael biewer": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/320091", + "quality_rating": 3.4, + "difficulty_rating": 4.5, + "would_take_again": 78, + "original_rmp_format": "Michael Biewer", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 51, + "tags": [ + "Tough grader", + "Amazing lectures ", + "Gives good feedback", + "Skip class? You won't pass.", + "Would take again" + ], + "rmp_id": "320091", + "instructor_id": "biewerm", + "overall_grade_rating": 4.51, + "total_grade_count": 541, + "course_ratings": { + "CHEM5331": 4.3, + "NATS1101": 4.59, + "CHEM2327": 4.29, + "CHEM2328": 4.53 + } + } + ], + "mark lee": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1902282", + "quality_rating": 3.7, + "difficulty_rating": 3.7, + "would_take_again": 64, + "original_rmp_format": "Mark Lee", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 18, + "tags": [ + "Amazing lectures ", + "Lecture heavy", + "Lots of homework", + "Tests are tough", + "Test heavy" + ], + "rmp_id": "1902282", + "instructor_id": "mxl101000", + "overall_grade_rating": 3.54, + "total_grade_count": 384, + "course_ratings": { + "PHYS1302": 3.5, + "PHYS6300": 4.23 + } + } + ], + "jerry perez": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2405431", + "quality_rating": 2.6, + "difficulty_rating": 2.8, + "would_take_again": 50, + "original_rmp_format": "Jerry Perez", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 8, + "tags": [ + "Clear grading criteria", + "Graded by few things", + "Accessible outside class", + "EXTRA CREDIT", + "Inspirational" + ], + "rmp_id": "2405431", + "instructor_id": "jxp180019", + "overall_grade_rating": 4.7, + "total_grade_count": 832, + "course_ratings": { + "BUAN6346": 4.67, + "BUAN6347": 4.99, + "MIS6346": 4.76, + "ITSS3312": 4.42 + } + } + ], + "michelle harris": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2682593", + "quality_rating": 2.9, + "difficulty_rating": 4.1, + "would_take_again": 38, + "original_rmp_format": "Michelle Harris", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 8, + "tags": [ + "Get ready to read", + "Lecture heavy", + "Clear grading criteria", + "EXTRA CREDIT", + "Test heavy" + ], + "rmp_id": "2682593", + "instructor_id": "mnh200001", + "overall_grade_rating": 3.45, + "total_grade_count": 456, + "course_ratings": { + "CRIM1301": 3.22, + "CRIM6381": 4.75, + "CRIM6320": 4.81, + "CRIM6308": 4.57 + } + } + ], + "jenny bhatt": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2936784", + "quality_rating": 3.8, + "difficulty_rating": 3.2, + "would_take_again": 80, + "original_rmp_format": "Jenny Bhatt", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 5, + "tags": [ + "Gives good feedback", + "Tough grader", + "Group projects", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2936784", + "instructor_id": "jxb230007", + "overall_grade_rating": 3.51, + "total_grade_count": 74, + "course_ratings": { + "RHET1302": 3.01, + "CRWT2301": 3.98 + } + } + ], + "diana cogan": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1680741", + "quality_rating": 3.3, + "difficulty_rating": 3.1, + "would_take_again": 68, + "original_rmp_format": "Diana Cogan", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 74, + "tags": [ + "Lots of homework", + "Tough grader", + "Accessible outside class", + "Gives good feedback", + "Caring" + ], + "rmp_id": "1680741", + "instructor_id": "dcc095020", + "overall_grade_rating": 3.24, + "total_grade_count": 1766, + "course_ratings": { + "EE3320": 3.23, + "CE3320": 3.13, + "CE1202": 2.98, + "EE1202": 3.41, + "CE2310": 3.24, + "EE2310": 3.61 + } + } + ], + "andrea fumagalli": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/131878", + "quality_rating": 4.4, + "difficulty_rating": 3.4, + "would_take_again": 62, + "original_rmp_format": "Andrea Fumagalli", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 20, + "tags": [ + "Amazing lectures ", + "Caring", + "Test heavy", + "Respected", + "Accessible outside class" + ], + "rmp_id": "131878", + "instructor_id": "andreaf", + "overall_grade_rating": 3.75, + "total_grade_count": 457, + "course_ratings": { + "CE3302": 2.92, + "EE3302": 3.61, + "EESC6340": 4.56, + "EE4367": 3.98 + } + } + ], + "scott cotton": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/260054", + "quality_rating": 4.7, + "difficulty_rating": 2.6, + "would_take_again": 88, + "original_rmp_format": "Scott Cotton", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 18, + "tags": [ + "Get ready to read", + "Participation matters", + "Gives good feedback", + "Tough grader", + "Amazing lectures " + ], + "rmp_id": "260054", + "instructor_id": "sxc024200", + "overall_grade_rating": 3.97, + "total_grade_count": 82, + "course_ratings": { + "AMS4305": 3.97 + } + } + ], + "dongsheng ma": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1571233", + "quality_rating": 4.2, + "difficulty_rating": 4, + "would_take_again": 75, + "original_rmp_format": "Dongsheng MA", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 9, + "tags": [ + "Amazing lectures ", + "Inspirational", + "Caring", + "Respected", + "Participation matters" + ], + "rmp_id": "1571233", + "instructor_id": "dxm101000", + "overall_grade_rating": 3.87, + "total_grade_count": 207, + "course_ratings": { + "EE4340": 3.85, + "EECT6379": 4.11 + } + } + ], + "matthew gardner": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2682546", + "quality_rating": 4.8, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Matthew Gardner", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 5, + "tags": [ + "Clear grading criteria", + "Amazing lectures ", + "Accessible outside class", + "Lots of homework", + "Skip class? You won't pass." + ], + "rmp_id": "2682546", + "instructor_id": "mcg200004", + "overall_grade_rating": 3.88, + "total_grade_count": 281, + "course_ratings": { + "EE4363": 3.74, + "EEPE6356": 4.62, + "EEPE6398": 4.27 + } + } + ], + "radha mookerjee": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/444128", + "quality_rating": 3.1, + "difficulty_rating": 3.4, + "would_take_again": 36, + "original_rmp_format": "Radha Mookerjee", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 41, + "tags": [ + "Tough grader", + "Accessible outside class", + "Skip class? You won't pass.", + "Get ready to read", + "Group projects" + ], + "rmp_id": "444128", + "instructor_id": "rvm019000", + "overall_grade_rating": 4.03, + "total_grade_count": 768, + "course_ratings": { + "MIS6323": 3.62, + "BUAN6324": 4.1, + "MIS6324": 4.16, + "ITSS3312": 3.85, + "MIS6382": 4.06 + } + } + ], + "kyle edgington": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1859205", + "quality_rating": 4.9, + "difficulty_rating": 1.4, + "would_take_again": 100, + "original_rmp_format": "Kyle Edgington", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 25, + "tags": ["Respected", "Amazing lectures ", "Caring", "EXTRA CREDIT", "Gives good feedback"], + "rmp_id": "1859205", + "instructor_id": "kde081000", + "overall_grade_rating": 4.83, + "total_grade_count": 449, + "course_ratings": { + "OBHR4300": 4.83 + } + } + ], + "wei yang": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2442854", + "quality_rating": 3.2, + "difficulty_rating": 3.1, + "would_take_again": 54, + "original_rmp_format": "Wei Yang", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 13, + "tags": [ + "Graded by few things", + "Gives good feedback", + "Caring", + "Respected", + "Accessible outside class" + ], + "rmp_id": "2442854", + "instructor_id": "wxy180002", + "overall_grade_rating": 4.41, + "total_grade_count": 374, + "course_ratings": { + "CS7301": 4.7, + "SE6387": 4.33, + "CS4375": 4.39, + "CS6375": 4.55, + "SE4367": 4.31, + "CS3354": 4.35 + } + } + ], + "christina nielsen": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2374005", + "quality_rating": 4.2, + "difficulty_rating": 3, + "would_take_again": 83, + "original_rmp_format": "Christina Nielsen", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 6, + "tags": ["Gives good feedback", "Group projects", "Caring", "Respected", "Tough grader"], + "rmp_id": "2374005", + "instructor_id": "crn022000", + "overall_grade_rating": 3.48, + "total_grade_count": 803, + "course_ratings": { + "ATCM1100": 4.16, + "ATCM3330": 4.45, + "ATCM4397": 3.9, + "ATCM2301": 3.71, + "ATCM3350": 3.66, + "ATCM2330": 2.89, + "ATCM4363": 3.84, + "ATCM4330": 4.02 + } + } + ], + "dianne goode": [ + { + "department": "Art History", + "url": "https://www.ratemyprofessors.com/professor/442356", + "quality_rating": 3.9, + "difficulty_rating": 3.5, + "would_take_again": 67, + "original_rmp_format": "Dianne Goode", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 69, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "Lecture heavy", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "442356", + "instructor_id": "dgoode", + "overall_grade_rating": 3.59, + "total_grade_count": 440, + "course_ratings": { + "AHST1304": 4.08, + "AHST1303": 3.18, + "AHST3316": 3.71, + "AHST3315": 3.09 + } + } + ], + "steven nielsen": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1439893", + "quality_rating": 4.7, + "difficulty_rating": 3.6, + "would_take_again": 100, + "original_rmp_format": "Steven Nielsen", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 32, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Accessible outside class", + "Gives good feedback", + "Caring" + ], + "rmp_id": "1439893", + "instructor_id": "son051000", + "overall_grade_rating": 3.5, + "total_grade_count": 561, + "course_ratings": { + "CHEM1111": 4.14, + "CHEM3321": 3.55, + "CHEM3322": 3.24, + "CHEM5314": 4.54 + } + } + ], + "michael rebello": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1525467", + "quality_rating": 2.6, + "difficulty_rating": 4.3, + "would_take_again": 38, + "original_rmp_format": "Michael Rebello", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 14, + "tags": [ + "Test heavy", + "Get ready to read", + "Lecture heavy", + "Tough grader", + "Skip class? You won't pass." + ], + "rmp_id": "1525467", + "instructor_id": "mjr071000", + "overall_grade_rating": 3.49, + "total_grade_count": 165, + "course_ratings": { + "FIN6370": 4.38, + "FIN6301": 3.55, + "FIN3320": 3.24, + "FIN4380": 4.48 + } + } + ], + "alejandro rivera mesias": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2104129", + "quality_rating": 3.3, + "difficulty_rating": 3.9, + "would_take_again": 71, + "original_rmp_format": "Alejandro Rivera Mesias", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 14, + "tags": [ + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Lecture heavy", + "Participation matters" + ], + "rmp_id": "2104129", + "instructor_id": "axr150331", + "overall_grade_rating": 3.91, + "total_grade_count": 432, + "course_ratings": { + "FIN6325": 4.22, + "FIN3350": 3.85 + } + } + ], + "mike peng": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1572654", + "quality_rating": 4.1, + "difficulty_rating": 3.9, + "would_take_again": 72, + "original_rmp_format": "Mike Peng", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 22, + "tags": [ + "Participation matters", + "Group projects", + "Skip class? You won't pass.", + "Inspirational", + "Amazing lectures " + ], + "rmp_id": "1572654", + "instructor_id": "mxp059000", + "overall_grade_rating": 4.3, + "total_grade_count": 464, + "course_ratings": { + "IMS6204": 4.33, + "IMS6304": 4.3, + "ENTP6304": 4.2 + } + } + ], + "alexey root": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1898306", + "quality_rating": 2.3, + "difficulty_rating": 3.6, + "would_take_again": 21, + "original_rmp_format": "Alexey Root", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 17, + "tags": [ + "Tough grader", + "Lots of homework", + "Gives good feedback", + "EXTRA CREDIT", + "Clear grading criteria" + ], + "rmp_id": "1898306", + "instructor_id": "aroot", + "overall_grade_rating": 3.62, + "total_grade_count": 237, + "course_ratings": { + "ED4358": 3.75, + "ED4359": 3.41 + } + } + ], + "dmitri kuksov": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2070627", + "quality_rating": 3, + "difficulty_rating": 3.1, + "would_take_again": 33, + "original_rmp_format": "Dmitri Kuksov", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 7, + "tags": ["Get ready to read", "Inspirational", "Respected", "Test heavy", "Tough grader"], + "rmp_id": "2070627", + "instructor_id": "dgk120030", + "overall_grade_rating": 4.01, + "total_grade_count": 174, + "course_ratings": { + "MKT6301": 4.42, + "MKT3300": 3.81, + "MKT6336": 4.55 + } + } + ], + "kevin johnson": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2575508", + "quality_rating": 5, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Kevin Johnson", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 5, + "tags": [ + "Gives good feedback", + "Caring", + "Clear grading criteria", + "Accessible outside class", + "Online Savvy" + ], + "rmp_id": "2575508", + "instructor_id": "kwj170030", + "overall_grade_rating": 4.11, + "total_grade_count": 194, + "course_ratings": { + "RHET1302": 4.05, + "LIT2331": 4.71 + } + } + ], + "chauncey cox": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2863018", + "quality_rating": 1.3, + "difficulty_rating": 4.7, + "would_take_again": 0, + "original_rmp_format": "Chauncey Cox", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 3, + "tags": ["Tough grader"], + "rmp_id": "2863018", + "instructor_id": "cxc200028", + "overall_grade_rating": 2.6, + "total_grade_count": 135, + "course_ratings": { + "BCOM4300": 2.6 + } + } + ], + "lynne vieraitis": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/1136923", + "quality_rating": 2.3, + "difficulty_rating": 4.1, + "would_take_again": 27, + "original_rmp_format": "Lynne Vieraitis", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 21, + "tags": [ + "Tough grader", + "So many papers", + "Get ready to read", + "Graded by few things", + "Clear grading criteria" + ], + "rmp_id": "1136923", + "instructor_id": "lmv071000", + "overall_grade_rating": 3.63, + "total_grade_count": 366, + "course_ratings": { + "CRIM4322": 3.44, + "CRIM4315": 4.51, + "CRIM6303": 4.21, + "CRIM3302": 2.92, + "CRIM6311": 4.31 + } + } + ], + "ganesh janakiraman": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1431272", + "quality_rating": 4.7, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Ganesh Janakiraman", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 30, + "tags": [ + "Amazing lectures ", + "Respected", + "Clear grading criteria", + "Gives good feedback", + "Participation matters" + ], + "rmp_id": "1431272", + "instructor_id": "gxj091000", + "overall_grade_rating": 4.3, + "total_grade_count": 491, + "course_ratings": { + "OPRE6302": 4.3, + "OPRE7311": 4.58 + } + } + ], + "parisa shahsavand": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2956870", + "quality_rating": 3.6, + "difficulty_rating": 3.1, + "would_take_again": 64, + "original_rmp_format": "Parisa Shahsavand", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 15, + "tags": [ + "Clear grading criteria", + "Lots of homework", + "Accessible outside class", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2956870", + "instructor_id": "pxs180098", + "overall_grade_rating": 4.1, + "total_grade_count": 127, + "course_ratings": { + "OPRE3310": 4.1 + } + } + ], + "richard brettell": [ + { + "department": "Art History", + "url": "https://www.ratemyprofessors.com/professor/2053414", + "quality_rating": 4.1, + "difficulty_rating": 1.9, + "would_take_again": 67, + "original_rmp_format": "Richard Brettell", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 12, + "tags": [ + "Respected", + "Get ready to read", + "Skip class? You won't pass.", + "Amazing lectures ", + "Lots of homework" + ], + "rmp_id": "2053414", + "instructor_id": "brettell", + "overall_grade_rating": 4.65, + "total_grade_count": 6, + "course_ratings": { + "HUAS6315": 4.65 + } + } + ], + "allison escobedo": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2948572", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Allison Escobedo", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 2, + "tags": ["Clear grading criteria", "Test heavy", "Graded by few things"], + "rmp_id": "2948572", + "instructor_id": "aeh220002", + "overall_grade_rating": 3.67, + "total_grade_count": 135, + "course_ratings": { + "CRIM2313": 3.53, + "CRIM1301": 3.75 + } + } + ], + "anton sobolev": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2966649", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 0, + "original_rmp_format": "Anton Sobolev", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 1, + "tags": ["Get ready to read", "Group projects", "Lecture heavy"], + "rmp_id": "2966649", + "instructor_id": "axs210104", + "overall_grade_rating": 4.64, + "total_grade_count": 160, + "course_ratings": { + "PPPE6302": 4.72, + "PSCI6302": 4.57, + "PPPE6304": 4.93, + "PSCI6328": 4.73 + } + } + ], + "julie haworth": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/202201", + "quality_rating": 4.2, + "difficulty_rating": 2, + "would_take_again": 62, + "original_rmp_format": "Julie Haworth", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 44, + "tags": [ + "Respected", + "Group projects", + "Accessible outside class", + "Gives good feedback", + "Caring" + ], + "rmp_id": "202201", + "instructor_id": "haworth", + "overall_grade_rating": 4.66, + "total_grade_count": 1254, + "course_ratings": { + "MKT3320": 4.24, + "MKT4380": 4.74, + "MKT4360": 4.77, + "MKT4337": 4.56, + "MKT3340": 4.21, + "OPRE4337": 4.79, + "MKT4090": 0.84 + } + } + ], + "eugene deluke": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1130171", + "quality_rating": 4.3, + "difficulty_rating": 2.5, + "would_take_again": 40, + "original_rmp_format": "Eugene Deluke", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 44, + "tags": [ + "EXTRA CREDIT", + "Would take again", + "Respected", + "Get ready to read", + "Tough grader" + ], + "rmp_id": "1130171", + "instructor_id": "gxd052000", + "overall_grade_rating": 3.62, + "total_grade_count": 866, + "course_ratings": { + "OPRE6369": 4.29, + "OPRE3310": 3.39, + "MIS6369": 4.2, + "OPRE4320": 3.32, + "ITSS4343": 3.27 + } + } + ], + "larry chasteen": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1623769", + "quality_rating": 2.5, + "difficulty_rating": 3.6, + "would_take_again": 11, + "original_rmp_format": "Larry Chasteen", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 27, + "tags": [ + "Tough grader", + "Group projects", + "Participation matters", + "Lots of homework", + "Get ready to read" + ], + "rmp_id": "1623769", + "instructor_id": "chasteen", + "overall_grade_rating": 4.03, + "total_grade_count": 634, + "course_ratings": { + "BPS6310": 4.52, + "BPS4305": 3.72 + } + } + ], + "nishanshi shukla": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2965471", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Nishanshi Shukla", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 1, + "tags": ["Get ready to read", "Amazing lectures ", "Graded by few things"], + "rmp_id": "2965471", + "instructor_id": "nas180012", + "overall_grade_rating": 4.46, + "total_grade_count": 113, + "course_ratings": { + "ATCM3301": 4.34, + "ATCM2321": 4.59, + "ATCM4320": 4.3 + } + } + ], + "robert stern": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/405073", + "quality_rating": 3.5, + "difficulty_rating": 3.1, + "would_take_again": 71, + "original_rmp_format": "Robert Stern", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 10, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Lecture heavy", + "Graded by few things", + "Get ready to read" + ], + "rmp_id": "405073", + "instructor_id": "rjstern", + "overall_grade_rating": 4.21, + "total_grade_count": 297, + "course_ratings": { + "GEOS3464": 4.02, + "NATS1101": 4.97, + "GEOS2321": 3.79, + "GEOS2340": 4.72, + "GEOS5375": 4.29, + "GEOS5308": 4.46, + "GEOS3111": 5.0 + } + } + ], + "ernan haruvy": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/97958", + "quality_rating": 3.4, + "difficulty_rating": 3.1, + "would_take_again": 71, + "original_rmp_format": "Ernan Haruvy", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 17, + "tags": [ + "Group projects", + "Gives good feedback", + "Hilarious", + "Tough grader", + "Participation matters" + ], + "rmp_id": "97958", + "instructor_id": "eeh017200", + "overall_grade_rating": 4.23, + "total_grade_count": 92, + "course_ratings": { + "MKT6337": 3.88, + "BUAN6337": 4.27 + } + } + ], + "carlos arreche": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2300811", + "quality_rating": 4.4, + "difficulty_rating": 3.4, + "would_take_again": 75, + "original_rmp_format": "Carlos Arreche", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 8, + "tags": [ + "Accessible outside class", + "Amazing lectures ", + "Hilarious", + "Caring", + "Tough grader" + ], + "rmp_id": "2300811", + "instructor_id": "cxa171230", + "overall_grade_rating": 3.2, + "total_grade_count": 248, + "course_ratings": { + "MATH2417": 2.77, + "MATH6312": 3.95, + "MATH3312": 4.02 + } + } + ], + "catherine parsoneault": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2284390", + "quality_rating": 3.5, + "difficulty_rating": 3, + "would_take_again": 67, + "original_rmp_format": "Catherine Parsoneault", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 6, + "tags": [ + "Inspirational", + "Caring", + "Lecture heavy", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "2284390", + "instructor_id": "cxp160030", + "overall_grade_rating": 4.65, + "total_grade_count": 186, + "course_ratings": { + "MUSI2317": 3.99, + "VPAS4389": 4.77, + "MUSI3229": 4.89 + } + } + ], + "gavin cox": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2870331", + "quality_rating": 3, + "difficulty_rating": 2.8, + "would_take_again": 60, + "original_rmp_format": "Gavin Cox", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 5, + "tags": [ + "Participation matters", + "Tough grader", + "Get ready to read", + "Graded by few things", + "Gives good feedback" + ], + "rmp_id": "2870331", + "instructor_id": "glc016100", + "overall_grade_rating": 3.28, + "total_grade_count": 224, + "course_ratings": { + "RHET1302": 3.35, + "LIT2331": 3.11 + } + } + ], + "fred curchack": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/416388", + "quality_rating": 3.4, + "difficulty_rating": 2.3, + "would_take_again": 58, + "original_rmp_format": "Fred Curchack", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 22, + "tags": [ + "Participation matters", + "Gives good feedback", + "So many papers", + "Get ready to read", + "Skip class? You won't pass." + ], + "rmp_id": "416388", + "instructor_id": "curchack", + "overall_grade_rating": 4.15, + "total_grade_count": 92, + "course_ratings": { + "THEA4301": 4.2, + "VPAS3300": 3.73, + "VPAS6303": 4.39, + "THEA3342": 3.96, + "HUAS6345": 4.85, + "THEA3361": 3.64 + } + } + ], + "rachael mcbride": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/2164392", + "quality_rating": 2.7, + "difficulty_rating": 3.2, + "would_take_again": 50, + "original_rmp_format": "Rachael McBride", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 6, + "tags": [ + "Lots of homework", + "Get ready to read", + "Clear grading criteria", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2164392", + "instructor_id": "rlp019100", + "overall_grade_rating": 4.2, + "total_grade_count": 600, + "course_ratings": { + "HLTH1322": 4.2 + } + } + ], + "ji li": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2955945", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Ji Li", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 2, + "tags": ["EXTRA CREDIT", "Clear grading criteria", "Caring"], + "rmp_id": "2955945", + "instructor_id": "jxl190007", + "overall_grade_rating": 3.94, + "total_grade_count": 164, + "course_ratings": { + "ECON2301": 3.94 + } + } + ], + "john petty": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/2026642", + "quality_rating": 2.4, + "difficulty_rating": 3.7, + "would_take_again": 28, + "original_rmp_format": "John Petty", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 61, + "tags": [ + "Lecture heavy", + "Get ready to read", + "Group projects", + "Test heavy", + "Tough grader" + ], + "rmp_id": "2026642", + "instructor_id": "jep140330", + "overall_grade_rating": 3.04, + "total_grade_count": 898, + "course_ratings": { + "FILM2332": 3.02, + "FILM3342": 3.37 + } + } + ], + "rene prieto": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/1778450", + "quality_rating": 3.3, + "difficulty_rating": 4, + "would_take_again": 55, + "original_rmp_format": "Rene Prieto", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 14, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "1778450", + "instructor_id": "rxp113230", + "overall_grade_rating": 3.8, + "total_grade_count": 93, + "course_ratings": { + "LIT3317": 3.49, + "LIT3319": 4.41, + "LIT4329": 3.92, + "LIT6373": 4.38 + } + } + ], + "erin greer": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/2442937", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Erin Greer", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 3, + "tags": [ + "Get ready to read", + "Gives good feedback", + "Participation matters", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "2442937", + "instructor_id": "exg180013", + "overall_grade_rating": 4.47, + "total_grade_count": 130, + "course_ratings": { + "LIT3319": 4.44, + "LIT7360": 4.83, + "LIT6300": 4.23, + "LIT3338": 4.14, + "LIT6370": 4.83, + "LIT6310": 4.93, + "LIT4329": 4.2 + } + } + ], + "brian fridge": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2562915", + "quality_rating": 4.5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Brian Fridge", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 2, + "tags": ["Gives good feedback", "Caring", "Participation matters"], + "rmp_id": "2562915", + "instructor_id": "bdf081000", + "overall_grade_rating": 4.72, + "total_grade_count": 230, + "course_ratings": { + "ARTS1316": 4.65, + "ARTS3367": 4.81, + "ARTS3311": 4.93 + } + } + ], + "isi gonzalez": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2907891", + "quality_rating": 3.7, + "difficulty_rating": 3, + "would_take_again": 67, + "original_rmp_format": "Isi Gonzalez", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Tough grader", + "Clear grading criteria", + "Lots of homework", + "So many papers" + ], + "rmp_id": "2907891", + "instructor_id": "ijg190000", + "overall_grade_rating": 3.45, + "total_grade_count": 280, + "course_ratings": { + "ATCM2302": 3.48, + "ATCM3340": 3.16 + } + } + ], + "hongchang wang": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2904120", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Hongchang Wang", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 2, + "tags": ["Tough grader", "Clear grading criteria"], + "rmp_id": "2904120", + "instructor_id": "hxw140930", + "overall_grade_rating": 4.31, + "total_grade_count": 434, + "course_ratings": { + "MIS6382": 4.31 + } + } + ], + "nassim sohaee": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2045295", + "quality_rating": 3.1, + "difficulty_rating": 3.5, + "would_take_again": 47, + "original_rmp_format": "Nassim Sohaee", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 58, + "tags": [ + "Tough grader", + "Lots of homework", + "Gives good feedback", + "Caring", + "Clear grading criteria" + ], + "rmp_id": "2045295", + "instructor_id": "nxs045000", + "overall_grade_rating": 4.36, + "total_grade_count": 886, + "course_ratings": { + "MIS6323": 4.48, + "ITSS3311": 3.98, + "BUAN6341": 4.54, + "MIS6341": 4.65, + "ITSS3312": 3.48 + } + } + ], + "catherine thorn": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2513887", + "quality_rating": 4, + "difficulty_rating": 3.3, + "would_take_again": 89, + "original_rmp_format": "Catherine Thorn", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 9, + "tags": [ + "Gives good feedback", + "Accessible outside class", + "Lecture heavy", + "Test heavy", + "Tough grader" + ], + "rmp_id": "2513887", + "instructor_id": "cat170002", + "overall_grade_rating": 4.36, + "total_grade_count": 353, + "course_ratings": { + "NSC4356": 4.11, + "NSC4381": 4.68 + } + } + ], + "nan guo": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2918763", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Nan Guo", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 1, + "tags": ["Group projects"], + "rmp_id": "2918763", + "instructor_id": "nxg170006", + "overall_grade_rating": 4.46, + "total_grade_count": 218, + "course_ratings": { + "IMS3310": 4.59, + "OBHR3310": 4.41 + } + } + ], + "jiyoung park": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/2277538", + "quality_rating": 3.7, + "difficulty_rating": 3.2, + "would_take_again": 64, + "original_rmp_format": "Jiyoung Park", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 11, + "tags": [ + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "2277538", + "instructor_id": "jxp176330", + "overall_grade_rating": 3.68, + "total_grade_count": 229, + "course_ratings": { + "PSY4323": 3.37, + "PSY3393": 3.77, + "HCS7355": 4.85 + } + } + ], + "robert glosser": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1623107", + "quality_rating": 1.7, + "difficulty_rating": 3.9, + "would_take_again": 15, + "original_rmp_format": "Robert Glosser", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 72, + "tags": [ + "Lots of homework", + "Test heavy", + "Get ready to read", + "Beware of pop quizzes", + "Graded by few things" + ], + "rmp_id": "1623107", + "instructor_id": "glosser", + "overall_grade_rating": 3.31, + "total_grade_count": 1233, + "course_ratings": { + "PHYS2326": 3.3, + "PHYS4311": 3.78 + } + } + ], + "timothy lewis": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2200098", + "quality_rating": 4.9, + "difficulty_rating": 3.1, + "would_take_again": 100, + "original_rmp_format": "Timothy Lewis", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 14, + "tags": [ + "Gives good feedback", + "Caring", + "Accessible outside class", + "Clear grading criteria", + "Amazing lectures " + ], + "rmp_id": "2200098", + "instructor_id": "tml062000", + "overall_grade_rating": 4.09, + "total_grade_count": 1064, + "course_ratings": { + "ATCM4397": 3.92, + "ATCM3370": 3.87, + "ATCM4379": 4.04, + "ATCM3367": 3.62, + "ATCM4376": 4.96, + "ANGM3367": 3.76, + "ANGM3368": 4.14, + "ANGM3370": 4.17, + "ANGM4376": 4.99, + "ANGM4370": 4.53, + "ATCM4365": 2.79, + "ATCM4370": 4.41, + "ATCM4377": 5.0, + "ANGM2310": 3.89, + "ANGM4377": 4.98, + "ATCM6344": 4.72, + "ATCM3306": 3.52, + "ANGM3306": 3.97 + } + } + ], + "jeremiah gassensmith": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2506569", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Jeremiah Gassensmith", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 4, + "tags": ["Caring", "Gives good feedback", "Hilarious", "EXTRA CREDIT", "Amazing lectures "], + "rmp_id": "2506569", + "instructor_id": "jjg130230", + "overall_grade_rating": 3.96, + "total_grade_count": 168, + "course_ratings": { + "CHEM2323": 3.91, + "CHEM3471": 3.63, + "HONS3199": 5.0 + } + } + ], + "robert franson": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2947523", + "quality_rating": 1, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Robert Franson", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 1, + "tags": [], + "rmp_id": "2947523", + "instructor_id": "rcf160130", + "overall_grade_rating": 3.8, + "total_grade_count": 345, + "course_ratings": { + "ITSS3311": 3.72, + "ITSS3312": 4.18, + "ITSS3300": 3.83 + } + } + ], + "anavir shermon": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2955542", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Anavir Shermon", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 1, + "tags": ["Participation matters", "Amazing lectures ", "Hilarious"], + "rmp_id": "2955542", + "instructor_id": "axs230255", + "overall_grade_rating": 4.21, + "total_grade_count": 130, + "course_ratings": { + "ENTP6375": 4.24, + "MIS6375": 4.12 + } + } + ], + "charles shields": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1639436", + "quality_rating": 4.4, + "difficulty_rating": 3, + "would_take_again": 84, + "original_rmp_format": "Charles Shields", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 97, + "tags": [ + "Caring", + "Respected", + "Clear grading criteria", + "Lots of homework", + "Gives good feedback" + ], + "rmp_id": "1639436", + "instructor_id": "cshields", + "overall_grade_rating": 3.11, + "total_grade_count": 864, + "course_ratings": { + "CS1336": 3.33, + "CS1325": 2.61, + "CS1337": 2.66, + "CS4384": 2.94 + } + } + ], + "eric farrar": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1349526", + "quality_rating": 5, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Eric Farrar", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 6, + "tags": [ + "Gives good feedback", + "Caring", + "Participation matters", + "Skip class? You won't pass.", + "Amazing lectures " + ], + "rmp_id": "1349526", + "instructor_id": "etf091000", + "overall_grade_rating": 4.26, + "total_grade_count": 332, + "course_ratings": { + "ATCM4308": 4.0, + "ATCM4338": 4.16, + "ANGM4338": 4.21, + "ATCM6318": 4.79, + "ATCM4339": 4.88, + "ANGM4308": 3.84, + "ATCM4364": 5.0 + } + } + ], + "young ryu": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1606502", + "quality_rating": 3.3, + "difficulty_rating": 3.1, + "would_take_again": 55, + "original_rmp_format": "Young Ryu", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 25, + "tags": [ + "Accessible outside class", + "Clear grading criteria", + "Get ready to read", + "Gives good feedback", + "Hilarious" + ], + "rmp_id": "1606502", + "instructor_id": "ryoung", + "overall_grade_rating": 4.35, + "total_grade_count": 862, + "course_ratings": { + "MIS6326": 4.34, + "BUAN6320": 4.46 + } + } + ], + "subhra patra": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2846783", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Subhra Patra", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 2, + "tags": [ + "Get ready to read", + "Participation matters", + "Group projects", + "Hilarious", + "Beware of pop quizzes" + ], + "rmp_id": "2846783", + "instructor_id": "srp220003", + "overall_grade_rating": 4.75, + "total_grade_count": 101, + "course_ratings": { + "BUAN6356": 4.75 + } + } + ], + "manolo alvarez": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2825924", + "quality_rating": 2.8, + "difficulty_rating": 3.8, + "would_take_again": 40, + "original_rmp_format": "Manolo Alvarez", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 5, + "tags": [ + "Tough grader", + "Group projects", + "Gives good feedback", + "Accessible outside class", + "Participation matters" + ], + "rmp_id": "2825924", + "instructor_id": "mxa134530", + "overall_grade_rating": 3.41, + "total_grade_count": 206, + "course_ratings": { + "BCOM1300": 3.54, + "BCOM4300": 3.33 + } + } + ], + "kamran kiasaleh": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/656769", + "quality_rating": 1.4, + "difficulty_rating": 4.3, + "would_take_again": 3, + "original_rmp_format": "Kamran Kiasaleh", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 53, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Lots of homework", + "Participation matters", + "So many papers" + ], + "rmp_id": "656769", + "instructor_id": "kamran", + "overall_grade_rating": 3.55, + "total_grade_count": 651, + "course_ratings": { + "EE3150": 3.48, + "EE3202": 3.68, + "CE3202": 3.64, + "EESC6349": 3.99, + "CE3301": 2.63, + "EE3301": 2.85, + "CE3201": 3.37, + "EE3201": 3.37 + } + } + ], + "candice mills": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/765081", + "quality_rating": 4.4, + "difficulty_rating": 3, + "would_take_again": 77, + "original_rmp_format": "Candice Mills", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 19, + "tags": [ + "Amazing lectures ", + "Tough grader", + "Skip class? You won't pass.", + "Caring", + "Clear grading criteria" + ], + "rmp_id": "765081", + "instructor_id": "cxm056000", + "overall_grade_rating": 3.87, + "total_grade_count": 411, + "course_ratings": { + "PSY3393": 4.36, + "CLDP3362": 3.94, + "PSY3362": 3.61, + "PSYC6331": 4.74 + } + } + ], + "ida klang": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2589361", + "quality_rating": 3.9, + "difficulty_rating": 2.4, + "would_take_again": 71, + "original_rmp_format": "Ida Klang", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 7, + "tags": [ + "Skip class? You won't pass.", + "Gives good feedback", + "Caring", + "Clear grading criteria", + "Accessible outside class" + ], + "rmp_id": "2589361", + "instructor_id": "ixk190014", + "overall_grade_rating": 4.11, + "total_grade_count": 259, + "course_ratings": { + "BIOL2281": 4.0, + "BIOL4380": 4.41 + } + } + ], + "joseph mauriello": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2042770", + "quality_rating": 4.5, + "difficulty_rating": 3.4, + "would_take_again": 83, + "original_rmp_format": "Joseph Mauriello", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 23, + "tags": [ + "Get ready to read", + "Group projects", + "Hilarious", + "Participation matters", + "Respected" + ], + "rmp_id": "2042770", + "instructor_id": "jam151430", + "overall_grade_rating": 4.43, + "total_grade_count": 1430, + "course_ratings": { + "ACCT6344": 4.53, + "ACCT6380": 4.21, + "ACCT6382": 4.83, + "ACCT6336": 4.41, + "MIS6337": 4.29, + "ACCT6386": 4.49, + "ACCT6373": 4.49, + "ACCT6374": 4.57, + "ACCT6392": 4.51 + } + } + ], + "feng chen": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2654872", + "quality_rating": 2.5, + "difficulty_rating": 4.3, + "would_take_again": 50, + "original_rmp_format": "Feng Chen", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 6, + "tags": ["Lots of homework", "EXTRA CREDIT", "Group projects", "Caring", "Lecture heavy"], + "rmp_id": "2654872", + "instructor_id": "fxc190007", + "overall_grade_rating": 4.09, + "total_grade_count": 307, + "course_ratings": { + "CS6364": 4.4, + "CS7301": 4.84, + "CS4375": 3.33 + } + } + ], + "issa panahi": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/206927", + "quality_rating": 2.5, + "difficulty_rating": 3.9, + "would_take_again": 33, + "original_rmp_format": "Issa Panahi", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 43, + "tags": [ + "Tough grader", + "Graded by few things", + "Test heavy", + "Get ready to read", + "Lecture heavy" + ], + "rmp_id": "206927", + "instructor_id": "imp015000", + "overall_grade_rating": 3.19, + "total_grade_count": 298, + "course_ratings": { + "EESC6360": 3.52, + "EE4361": 3.14, + "EESC6361": 3.9, + "EE3302": 2.73 + } + } + ], + "andrew krajewski": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2737911", + "quality_rating": 5, + "difficulty_rating": 2.4, + "would_take_again": 100, + "original_rmp_format": "Andrew Krajewski", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 9, + "tags": [ + "Amazing lectures ", + "Hilarious", + "Accessible outside class", + "Caring", + "Participation matters" + ], + "rmp_id": "2737911", + "instructor_id": "axk210064", + "overall_grade_rating": 4.05, + "total_grade_count": 292, + "course_ratings": { + "CRIM1307": 3.88, + "CRIM7307": 4.84, + "CRIM4322": 4.38, + "EPPS6316": 4.05, + "HONS3199": 4.75 + } + } + ], + "michael mcvay": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2134197", + "quality_rating": 4.2, + "difficulty_rating": 2.6, + "would_take_again": 75, + "original_rmp_format": "Michael McVay", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 5, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Gives good feedback", + "Hilarious", + "Respected" + ], + "rmp_id": "2134197", + "instructor_id": "mjm031000", + "overall_grade_rating": 3.9, + "total_grade_count": 74, + "course_ratings": { + "MUSI2328": 3.53, + "MUSI3342": 4.58, + "MUSI3328": 4.58 + } + } + ], + "sean mccomber": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1912763", + "quality_rating": 4.3, + "difficulty_rating": 3.5, + "would_take_again": 100, + "original_rmp_format": "Sean McComber", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 13, + "tags": [ + "Tough grader", + "Gives good feedback", + "Respected", + "Would take again", + "Amazing lectures " + ], + "rmp_id": "1912763", + "instructor_id": "sxm129130", + "overall_grade_rating": 3.8, + "total_grade_count": 363, + "course_ratings": { + "ATCM6312": 4.11, + "ATCM4319": 4.32, + "ATCM3305": 3.33, + "ATCM4309": 4.47, + "ATCM6305": 4.62, + "ANGM4305": 3.53, + "ANGM4309": 3.9, + "ANGM3313": 4.28, + "ANGM4350": 4.46, + "ATCM3309": 4.13, + "ATCM4315": 3.4, + "ANGM3305": 3.46 + } + } + ], + "thomas brunell": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/832515", + "quality_rating": 3.4, + "difficulty_rating": 3.1, + "would_take_again": 36, + "original_rmp_format": "Thomas Brunell", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 30, + "tags": [ + "Get ready to read", + "Tough grader", + "Amazing lectures ", + "Graded by few things", + "Participation matters" + ], + "rmp_id": "832515", + "instructor_id": "tlb056000", + "overall_grade_rating": 3.53, + "total_grade_count": 278, + "course_ratings": { + "HONS3199": 4.47, + "PSCI4344": 3.39, + "EPPS2302": 4.04, + "GOVT2305": 3.33, + "PSCI3362": 3.11 + } + } + ], + "mary medrick": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/916677", + "quality_rating": 3.5, + "difficulty_rating": 1.9, + "would_take_again": 50, + "original_rmp_format": "Mary Medrick", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 21, + "tags": ["Gives good feedback", "Hilarious", "Participation matters", "Caring", "Respected"], + "rmp_id": "916677", + "instructor_id": "mam017200", + "overall_grade_rating": 4.25, + "total_grade_count": 224, + "course_ratings": { + "MUSI2317": 4.28, + "MUSI3388": 4.22, + "MUSI4348": 3.97, + "MUSI3322": 4.45 + } + } + ], + "michael wilson": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/873691", + "quality_rating": 4.5, + "difficulty_rating": 3.1, + "would_take_again": 77, + "original_rmp_format": "Michael Wilson", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 20, + "tags": [ + "Get ready to read", + "Hilarious", + "Participation matters", + "Gives good feedback", + "Tough grader" + ], + "rmp_id": "873691", + "instructor_id": "mwilson", + "overall_grade_rating": 4.28, + "total_grade_count": 595, + "course_ratings": { + "HUMA1301": 4.8, + "HIST3320": 3.79, + "HIST3324": 3.98, + "HIST2360": 4.14, + "HIST4379": 3.9, + "HIST4344": 4.49, + "HONS3118": 4.55, + "HIST3319": 4.67, + "HUMA6300": 4.13, + "HIST3301": 3.74, + "HONS3199": 4.82, + "HIST6341": 4.38, + "ARHM6310": 4.33, + "HIST6340": 4.67 + } + } + ], + "neall pogue": [ + { + "department": "Undergraduate Studies", + "url": "https://www.ratemyprofessors.com/professor/2310244", + "quality_rating": 4, + "difficulty_rating": 2.9, + "would_take_again": 72, + "original_rmp_format": "Neall Pogue", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 39, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Get ready to read", + "Skip class? You won't pass.", + "Inspirational" + ], + "rmp_id": "2310244", + "instructor_id": "nxp174730", + "overall_grade_rating": 3.33, + "total_grade_count": 563, + "course_ratings": { + "BIS3320": 3.15, + "AMS2390": 3.05, + "ISIS3334": 3.6, + "AMS2300": 3.55 + } + } + ], + "david channell": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/244196", + "quality_rating": 3.9, + "difficulty_rating": 2.9, + "would_take_again": 38, + "original_rmp_format": "David Channell", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 19, + "tags": [ + "Lecture heavy", + "Inspirational", + "Graded by few things", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "244196", + "instructor_id": "channell", + "overall_grade_rating": 3.99, + "total_grade_count": 409, + "course_ratings": { + "HIST3337": 3.96, + "HUHI6313": 4.74, + "HIST3380": 3.99, + "HIST3374": 3.93, + "HIST2360": 4.08, + "HIST3350": 4.12 + } + } + ], + "peter ligon": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2244710", + "quality_rating": 2, + "difficulty_rating": 3, + "would_take_again": 33, + "original_rmp_format": "Peter Ligon", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 3, + "tags": [ + "Tough grader", + "Participation matters", + "Lots of homework", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2244710", + "instructor_id": "pal140130", + "overall_grade_rating": 3.59, + "total_grade_count": 96, + "course_ratings": { + "ARTS2316": 3.59 + } + } + ], + "bhavani thuraisingham": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1611696", + "quality_rating": 3.6, + "difficulty_rating": 2.3, + "would_take_again": 82, + "original_rmp_format": "Bhavani Thuraisingham", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 30, + "tags": ["Respected", "Inspirational", "EXTRA CREDIT", "Caring", "Amazing lectures "], + "rmp_id": "1611696", + "instructor_id": "bxt043000", + "overall_grade_rating": 4.96, + "total_grade_count": 767, + "course_ratings": { + "CS6301": 4.96, + "CS7301": 5.0, + "CS6348": 4.97, + "CS4301": 4.96 + } + } + ], + "brian dinuzzo": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2190370", + "quality_rating": 1.8, + "difficulty_rating": 3.8, + "would_take_again": 0, + "original_rmp_format": "Brian DiNuzzo", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 4, + "tags": [ + "Tough grader", + "Participation matters", + "Get ready to read", + "Lots of homework", + "Skip class? You won't pass." + ], + "rmp_id": "2190370", + "instructor_id": "bxd141330", + "overall_grade_rating": 3.45, + "total_grade_count": 47, + "course_ratings": { + "CRWT2301": 3.3, + "RHET1302": 4.0 + } + } + ], + "allison stelling": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2817880", + "quality_rating": 2.6, + "difficulty_rating": 3.4, + "would_take_again": 40, + "original_rmp_format": "Allison Stelling", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 5, + "tags": [ + "Beware of pop quizzes", + "Test heavy", + "Tough grader", + "EXTRA CREDIT", + "Lots of homework" + ], + "rmp_id": "2817880", + "instructor_id": "axs200157", + "overall_grade_rating": 4.31, + "total_grade_count": 55, + "course_ratings": { + "CHEM2401": 4.31 + } + } + ], + "elham doust haghighi": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2835057", + "quality_rating": 2, + "difficulty_rating": 2.7, + "would_take_again": 0, + "original_rmp_format": "Elham Doust-Haghighi", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 3, + "tags": ["Lots of homework", "Lecture heavy", "Tough grader"], + "rmp_id": "2835057", + "instructor_id": "exd190010", + "overall_grade_rating": 3.73, + "total_grade_count": 179, + "course_ratings": { + "ATCM2301": 3.73, + "ANGM3305": 3.71 + } + } + ], + "scott clifton": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2881106", + "quality_rating": 2.7, + "difficulty_rating": 2.7, + "would_take_again": 67, + "original_rmp_format": "Scott Clifton", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 3, + "tags": ["Caring"], + "rmp_id": "2881106", + "instructor_id": "sxc180077", + "overall_grade_rating": 4.27, + "total_grade_count": 189, + "course_ratings": { + "MKT4330": 4.2, + "MKT4339": 4.75 + } + } + ], + "william vandenberghe": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2259168", + "quality_rating": 3.9, + "difficulty_rating": 3.7, + "would_take_again": 84, + "original_rmp_format": "William Vandenberghe", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 25, + "tags": [ + "Test heavy", + "Participation matters", + "Caring", + "Graded by few things", + "Respected" + ], + "rmp_id": "2259168", + "instructor_id": "wxv101020", + "overall_grade_rating": 3.44, + "total_grade_count": 95, + "course_ratings": { + "ENGR3300": 3.36, + "MSEN6324": 3.66 + } + } + ], + "kemberly ritchey": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1597286", + "quality_rating": 3.7, + "difficulty_rating": 2.9, + "would_take_again": 60, + "original_rmp_format": "Kemberly Ritchey", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 14, + "tags": ["Participation matters", "Test heavy", "Tough grader", "Inspirational", "Caring"], + "rmp_id": "1597286", + "instructor_id": "kar014400", + "overall_grade_rating": 4.07, + "total_grade_count": 606, + "course_ratings": { + "OBHR3310": 4.13, + "OBHR4352": 3.79, + "OB6332": 4.82 + } + } + ], + "jason walker": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2761877", + "quality_rating": 3.6, + "difficulty_rating": 3.6, + "would_take_again": 60, + "original_rmp_format": "Jason Walker", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 5, + "tags": [ + "Tough grader", + "Accessible outside class", + "Participation matters", + "Gives good feedback", + "Hilarious" + ], + "rmp_id": "2761877", + "instructor_id": "jaw140030", + "overall_grade_rating": 3.77, + "total_grade_count": 178, + "course_ratings": { + "RHET1302": 3.68, + "LIT2331": 4.29, + "LIT4329": 3.54 + } + } + ], + "luell thompson": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1728397", + "quality_rating": 2.2, + "difficulty_rating": 3.2, + "would_take_again": 0, + "original_rmp_format": "Luell Thompson", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 17, + "tags": [ + "Tough grader", + "Test heavy", + "Participation matters", + "Get ready to read", + "Lots of homework" + ], + "rmp_id": "1728397", + "instructor_id": "lot013000", + "overall_grade_rating": 4.08, + "total_grade_count": 1088, + "course_ratings": { + "MIS6319": 4.18, + "OPRE6390": 4.42, + "ITSS4340": 3.73, + "MIS6332": 4.88 + } + } + ], + "james fraley": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2863291", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "James Fraley", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Inspirational", "Respected"], + "rmp_id": "2863291", + "instructor_id": "jmf210007", + "overall_grade_rating": 4.37, + "total_grade_count": 638, + "course_ratings": { + "ATCM3388": 4.41, + "ATCM4326": 4.62, + "ATCM2322": 4.23, + "COMM1311": 4.19, + "ATCM4397": 4.19, + "ATCM3301": 4.69 + } + } + ], + "gaetan dore": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2872628", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Gaetan Dore", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 1, + "tags": ["Get ready to read", "Lecture heavy", "Accessible outside class"], + "rmp_id": "2872628", + "instructor_id": "gxd190016", + "overall_grade_rating": 3.57, + "total_grade_count": 58, + "course_ratings": { + "CRIM4396": 3.29, + "CRIM3319": 3.71 + } + } + ], + "karen doore": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2121987", + "quality_rating": 2.3, + "difficulty_rating": 3.2, + "would_take_again": 30, + "original_rmp_format": "Karen Doore", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 42, + "tags": [ + "Lots of homework", + "Skip class? You won't pass.", + "Lecture heavy", + "Tough grader", + "EXTRA CREDIT" + ], + "rmp_id": "2121987", + "instructor_id": "kld054000", + "overall_grade_rating": 4.08, + "total_grade_count": 3660, + "course_ratings": { + "CS1335": 4.19, + "CS1134": 4.09, + "CS1334": 3.87, + "CS1136": 4.08, + "CS2335": 4.1 + } + } + ], + "artem arutyunyan": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2741474", + "quality_rating": 4, + "difficulty_rating": 4, + "would_take_again": 75, + "original_rmp_format": "Artem Arutyunyan", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 4, + "tags": ["Participation matters", "Gives good feedback", "Caring"], + "rmp_id": "2741474", + "instructor_id": "axa210132", + "overall_grade_rating": 4.54, + "total_grade_count": 138, + "course_ratings": { + "MUSI2317": 4.54 + } + } + ], + "yifei lou": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2042976", + "quality_rating": 3.6, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Yifei Lou", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 11, + "tags": [ + "Lots of homework", + "Gives good feedback", + "Lecture heavy", + "Skip class? You won't pass.", + "Caring" + ], + "rmp_id": "2042976", + "instructor_id": "yxl145331", + "overall_grade_rating": 2.79, + "total_grade_count": 269, + "course_ratings": { + "MATH2413": 2.73, + "MATH4334": 3.36 + } + } + ], + "vijay mookerjee": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/1810336", + "quality_rating": 3.2, + "difficulty_rating": 3.2, + "would_take_again": 33, + "original_rmp_format": "Vijay Mookerjee", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 6, + "tags": [ + "Skip class? You won't pass.", + "Group projects", + "Tough grader", + "Tests are tough", + "Inspirational" + ], + "rmp_id": "1810336", + "instructor_id": "vijaym", + "overall_grade_rating": 4.72, + "total_grade_count": 225, + "course_ratings": { + "MIS6313": 4.72 + } + } + ], + "shawn carraher": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/1859208", + "quality_rating": 4.6, + "difficulty_rating": 4.1, + "would_take_again": 90, + "original_rmp_format": "Shawn Carraher", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 228, + "tags": ["Participation matters", "Respected", "Inspirational", "Caring", "Would take again"], + "rmp_id": "1859208", + "instructor_id": "smc130730", + "overall_grade_rating": 4.28, + "total_grade_count": 877, + "course_ratings": { + "BPS6310": 4.56, + "IMS4320": 4.32, + "BPS4305": 4.26, + "IMS3310": 4.29 + } + } + ], + "laurie ziegler": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/133536", + "quality_rating": 4.4, + "difficulty_rating": 2, + "would_take_again": 83, + "original_rmp_format": "Laurie Ziegler", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 44, + "tags": [ + "Participation matters", + "Group projects", + "Gives good feedback", + "Get ready to read", + "Caring" + ], + "rmp_id": "133536", + "instructor_id": "ziegler", + "overall_grade_rating": 4.72, + "total_grade_count": 1311, + "course_ratings": { + "OB6301": 4.83, + "OB6332": 4.71, + "HMGT6324": 4.75, + "MECO6352": 4.77, + "SYSM6313": 4.57 + } + } + ], + "william frensley": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1624649", + "quality_rating": 3.7, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "William Frensley", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 14, + "tags": [ + "Clear grading criteria", + "Caring", + "Respected", + "Graded by few things", + "Would take again" + ], + "rmp_id": "1624649", + "instructor_id": "frensley", + "overall_grade_rating": 4.81, + "total_grade_count": 420, + "course_ratings": { + "EEMF6319": 4.94, + "EEMF6320": 4.97, + "EE3310": 4.69, + "CE3310": 4.38, + "EEMF6321": 4.94 + } + } + ], + "nils roemer": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/928917", + "quality_rating": 4.5, + "difficulty_rating": 2.7, + "would_take_again": 89, + "original_rmp_format": "Nils Roemer", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 20, + "tags": ["Caring", "Respected", "Get ready to read", "Gives good feedback", "Inspirational"], + "rmp_id": "928917", + "instructor_id": "nhr061000", + "overall_grade_rating": 4.89, + "total_grade_count": 95, + "course_ratings": { + "HUHI6313": 5.0, + "HUHI6320": 4.79, + "ATCM6000": 4.89, + "HUMA6300": 5.0, + "HIST6342": 5.0 + } + } + ], + "apurva patel": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2925189", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Apurva Patel", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 1, + "tags": ["Gives good feedback", "Caring", "Accessible outside class"], + "rmp_id": "2925189", + "instructor_id": "arp210010", + "overall_grade_rating": 3.4, + "total_grade_count": 87, + "course_ratings": { + "MECH4381": 3.98, + "BMEN2320": 2.74, + "MECH3351": 3.85 + } + } + ], + "samuel cheng": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1609438", + "quality_rating": 3.3, + "difficulty_rating": 3.2, + "would_take_again": 62, + "original_rmp_format": "Samuel Cheng", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 10, + "tags": [ + "Group projects", + "Clear grading criteria", + "Test heavy", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "1609438", + "instructor_id": "sxc109021", + "overall_grade_rating": 4.0, + "total_grade_count": 581, + "course_ratings": { + "ACCT6365": 4.07, + "ACCT3332": 2.39 + } + } + ], + "yun chiu": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1585304", + "quality_rating": 2, + "difficulty_rating": 4.4, + "would_take_again": 10, + "original_rmp_format": "Yun Chiu", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 14, + "tags": [ + "Lots of homework", + "Test heavy", + "Tough grader", + "Skip class? You won't pass.", + "Graded by few things" + ], + "rmp_id": "1585304", + "instructor_id": "yxc101000", + "overall_grade_rating": 3.46, + "total_grade_count": 145, + "course_ratings": { + "EECT6326": 3.56, + "CE3301": 3.92, + "EE3301": 4.0, + "EE4340": 3.01, + "CE3311": 2.42, + "EE3311": 2.83 + } + } + ], + "beyza celik": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2924345", + "quality_rating": 3, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Beyza Celik", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 1, + "tags": ["Test heavy"], + "rmp_id": "2924345", + "instructor_id": "bxc190000", + "overall_grade_rating": 3.93, + "total_grade_count": 164, + "course_ratings": { + "OPRE3310": 3.93 + } + } + ], + "herve abdi": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/244171", + "quality_rating": 4.7, + "difficulty_rating": 3.7, + "would_take_again": 100, + "original_rmp_format": "Herve Abdi", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 10, + "tags": ["Amazing lectures ", "Respected", "Accessible outside class"], + "rmp_id": "244171", + "instructor_id": "herve", + "overall_grade_rating": 4.44, + "total_grade_count": 83, + "course_ratings": { + "HCS7310": 4.9, + "HCS7320": 4.82, + "ACN6313": 4.08 + } + } + ], + "justin hill": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/2756197", + "quality_rating": 5, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "Justin Hill", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 55, + "tags": ["Amazing lectures ", "Inspirational", "Caring", "Respected", "Gives good feedback"], + "rmp_id": "2756197", + "instructor_id": "jth190008", + "overall_grade_rating": 4.26, + "total_grade_count": 84, + "course_ratings": { + "RHET1302": 4.26 + } + } + ], + "andrea croasdale woudwyk": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2637097", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Andrea Croasdale Woudwyk", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 6, + "tags": [ + "Caring", + "Participation matters", + "Accessible outside class", + "EXTRA CREDIT", + "Amazing lectures " + ], + "rmp_id": "2637097", + "instructor_id": "axc169230", + "overall_grade_rating": 4.65, + "total_grade_count": 59, + "course_ratings": { + "ECS1100": 4.65 + } + } + ], + "kevin lutz": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2794741", + "quality_rating": 4.9, + "difficulty_rating": 2.7, + "would_take_again": 97, + "original_rmp_format": "Kevin Lutz", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 29, + "tags": [ + "Amazing lectures ", + "EXTRA CREDIT", + "Inspirational", + "Clear grading criteria", + "Beware of pop quizzes" + ], + "rmp_id": "2794741", + "instructor_id": "kcl170000", + "overall_grade_rating": 4.13, + "total_grade_count": 447, + "course_ratings": { + "CS3341": 4.2, + "SE3341": 3.69 + } + } + ], + "jennifer hudson": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/1867260", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 39, + "original_rmp_format": "Jennifer Hudson", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 69, + "tags": [ + "Participation matters", + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Gives good feedback" + ], + "rmp_id": "1867260", + "instructor_id": "jxh100220", + "overall_grade_rating": 3.35, + "total_grade_count": 285, + "course_ratings": { + "BIS3320": 3.28, + "AMS4379": 4.09 + } + } + ], + "guido tirone": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2363800", + "quality_rating": 3.1, + "difficulty_rating": 3, + "would_take_again": 45, + "original_rmp_format": "Guido Tirone", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 29, + "tags": [ + "Amazing lectures ", + "Graded by few things", + "Test heavy", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "2363800", + "instructor_id": "gxt170001", + "overall_grade_rating": 4.28, + "total_grade_count": 1057, + "course_ratings": { + "MKT6352": 4.25, + "MKT6384": 4.52, + "MKT6349": 4.54 + } + } + ], + "vaidehi natu": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2817918", + "quality_rating": 5, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Vaidehi Natu", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 3, + "tags": [ + "Group projects", + "Clear grading criteria", + "Amazing lectures ", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2817918", + "instructor_id": "vsn061000", + "overall_grade_rating": 3.79, + "total_grade_count": 112, + "course_ratings": { + "PSY3393": 4.11, + "NSC4359": 3.85, + "PSY4359": 3.39 + } + } + ], + "nurcan yuruk": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1916803", + "quality_rating": 4.1, + "difficulty_rating": 2.6, + "would_take_again": 72, + "original_rmp_format": "Nurcan Yuruk", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 66, + "tags": [ + "Respected", + "Lots of homework", + "Caring", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "1916803", + "instructor_id": "nxy140530", + "overall_grade_rating": 4.57, + "total_grade_count": 1169, + "course_ratings": { + "CS6360": 4.51, + "CS6314": 4.67, + "CS4347": 3.92, + "SE4347": 3.92 + } + } + ], + "bryon caldwell": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2686165", + "quality_rating": 5, + "difficulty_rating": 3.2, + "would_take_again": 100, + "original_rmp_format": "Bryon Caldwell", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 5, + "tags": [ + "Gives good feedback", + "Accessible outside class", + "Tough grader", + "Participation matters", + "Amazing lectures " + ], + "rmp_id": "2686165", + "instructor_id": "bac190003", + "overall_grade_rating": 3.53, + "total_grade_count": 584, + "course_ratings": { + "ATCM3305": 3.21, + "ATCM4305": 3.68, + "ATCM4373": 4.23, + "ATCM4397": 3.37, + "ANGM3305": 3.47, + "ANGM4305": 3.46, + "ANGM4373": 3.75, + "ATCM6310": 4.83, + "ANGM2325": 4.08, + "ANGM4315": 3.75 + } + } + ], + "jana hunsley": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2884728", + "quality_rating": 3.4, + "difficulty_rating": 2.6, + "would_take_again": 60, + "original_rmp_format": "Jana Hunsley", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 5, + "tags": [ + "Tough grader", + "Participation matters", + "Amazing lectures ", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2884728", + "instructor_id": "jxh220032", + "overall_grade_rating": 4.24, + "total_grade_count": 236, + "course_ratings": { + "HDCD6312": 4.5, + "HDCD6315": 4.9, + "CLDP4344": 4.33, + "HDCD6330": 4.92, + "PSY4344": 4.03 + } + } + ], + "paul lester": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2044502", + "quality_rating": 1.9, + "difficulty_rating": 3.9, + "would_take_again": 22, + "original_rmp_format": "Paul Lester", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 45, + "tags": [ + "Tough grader", + "Participation matters", + "EXTRA CREDIT", + "So many papers", + "Lots of homework" + ], + "rmp_id": "2044502", + "instructor_id": "pxl152030", + "overall_grade_rating": 3.53, + "total_grade_count": 851, + "course_ratings": { + "ATCM1100": 3.48, + "ATCM2301": 3.64, + "ATCM4384": 3.36, + "ATCM2340": 3.86, + "ATCM4397": 3.72 + } + } + ], + "ronald smaldone": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1811322", + "quality_rating": 3.3, + "difficulty_rating": 3.5, + "would_take_again": 0, + "original_rmp_format": "Ronald Smaldone", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 13, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Would take again", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "1811322", + "instructor_id": "ras120030", + "overall_grade_rating": 3.51, + "total_grade_count": 225, + "course_ratings": { + "CHEM2323": 3.05, + "CHEM3471": 3.96, + "HONS3199": 5.0 + } + } + ], + "humza khan": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2895856", + "quality_rating": 5, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Humza Khan", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 5, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback", + "Accessible outside class", + "Participation matters" + ], + "rmp_id": "2895856", + "instructor_id": "hxk180058", + "overall_grade_rating": 3.3, + "total_grade_count": 12, + "course_ratings": { + "GOVT2305": 3.3 + } + } + ], + "levi good": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/2233093", + "quality_rating": 3, + "difficulty_rating": 1.7, + "would_take_again": 67, + "original_rmp_format": "Levi Good", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 6, + "tags": [ + "Test heavy", + "Clear grading criteria", + "Get ready to read", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "2233093", + "instructor_id": "lbg170030", + "overall_grade_rating": 3.9, + "total_grade_count": 490, + "course_ratings": { + "BMEN3332": 3.75, + "BMEN3380": 4.07, + "BMEN4110": 3.85, + "BMEN1300": 3.73, + "BMEN3331": 4.09, + "BMEN8188": 4.82 + } + } + ], + "alexander murphy": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2749386", + "quality_rating": 4.4, + "difficulty_rating": 3.6, + "would_take_again": 80, + "original_rmp_format": "Alexander Murphy", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 5, + "tags": [ + "EXTRA CREDIT", + "Tough grader", + "Participation matters", + "Hilarious", + "Accessible outside class" + ], + "rmp_id": "2749386", + "instructor_id": "axm210176", + "overall_grade_rating": 3.84, + "total_grade_count": 143, + "course_ratings": { + "ECS1100": 4.74, + "MECH2310": 3.19 + } + } + ], + "william katz": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/897574", + "quality_rating": 4, + "difficulty_rating": 3.5, + "would_take_again": 92, + "original_rmp_format": "William Katz", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 29, + "tags": [ + "Hilarious", + "Participation matters", + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Amazing lectures " + ], + "rmp_id": "897574", + "instructor_id": "wkatz", + "overall_grade_rating": 4.04, + "total_grade_count": 520, + "course_ratings": { + "SPAU3343": 3.86, + "COMD6305": 5.0, + "HCS7325": 4.83 + } + } + ], + "megan gray": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2508205", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Megan Gray", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 2, + "tags": ["Caring", "Amazing lectures ", "Hilarious", "Respected", "Accessible outside class"], + "rmp_id": "2508205", + "instructor_id": "mlg105020", + "overall_grade_rating": 3.55, + "total_grade_count": 113, + "course_ratings": { + "ARHM1100": 3.55 + } + } + ], + "paul pantano": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1561549", + "quality_rating": 3.9, + "difficulty_rating": 3.2, + "would_take_again": 60, + "original_rmp_format": "Paul Pantano", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 15, + "tags": [ + "Tough grader", + "Gives good feedback", + "Inspirational", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "1561549", + "instructor_id": "pantano", + "overall_grade_rating": 4.02, + "total_grade_count": 262, + "course_ratings": { + "CHEM2401": 3.89, + "CHEM5355": 4.44 + } + } + ], + "christopher perry": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2797839", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Christopher Perry", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 1, + "tags": ["Lecture heavy", "Test heavy", "Graded by few things"], + "rmp_id": "2797839", + "instructor_id": "cmp160130", + "overall_grade_rating": 3.87, + "total_grade_count": 161, + "course_ratings": { + "ITSS4300": 3.87 + } + } + ], + "lynn morgan": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2894969", + "quality_rating": 4.8, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Lynn Morgan", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 4, + "tags": [ + "Amazing lectures ", + "Caring", + "Participation matters", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2894969", + "instructor_id": "lam180002", + "overall_grade_rating": 3.3, + "total_grade_count": 90, + "course_ratings": { + "ECON2302": 3.3 + } + } + ], + "matthew kelly": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2910214", + "quality_rating": 4, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Matthew Kelly ", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 1, + "tags": [], + "rmp_id": "2910214", + "instructor_id": "mlk170130", + "overall_grade_rating": 3.1, + "total_grade_count": 46, + "course_ratings": { + "FIN3320": 3.1 + } + } + ], + "hong zhang": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2909927", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Hong Zhang", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 4, + "tags": ["Amazing lectures ", "Gives good feedback", "Caring", "Clear grading criteria"], + "rmp_id": "2909927", + "instructor_id": "hxz180033", + "overall_grade_rating": 4.7, + "total_grade_count": 160, + "course_ratings": { + "ITSS4381": 4.71, + "ITSS3311": 4.69 + } + } + ], + "melissa hayslip": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2576091", + "quality_rating": 4.8, + "difficulty_rating": 2.1, + "would_take_again": 92, + "original_rmp_format": "Melissa Hayslip", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 12, + "tags": [ + "Gives good feedback", + "Amazing lectures ", + "Accessible outside class", + "Tough grader", + "Beware of pop quizzes" + ], + "rmp_id": "2576091", + "instructor_id": "mpb150030", + "overall_grade_rating": 3.71, + "total_grade_count": 308, + "course_ratings": { + "CRIM1307": 3.96, + "CRIM2317": 3.76, + "CRIM3301": 3.51, + "CRIM3319": 3.85, + "CRIM4311": 3.62 + } + } + ], + "tomislav kovandzic": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2363701", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Tomislav Kovandzic", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 10, + "tags": [ + "Get ready to read", + "Clear grading criteria", + "Lots of homework", + "Participation matters", + "Tough grader" + ], + "rmp_id": "2363701", + "instructor_id": "tvk071000", + "overall_grade_rating": 3.55, + "total_grade_count": 551, + "course_ratings": { + "CRIM3323": 3.19, + "CRIM1307": 3.87, + "CRIM3304": 2.71 + } + } + ], + "hyesook chung": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2888130", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Hyesook Chung", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 4, + "tags": [ + "EXTRA CREDIT", + "Amazing lectures ", + "Caring", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "2888130", + "instructor_id": "hxc220020", + "overall_grade_rating": 4.0, + "total_grade_count": 125, + "course_ratings": { + "OBHR3330": 4.0 + } + } + ], + "ismat zareen": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2878196", + "quality_rating": 3.8, + "difficulty_rating": 4, + "would_take_again": 75, + "original_rmp_format": "Ismat Zareen", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 4, + "tags": [ + "Gives good feedback", + "Beware of pop quizzes", + "Caring", + "Respected", + "Amazing lectures " + ], + "rmp_id": "2878196", + "instructor_id": "ixz130130", + "overall_grade_rating": 3.79, + "total_grade_count": 89, + "course_ratings": { + "ITSS4370": 3.87, + "ITSS4371": 3.73 + } + } + ], + "misty owens": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2199396", + "quality_rating": 3.3, + "difficulty_rating": 2.6, + "would_take_again": 50, + "original_rmp_format": "Misty Owens", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 16, + "tags": [ + "Participation matters", + "Group projects", + "Tough grader", + "Skip class? You won't pass.", + "Gives good feedback" + ], + "rmp_id": "2199396", + "instructor_id": "mxo122530", + "overall_grade_rating": 4.45, + "total_grade_count": 240, + "course_ratings": { + "DANC1310": 4.21, + "DANC2321": 4.76, + "DANC2333": 4.51, + "DANC3342": 4.79, + "DANC3336": 5.0 + } + } + ], + "quanquan liu": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2829273", + "quality_rating": 3, + "difficulty_rating": 3.3, + "would_take_again": 44, + "original_rmp_format": "QuanQuan Liu", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 34, + "tags": ["Group projects", "Tough grader", "Lecture heavy", "Amazing lectures ", "Caring"], + "rmp_id": "2829273", + "instructor_id": "qxl220001", + "overall_grade_rating": 3.99, + "total_grade_count": 962, + "course_ratings": { + "BUAN6312": 4.08, + "OPRE3360": 3.6 + } + } + ], + "marcela reyes": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2833225", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Marcela Reyes", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 1, + "tags": ["Inspirational", "Caring", "Respected"], + "rmp_id": "2833225", + "instructor_id": "mxr116430", + "overall_grade_rating": 4.41, + "total_grade_count": 111, + "course_ratings": { + "ARTS2348": 4.33, + "ARTS3366": 4.58, + "ARTS3368": 4.54, + "ARTS1316": 3.99 + } + } + ], + "iti mehta": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2421361", + "quality_rating": 4.4, + "difficulty_rating": 2.7, + "would_take_again": 94, + "original_rmp_format": "Iti Mehta", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 16, + "tags": [ + "Clear grading criteria", + "Caring", + "Accessible outside class", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2421361", + "instructor_id": "ixm121430", + "overall_grade_rating": 4.26, + "total_grade_count": 739, + "course_ratings": { + "BIOL2281": 4.13, + "BIOL3203": 4.39, + "BIOL3520": 4.43 + } + } + ], + "mario rotea": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2873149", + "quality_rating": 2, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Mario Rotea", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 1, + "tags": ["Participation matters", "Lots of homework"], + "rmp_id": "2873149", + "instructor_id": "mar091000", + "overall_grade_rating": 2.87, + "total_grade_count": 126, + "course_ratings": { + "MECH4310": 2.87 + } + } + ], + "james walton": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2272985", + "quality_rating": 4.6, + "difficulty_rating": 2.6, + "would_take_again": 95, + "original_rmp_format": "James Walton", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 22, + "tags": [ + "EXTRA CREDIT", + "Participation matters", + "Amazing lectures ", + "Inspirational", + "Hilarious" + ], + "rmp_id": "2272985", + "instructor_id": "jww160330", + "overall_grade_rating": 4.11, + "total_grade_count": 286, + "course_ratings": { + "HMGT3301": 4.23, + "HMGT6320": 4.02 + } + } + ], + "carrie simpson": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/2371619", + "quality_rating": 2.2, + "difficulty_rating": 3.6, + "would_take_again": 22, + "original_rmp_format": "Carrie Simpson", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 9, + "tags": [ + "Tough grader", + "Get ready to read", + "Gives good feedback", + "Lots of homework", + "Caring" + ], + "rmp_id": "2371619", + "instructor_id": "cms131030", + "overall_grade_rating": 3.46, + "total_grade_count": 239, + "course_ratings": { + "BIS4306": 3.43, + "ED4301": 3.8 + } + } + ], + "nan wu": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2906837", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Nan Wu", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 2, + "tags": ["Lots of homework", "Lecture heavy", "Test heavy", "Accessible outside class"], + "rmp_id": "2906837", + "instructor_id": "nxw220012", + "overall_grade_rating": 4.21, + "total_grade_count": 206, + "course_ratings": { + "STAT4351": 4.08, + "STAT6390": 5.0 + } + } + ], + "donald taylor": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2644156", + "quality_rating": 4.6, + "difficulty_rating": 2.3, + "would_take_again": 86, + "original_rmp_format": "Donald Taylor", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 7, + "tags": [ + "Caring", + "Respected", + "Clear grading criteria", + "Inspirational", + "Accessible outside class" + ], + "rmp_id": "2644156", + "instructor_id": "det190000", + "overall_grade_rating": 4.63, + "total_grade_count": 296, + "course_ratings": { + "HMGT3301": 4.4, + "HLTH3305": 4.75 + } + } + ], + "mandy maguire": [ + { + "department": "Not Specified", + "url": "https://www.ratemyprofessors.com/professor/1061114", + "quality_rating": 4.2, + "difficulty_rating": 2.9, + "would_take_again": 92, + "original_rmp_format": "Mandy Maguire", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 44, + "tags": [ + "Amazing lectures ", + "Lecture heavy", + "Test heavy", + "Graded by few things", + "Get ready to read" + ], + "rmp_id": "1061114", + "instructor_id": "mjm053000", + "overall_grade_rating": 3.85, + "total_grade_count": 666, + "course_ratings": { + "CLDP3303": 3.7, + "SPAU3303": 3.75, + "COMD6307": 4.96 + } + } + ], + "cornetta mosley": [ + { + "department": "Speech & Language Pathology", + "url": "https://www.ratemyprofessors.com/professor/2895479", + "quality_rating": 4.5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Cornetta Mosley", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 2, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Gives good feedback", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "2895479", + "instructor_id": "cxm220030", + "overall_grade_rating": 3.78, + "total_grade_count": 159, + "course_ratings": { + "AUD6310": 4.67, + "SPAU3304": 3.08, + "COMD7325": 4.57 + } + } + ], + "lea aubrey": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/2084497", + "quality_rating": 5, + "difficulty_rating": 1.1, + "would_take_again": 100, + "original_rmp_format": "Lea Aubrey", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 7, + "tags": [ + "EXTRA CREDIT", + "Clear grading criteria", + "Caring", + "Group projects", + "Would take again" + ], + "rmp_id": "2084497", + "instructor_id": "lec110030", + "overall_grade_rating": 4.78, + "total_grade_count": 416, + "course_ratings": { + "HMGT3301": 4.73, + "ISIS4310": 4.84 + } + } + ], + "michael stewart": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2518439", + "quality_rating": 5, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Michael Stewart", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 3, + "tags": [ + "Caring", + "Group projects", + "Clear grading criteria", + "Gives good feedback", + "Accessible outside class" + ], + "rmp_id": "2518439", + "instructor_id": "mxs128231", + "overall_grade_rating": 3.79, + "total_grade_count": 310, + "course_ratings": { + "ATCM4365": 2.14, + "ATCM2335": 3.53, + "ATCM4397": 3.92, + "ATCM3365": 4.14, + "ATCM2303": 4.86 + } + } + ], + "ifana mahbub": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2890579", + "quality_rating": 4.5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Ifana Mahbub", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 2, + "tags": [ + "EXTRA CREDIT", + "Clear grading criteria", + "Caring", + "Respected", + "Accessible outside class" + ], + "rmp_id": "2890579", + "instructor_id": "ixm121830", + "overall_grade_rating": 4.56, + "total_grade_count": 93, + "course_ratings": { + "EERF6394": 4.69, + "EE4301": 4.48 + } + } + ], + "anne burton": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2729889", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Anne Burton", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 1, + "tags": ["Participation matters", "Group projects", "Lots of homework"], + "rmp_id": "2729889", + "instructor_id": "axb210050", + "overall_grade_rating": 3.64, + "total_grade_count": 170, + "course_ratings": { + "ECON3310": 3.24, + "ECON3338": 3.86 + } + } + ], + "xiaohu guo": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1377838", + "quality_rating": 2.4, + "difficulty_rating": 4.1, + "would_take_again": 38, + "original_rmp_format": "Xiaohu Guo", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 10, + "tags": [ + "Lots of homework", + "Tough grader", + "Graded by few things", + "Get ready to read", + "Skip class? You won't pass." + ], + "rmp_id": "1377838", + "instructor_id": "xxg061000", + "overall_grade_rating": 3.88, + "total_grade_count": 470, + "course_ratings": { + "CS4392": 3.0, + "CS6323": 4.76, + "CS4361": 3.92, + "CS6366": 3.62 + } + } + ], + "yeonjae park": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2698493", + "quality_rating": 3.8, + "difficulty_rating": 2, + "would_take_again": 80, + "original_rmp_format": "Yeonjae Park", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 5, + "tags": [ + "Graded by few things", + "Clear grading criteria", + "Get ready to read", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2698493", + "instructor_id": "yxp190004", + "overall_grade_rating": 4.15, + "total_grade_count": 261, + "course_ratings": { + "CRIM4311": 3.88, + "CRIM3307": 3.84, + "CRIM3301": 4.62, + "CRIM3310": 4.04 + } + } + ], + "amy kerner": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/2727665", + "quality_rating": 4.5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Amy Kerner", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 2, + "tags": [ + "EXTRA CREDIT", + "Amazing lectures ", + "Gives good feedback", + "Caring", + "Lecture heavy" + ], + "rmp_id": "2727665", + "instructor_id": "axk200088", + "overall_grade_rating": 3.64, + "total_grade_count": 154, + "course_ratings": { + "HIST4359": 2.85, + "HIST4376": 3.17, + "HIST3301": 3.78, + "HIST3305": 3.52, + "HIST6360": 4.42, + "HIST2350": 3.58 + } + } + ], + "sharron conrad": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/1974679", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Sharron Conrad", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "1974679", + "instructor_id": "swc071000", + "overall_grade_rating": 3.64, + "total_grade_count": 97, + "course_ratings": { + "HIST1301": 3.64 + } + } + ], + "angela mooney": [ + { + "department": "Languages", + "url": "https://www.ratemyprofessors.com/professor/2854921", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Angela Mooney", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 3, + "tags": ["Gives good feedback", "Caring", "Participation matters", "Lots of homework"], + "rmp_id": "2854921", + "instructor_id": "axm220217", + "overall_grade_rating": 4.48, + "total_grade_count": 121, + "course_ratings": { + "SPAN1311": 4.48, + "SPAN1312": 4.63, + "SPAN2311": 4.32, + "SPAN3350": 4.46 + } + } + ], + "allison russell": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2908324", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Allison Russell ", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 1, + "tags": ["Group projects", "Caring", "Respected"], + "rmp_id": "2908324", + "instructor_id": "axr210032", + "overall_grade_rating": 4.71, + "total_grade_count": 16, + "course_ratings": { + "PA4350": 4.71 + } + } + ], + "warren goux": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/773266", + "quality_rating": 1.9, + "difficulty_rating": 3.9, + "would_take_again": 30, + "original_rmp_format": "Warren Goux", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 48, + "tags": [ + "Tough grader", + "Get ready to read", + "Clear grading criteria", + "Test heavy", + "Accessible outside class" + ], + "rmp_id": "773266", + "instructor_id": "wgoux", + "overall_grade_rating": 3.47, + "total_grade_count": 357, + "course_ratings": { + "CHEM3472": 2.89, + "CHEM4473": 2.92, + "CHEM3322": 2.45, + "CHEM1112": 4.43 + } + } + ], + "michelle aldridge": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/596383", + "quality_rating": 4.6, + "difficulty_rating": 1.3, + "would_take_again": 86, + "original_rmp_format": "Michelle Aldridge", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 28, + "tags": [ + "Caring", + "Respected", + "Graded by few things", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "596383", + "instructor_id": "aldridge", + "overall_grade_rating": 4.86, + "total_grade_count": 965, + "course_ratings": { + "COMD6320": 4.89, + "SPAU3301": 4.79, + "SPAU3340": 4.85, + "COMD5340": 4.97, + "COMD6111": 5.0 + } + } + ], + "rasha aljararwa": [ + { + "department": "Arts amp Humanities", + "url": "https://www.ratemyprofessors.com/professor/2484004", + "quality_rating": 4.6, + "difficulty_rating": 2.2, + "would_take_again": 100, + "original_rmp_format": "Rasha Aljararwa", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 5, + "tags": [ + "Participation matters", + "Gives good feedback", + "Clear grading criteria", + "Caring", + "Tough grader" + ], + "rmp_id": "2484004", + "instructor_id": "rxa150230", + "overall_grade_rating": 3.82, + "total_grade_count": 224, + "course_ratings": { + "RHET1302": 3.93, + "LIT2331": 3.01 + } + } + ], + "chandramallika basak": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/1937993", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Chandramallika Basak", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 4, + "tags": [ + "Participation matters", + "Clear grading criteria", + "Amazing lectures ", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "1937993", + "instructor_id": "cxb116130", + "overall_grade_rating": 3.9, + "total_grade_count": 319, + "course_ratings": { + "PSY3393": 4.01, + "PSY4386": 3.73, + "SPAU4386": 3.93, + "ACN6333": 4.22 + } + } + ], + "yousef alhamoudi": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2791705", + "quality_rating": 3.7, + "difficulty_rating": 2, + "would_take_again": 67, + "original_rmp_format": "Yousef Alhamoudi", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 3, + "tags": [ + "Caring", + "Participation matters", + "Clear grading criteria", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2791705", + "instructor_id": "yxa190000", + "overall_grade_rating": 3.23, + "total_grade_count": 71, + "course_ratings": { + "RHET1302": 3.23 + } + } + ], + "huseyin cavusoglu": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/894892", + "quality_rating": 2.1, + "difficulty_rating": 4.1, + "would_take_again": 30, + "original_rmp_format": "Huseyin Cavusoglu", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 33, + "tags": [ + "Tough grader", + "Test heavy", + "Clear grading criteria", + "Lecture heavy", + "Get ready to read" + ], + "rmp_id": "894892", + "instructor_id": "huseyin", + "overall_grade_rating": 4.11, + "total_grade_count": 827, + "course_ratings": { + "MIS6320": 4.11, + "BUAN6320": 3.99, + "OPRE6393": 4.31, + "ACCT6320": 4.09, + "MIS6330": 4.4, + "ACCT6313": 4.45 + } + } + ], + "zixuan meng": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2764085", + "quality_rating": 5, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "Zixuan Meng", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 9, + "tags": [ + "Amazing lectures ", + "Group projects", + "Clear grading criteria", + "Inspirational", + "Hilarious" + ], + "rmp_id": "2764085", + "instructor_id": "zxm200005", + "overall_grade_rating": 4.51, + "total_grade_count": 528, + "course_ratings": { + "BUAN6341": 4.51, + "MIS6341": 4.51 + } + } + ], + "artem joukov": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2877577", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Artem Joukov", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 1, + "tags": ["Amazing lectures "], + "rmp_id": "2877577", + "instructor_id": "amj210001", + "overall_grade_rating": 2.45, + "total_grade_count": 48, + "course_ratings": { + "FIN3320": 2.45 + } + } + ], + "yan cao": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1210617", + "quality_rating": 2.3, + "difficulty_rating": 4, + "would_take_again": 64, + "original_rmp_format": "Yan Cao", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 23, + "tags": [ + "Get ready to read", + "Tough grader", + "Lots of homework", + "Gives good feedback", + "Amazing lectures " + ], + "rmp_id": "1210617", + "instructor_id": "yxc069200", + "overall_grade_rating": 3.29, + "total_grade_count": 425, + "course_ratings": { + "MATH2413": 2.95, + "MATH3379": 3.2, + "MATH6346": 4.28, + "MATH6345": 4.0 + } + } + ], + "jeffery drummond": [ + { + "department": "Law", + "url": "https://www.ratemyprofessors.com/professor/2330065", + "quality_rating": 4.5, + "difficulty_rating": 4, + "would_take_again": 75, + "original_rmp_format": "Jeffery Drummond", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 4, + "tags": [ + "Tough grader", + "Get ready to read", + "Amazing lectures ", + "Would take again", + "Inspirational" + ], + "rmp_id": "2330065", + "instructor_id": "jpd160230", + "overall_grade_rating": 4.22, + "total_grade_count": 203, + "course_ratings": { + "HMGT6330": 4.22 + } + } + ], + "kevin jackson": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2475266", + "quality_rating": 4.9, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Kevin Jackson", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 8, + "tags": [ + "Participation matters", + "Respected", + "Inspirational", + "Caring", + "Accessible outside class" + ], + "rmp_id": "2475266", + "instructor_id": "kxj162930", + "overall_grade_rating": 4.65, + "total_grade_count": 240, + "course_ratings": { + "PSY1100": 4.84, + "BBSU1100": 4.56 + } + } + ], + "jazmine jones": [ + { + "department": "Design", + "url": "https://www.ratemyprofessors.com/professor/2720583", + "quality_rating": 2.5, + "difficulty_rating": 2.8, + "would_take_again": 33, + "original_rmp_format": "Jazmine Jones", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Lots of homework", + "Get ready to read", + "Participation matters", + "EXTRA CREDIT" + ], + "rmp_id": "2720583", + "instructor_id": "jqj130030", + "overall_grade_rating": 3.8, + "total_grade_count": 236, + "course_ratings": { + "ATCM2301": 3.49, + "ATCM2350": 4.3, + "ATCM2302": 3.54 + } + } + ], + "dorothee honhon": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2119830", + "quality_rating": 4.3, + "difficulty_rating": 3.4, + "would_take_again": 79, + "original_rmp_format": "Dorothee Honhon", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 17, + "tags": [ + "Amazing lectures ", + "Caring", + "Gives good feedback", + "Lots of homework", + "Respected" + ], + "rmp_id": "2119830", + "instructor_id": "dbh130130", + "overall_grade_rating": 4.56, + "total_grade_count": 562, + "course_ratings": { + "OPRE6341": 4.54, + "OPRE6302": 4.58 + } + } + ], + "francesca filbey": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/1639782", + "quality_rating": 3.2, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Francesca Filbey", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 8, + "tags": ["Clear grading criteria", "Caring"], + "rmp_id": "1639782", + "instructor_id": "fxf013100", + "overall_grade_rating": 3.91, + "total_grade_count": 95, + "course_ratings": { + "ACN6395": 4.54, + "PSYC6395": 3.96, + "NSC4385": 3.79, + "PSY4385": 3.58 + } + } + ], + "neil farquharson": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2487424", + "quality_rating": 5, + "difficulty_rating": 2.2, + "would_take_again": 100, + "original_rmp_format": "Neil Farquharson", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 11, + "tags": [ + "Gives good feedback", + "Caring", + "Accessible outside class", + "Respected", + "Group projects" + ], + "rmp_id": "2487424", + "instructor_id": "nxf051000", + "overall_grade_rating": 4.29, + "total_grade_count": 363, + "course_ratings": { + "MKT4337": 4.12, + "MKT4339": 4.34, + "MKT4360": 4.34, + "MKT3300": 3.97, + "MKT4395": 5.0 + } + } + ], + "karthik ganapathy": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2867412", + "quality_rating": 2.3, + "difficulty_rating": 3, + "would_take_again": 33, + "original_rmp_format": "Karthik Ganapathy", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 3, + "tags": [ + "Get ready to read", + "Test heavy", + "Tough grader", + "Group projects", + "Amazing lectures " + ], + "rmp_id": "2867412", + "instructor_id": "kxg161630", + "overall_grade_rating": 2.73, + "total_grade_count": 89, + "course_ratings": { + "MECH2330": 2.73 + } + } + ], + "youngseok yoon": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2876339", + "quality_rating": 1, + "difficulty_rating": 3.3, + "would_take_again": 0, + "original_rmp_format": "Youngseok Yoon ", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 3, + "tags": [], + "rmp_id": "2876339", + "instructor_id": "yxy200007", + "overall_grade_rating": 4.33, + "total_grade_count": 89, + "course_ratings": { + "PA3380": 4.33, + "PA3333": 4.39, + "EPPS2302": 4.24 + } + } + ], + "jennifer cantrell sutor": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2776080", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Jennifer Cantrell-Sutor", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 4, + "tags": [ + "Gives good feedback", + "Caring", + "Accessible outside class", + "Participation matters" + ], + "rmp_id": "2776080", + "instructor_id": "jdc180002", + "overall_grade_rating": 4.05, + "total_grade_count": 148, + "course_ratings": { + "RHET1302": 4.05 + } + } + ], + "diamond beverly": [ + { + "department": "Design", + "url": "https://www.ratemyprofessors.com/professor/2841935", + "quality_rating": 3, + "difficulty_rating": 1, + "would_take_again": 0, + "original_rmp_format": "Diamond Beverly", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 1, + "tags": ["Participation matters", "Group projects", "Lots of homework"], + "rmp_id": "2841935", + "instructor_id": "deb180004", + "overall_grade_rating": 3.72, + "total_grade_count": 89, + "course_ratings": { + "ATCM2302": 3.72 + } + } + ], + "lorraine tady": [ + { + "department": "Design", + "url": "https://www.ratemyprofessors.com/professor/1164394", + "quality_rating": 3.1, + "difficulty_rating": 2.3, + "would_take_again": 50, + "original_rmp_format": "Lorraine Tady", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 13, + "tags": [ + "Tough grader", + "Participation matters", + "Skip class? You won't pass.", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "1164394", + "instructor_id": "ltt042000", + "overall_grade_rating": 4.45, + "total_grade_count": 330, + "course_ratings": { + "ARTS3369": 4.7, + "ARTS3363": 4.24, + "ARTS3382": 4.4, + "ARTS3373": 4.68 + } + } + ], + "teodoro benavides": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1780607", + "quality_rating": 4.6, + "difficulty_rating": 2.1, + "would_take_again": 100, + "original_rmp_format": "Teodoro Benavides", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 11, + "tags": [ + "Gives good feedback", + "Get ready to read", + "Participation matters", + "Would take again", + "Inspirational" + ], + "rmp_id": "1780607", + "instructor_id": "tjb051000", + "overall_grade_rating": 4.86, + "total_grade_count": 465, + "course_ratings": { + "PA6321": 4.79, + "PA6348": 5.0, + "PA4351": 4.75, + "PA6313": 5.0, + "PA6324": 5.0, + "PA2325": 4.78, + "PA6344": 4.89, + "PA6342": 5.0, + "ECON6372": 5.0, + "PA4390": 5.0 + } + } + ], + "jeffrey word": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2831709", + "quality_rating": 3.7, + "difficulty_rating": 3.3, + "would_take_again": 83, + "original_rmp_format": "Jeffrey Word", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 6, + "tags": [ + "Participation matters", + "Lecture heavy", + "Clear grading criteria", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "2831709", + "instructor_id": "jbw220001", + "overall_grade_rating": 3.83, + "total_grade_count": 132, + "course_ratings": { + "ITSS3300": 3.83 + } + } + ], + "amy hofland": [ + { + "department": "Art History", + "url": "https://www.ratemyprofessors.com/professor/2632684", + "quality_rating": 4.7, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Amy Hofland", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Get ready to read", + "Caring", + "Graded by few things", + "Accessible outside class" + ], + "rmp_id": "2632684", + "instructor_id": "axh190029", + "overall_grade_rating": 4.85, + "total_grade_count": 100, + "course_ratings": { + "AHST2331": 4.85 + } + } + ], + "julia chan": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2629014", + "quality_rating": 4.2, + "difficulty_rating": 2.6, + "would_take_again": 80, + "original_rmp_format": "Julia Chan", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 5, + "tags": [ + "Caring", + "Accessible outside class", + "Inspirational", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2629014", + "instructor_id": "jyc130130", + "overall_grade_rating": 4.06, + "total_grade_count": 62, + "course_ratings": { + "CHEM5341": 3.78, + "CHEM3341": 4.15 + } + } + ], + "jonas hedlund": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2413095", + "quality_rating": 3.2, + "difficulty_rating": 3.9, + "would_take_again": 58, + "original_rmp_format": "Jonas Hedlund", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 12, + "tags": [ + "Skip class? You won't pass.", + "Amazing lectures ", + "Respected", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "2413095", + "instructor_id": "jxh180030", + "overall_grade_rating": 3.73, + "total_grade_count": 138, + "course_ratings": { + "ECON6301": 3.74, + "ECON5321": 3.92, + "ECON7391": 4.7, + "ECON3310": 3.6 + } + } + ], + "murat kantarcioglu": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1073398", + "quality_rating": 2.4, + "difficulty_rating": 4.3, + "would_take_again": 25, + "original_rmp_format": "Murat Kantarcioglu", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 28, + "tags": ["Tough grader", "Get ready to read", "Hilarious", "Lecture heavy", "Test heavy"], + "rmp_id": "1073398", + "instructor_id": "mxk055100", + "overall_grade_rating": 4.44, + "total_grade_count": 219, + "course_ratings": { + "CS6360": 4.4, + "CS6348": 4.58, + "CS4347": 4.1 + } + } + ], + "shujian guo": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2836273", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Shujian Guo", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 2, + "tags": [ + "Lecture heavy", + "Get ready to read", + "Participation matters", + "Lots of homework", + "Test heavy" + ], + "rmp_id": "2836273", + "instructor_id": "sxg180004", + "overall_grade_rating": 3.58, + "total_grade_count": 45, + "course_ratings": { + "FIN3320": 3.58 + } + } + ], + "cameron ayres": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2861990", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Cameron Ayres", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 1, + "tags": ["Group projects", "Inspirational", "Caring"], + "rmp_id": "2861990", + "instructor_id": "cma092020", + "overall_grade_rating": 4.65, + "total_grade_count": 322, + "course_ratings": { + "ATCM2303": 4.7, + "ATCM4319": 4.88, + "ANGM3367": 3.93 + } + } + ], + "indranil bardhan": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1311007", + "quality_rating": 3.4, + "difficulty_rating": 3.5, + "would_take_again": 71, + "original_rmp_format": "Indranil Bardhan", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 10, + "tags": [ + "Clear grading criteria", + "Tough grader", + "Get ready to read", + "Group projects", + "Accessible outside class" + ], + "rmp_id": "1311007", + "instructor_id": "bardhan", + "overall_grade_rating": 4.36, + "total_grade_count": 150, + "course_ratings": { + "BUAN6356": 4.2, + "HMGT6327": 4.83 + } + } + ], + "bhanu kapoor": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1437047", + "quality_rating": 3.3, + "difficulty_rating": 2.2, + "would_take_again": 63, + "original_rmp_format": "Bhanu Kapoor", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 23, + "tags": [ + "Participation matters", + "Clear grading criteria", + "Lots of homework", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "1437047", + "instructor_id": "bxk101000", + "overall_grade_rating": 4.57, + "total_grade_count": 364, + "course_ratings": { + "SE3377": 4.11, + "CS3377": 4.56, + "SYSM6306": 4.8 + } + } + ], + "kristen lawson": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1646115", + "quality_rating": 3.9, + "difficulty_rating": 2.6, + "would_take_again": 53, + "original_rmp_format": "Kristen Lawson", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 85, + "tags": [ + "Gives good feedback", + "Tough grader", + "Group projects", + "Caring", + "Lots of homework" + ], + "rmp_id": "1646115", + "instructor_id": "kal110030", + "overall_grade_rating": 4.49, + "total_grade_count": 681, + "course_ratings": { + "BCOM4350": 4.68, + "BCOM3310": 4.89, + "BCOM3100": 4.61, + "BCOM3200": 4.52, + "BCOM3300": 3.49, + "ITSS3200": 4.77, + "BCOM4300": 4.29 + } + } + ], + "stephen molina": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2161911", + "quality_rating": 3.1, + "difficulty_rating": 2.6, + "would_take_again": 42, + "original_rmp_format": "Stephen Molina", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 19, + "tags": [ + "Participation matters", + "Graded by few things", + "Lecture heavy", + "Get ready to read", + "Skip class? You won't pass." + ], + "rmp_id": "2161911", + "instructor_id": "sxm163630", + "overall_grade_rating": 4.7, + "total_grade_count": 718, + "course_ratings": { + "MECO6318": 4.48, + "ENGY3300": 4.22, + "ENGY6330": 4.8, + "MECO4342": 4.67, + "BLAW4301": 4.65, + "FIN3340": 4.76, + "ENGY6332": 5.0, + "FIN4313": 4.44, + "ENGY3302": 4.43 + } + } + ], + "ashiq ali": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2087437", + "quality_rating": 3.8, + "difficulty_rating": 2.6, + "would_take_again": 83, + "original_rmp_format": "Ashiq Ali", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 14, + "tags": [ + "Clear grading criteria", + "Lecture heavy", + "Get ready to read", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "2087437", + "instructor_id": "axa042200", + "overall_grade_rating": 4.1, + "total_grade_count": 535, + "course_ratings": { + "ACCT6301": 4.09, + "ACCT6201": 4.22, + "ACCT7314": 4.4 + } + } + ], + "kelly grandjean": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2557594", + "quality_rating": 3.9, + "difficulty_rating": 2.6, + "would_take_again": 75, + "original_rmp_format": "Kelly Grandjean", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 12, + "tags": [ + "Get ready to read", + "Participation matters", + "Lots of homework", + "So many papers", + "Caring" + ], + "rmp_id": "2557594", + "instructor_id": "kxg190019", + "overall_grade_rating": 4.4, + "total_grade_count": 528, + "course_ratings": { + "ARTS1301": 4.4 + } + } + ], + "edward harpham": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1078342", + "quality_rating": 4.4, + "difficulty_rating": 3.9, + "would_take_again": 86, + "original_rmp_format": "Edward Harpham", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 10, + "tags": [ + "Get ready to read", + "Respected", + "Skip class? You won't pass.", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "1078342", + "instructor_id": "harpham", + "overall_grade_rating": 4.73, + "total_grade_count": 182, + "course_ratings": { + "GOVT2306": 4.78, + "HONS3199": 4.94, + "HONS3101": 4.58, + "PSCI4370": 4.91, + "PSCI3301": 4.4 + } + } + ], + "yang zhang": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2867031", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Yang Zhang", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 1, + "tags": ["EXTRA CREDIT", "Caring", "Lecture heavy"], + "rmp_id": "2867031", + "instructor_id": "yxz170631", + "overall_grade_rating": 3.96, + "total_grade_count": 117, + "course_ratings": { + "ACCT2301": 3.96 + } + } + ], + "nancy juhn": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/328740", + "quality_rating": 3.5, + "difficulty_rating": 3.2, + "would_take_again": 45, + "original_rmp_format": "Nancy Juhn", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 112, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Lecture heavy", + "Lots of homework", + "Gives good feedback" + ], + "rmp_id": "328740", + "instructor_id": "njuhn", + "overall_grade_rating": 3.27, + "total_grade_count": 722, + "course_ratings": { + "PSY2317": 2.99, + "PSYC6312": 3.92, + "ACN6312": 3.86, + "ACN6313": 4.53, + "PSYC6313": 3.98 + } + } + ], + "norman thompson": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2610332", + "quality_rating": 4.9, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "Norman Thompson", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 8, + "tags": [ + "Gives good feedback", + "Accessible outside class", + "Caring", + "Clear grading criteria", + "Respected" + ], + "rmp_id": "2610332", + "instructor_id": "nxt190023", + "overall_grade_rating": 4.03, + "total_grade_count": 111, + "course_ratings": { + "ITSS3300": 4.03 + } + } + ], + "thanh hoang": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2720674", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Thanh Hoang", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 3, + "tags": [ + "Gives good feedback", + "Clear grading criteria", + "Get ready to read", + "Participation matters", + "Inspirational" + ], + "rmp_id": "2720674", + "instructor_id": "tth180005", + "overall_grade_rating": 4.35, + "total_grade_count": 123, + "course_ratings": { + "PA3333": 4.36, + "PA3380": 4.51, + "PA4355": 4.16 + } + } + ], + "vince mozik": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2408018", + "quality_rating": 3.4, + "difficulty_rating": 3.4, + "would_take_again": 58, + "original_rmp_format": "Vince Mozik", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 12, + "tags": [ + "Get ready to read", + "Participation matters", + "Gives good feedback", + "EXTRA CREDIT", + "Caring" + ], + "rmp_id": "2408018", + "instructor_id": "vcm170130", + "overall_grade_rating": 4.06, + "total_grade_count": 135, + "course_ratings": { + "OPRE3310": 4.02, + "OPRE3320": 4.34 + } + } + ], + "christopher mace": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2642497", + "quality_rating": 3.3, + "difficulty_rating": 3, + "would_take_again": 71, + "original_rmp_format": "Christopher Mace", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 7, + "tags": [ + "Test heavy", + "Graded by few things", + "Tough grader", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "2642497", + "instructor_id": "cxm200014", + "overall_grade_rating": 3.75, + "total_grade_count": 471, + "course_ratings": { + "FIN3320": 3.75 + } + } + ], + "ashley mann": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2550658", + "quality_rating": 2, + "difficulty_rating": 2.2, + "would_take_again": 17, + "original_rmp_format": "Ashley Mann", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 6, + "tags": ["Lots of homework", "Group projects", "Clear grading criteria", "So many papers"], + "rmp_id": "2550658", + "instructor_id": "axm180114", + "overall_grade_rating": 3.85, + "total_grade_count": 276, + "course_ratings": { + "ECS1100": 3.85 + } + } + ], + "soohyun choi": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2703831", + "quality_rating": 3.5, + "difficulty_rating": 2.5, + "would_take_again": 75, + "original_rmp_format": "Soohyun Choi", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 4, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "2703831", + "instructor_id": "sxc177830", + "overall_grade_rating": 4.31, + "total_grade_count": 154, + "course_ratings": { + "ECON2302": 4.41, + "ECON4302": 3.67 + } + } + ], + "zihao qu": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2774736", + "quality_rating": 3.4, + "difficulty_rating": 3.6, + "would_take_again": 60, + "original_rmp_format": "Zihao Qu", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 5, + "tags": [ + "Lecture heavy", + "Participation matters", + "Clear grading criteria", + "Respected", + "Test heavy" + ], + "rmp_id": "2774736", + "instructor_id": "zxq180000", + "overall_grade_rating": 4.27, + "total_grade_count": 79, + "course_ratings": { + "OPRE3360": 4.27 + } + } + ], + "siri wilder": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2706447", + "quality_rating": 3.8, + "difficulty_rating": 2.2, + "would_take_again": 60, + "original_rmp_format": "Siri Wilder", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 5, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback", + "Lots of homework", + "Get ready to read" + ], + "rmp_id": "2706447", + "instructor_id": "sxw180033", + "overall_grade_rating": 4.26, + "total_grade_count": 358, + "course_ratings": { + "PSY4346": 4.26 + } + } + ], + "sumit majumdar": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/844898", + "quality_rating": 2.9, + "difficulty_rating": 2.6, + "would_take_again": 73, + "original_rmp_format": "Sumit Majumdar", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 35, + "tags": [ + "Group projects", + "Graded by few things", + "Get ready to read", + "Lecture heavy", + "Tough grader" + ], + "rmp_id": "844898", + "instructor_id": "skm021100", + "overall_grade_rating": 4.74, + "total_grade_count": 384, + "course_ratings": { + "ITSS4370": 4.67, + "MIS6302": 4.88, + "ACCT6349": 4.85, + "BPS4305": 4.6 + } + } + ], + "josef nguyen": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2394546", + "quality_rating": 5, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "Josef Nguyen", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 7, + "tags": [ + "Get ready to read", + "Gives good feedback", + "Amazing lectures ", + "Clear grading criteria", + "Respected" + ], + "rmp_id": "2394546", + "instructor_id": "jdn160330", + "overall_grade_rating": 4.67, + "total_grade_count": 239, + "course_ratings": { + "ATCM6336": 3.68, + "ATCM2321": 4.54, + "HONS3199": 4.86, + "ATCM6375": 5.0, + "ATCM6342": 4.79, + "ATCM4320": 4.72, + "ATCM4334": 5.0, + "ATCM2325": 4.56 + } + } + ], + "xiaofei zhao": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1936708", + "quality_rating": 4.8, + "difficulty_rating": 3.2, + "would_take_again": 100, + "original_rmp_format": "Xiaofei Zhao", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 5, + "tags": [ + "Tough grader", + "Would take again", + "Beware of pop quizzes", + "Caring", + "Participation matters" + ], + "rmp_id": "1936708", + "instructor_id": "xxz137630", + "overall_grade_rating": 3.91, + "total_grade_count": 117, + "course_ratings": { + "FIN3320": 3.91 + } + } + ], + "tong he": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/2793430", + "quality_rating": 5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Tong He", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 2, + "tags": [ + "Group projects", + "Get ready to read", + "Participation matters", + "Caring", + "Accessible outside class" + ], + "rmp_id": "2793430", + "instructor_id": "txh172730", + "overall_grade_rating": 4.05, + "total_grade_count": 35, + "course_ratings": { + "LIT2331": 4.05 + } + } + ], + "margaret smallwood": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1487514", + "quality_rating": 4.6, + "difficulty_rating": 2, + "would_take_again": 86, + "original_rmp_format": "Margaret Smallwood", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 107, + "tags": [ + "Gives good feedback", + "Respected", + "Clear grading criteria", + "Caring", + "Group projects" + ], + "rmp_id": "1487514", + "instructor_id": "meg012400", + "overall_grade_rating": 4.32, + "total_grade_count": 1165, + "course_ratings": { + "BCOM3310": 4.57, + "ACCT3200": 4.52, + "BCOM3300": 4.14, + "MAS6105": 4.87, + "BCOM4300": 3.75, + "BCOM4350": 4.66, + "BA3200": 4.55 + } + } + ], + "bruce jacobs": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/359620", + "quality_rating": 4.1, + "difficulty_rating": 2.9, + "would_take_again": 62, + "original_rmp_format": "Bruce Jacobs", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 29, + "tags": [ + "Graded by few things", + "Group projects", + "Lecture heavy", + "Skip class? You won't pass.", + "Clear grading criteria" + ], + "rmp_id": "359620", + "instructor_id": "baj034000", + "overall_grade_rating": 3.68, + "total_grade_count": 296, + "course_ratings": { + "CRIM3326": 3.6, + "CRIM6303": 4.64, + "CRIM3312": 3.29, + "CRIM7342": 4.29, + "CRIM6315": 4.8 + } + } + ], + "sonja corbin": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2095018", + "quality_rating": 3.7, + "difficulty_rating": 2.5, + "would_take_again": 69, + "original_rmp_format": "Sonja Corbin", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 16, + "tags": [ + "Participation matters", + "Group projects", + "Gives good feedback", + "Tough grader", + "Clear grading criteria" + ], + "rmp_id": "2095018", + "instructor_id": "scc130530", + "overall_grade_rating": 4.2, + "total_grade_count": 276, + "course_ratings": { + "MKT4380": 4.35, + "MKT4395": 4.65, + "MKT3300": 4.05, + "MKT4340": 4.16 + } + } + ], + "robert taylor": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/1184132", + "quality_rating": 4, + "difficulty_rating": 2.5, + "would_take_again": 75, + "original_rmp_format": "Robert Taylor", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 13, + "tags": [ + "Get ready to read", + "Clear grading criteria", + "Graded by few things", + "Amazing lectures ", + "Inspirational" + ], + "rmp_id": "1184132", + "instructor_id": "rwt092000", + "overall_grade_rating": 3.96, + "total_grade_count": 423, + "course_ratings": { + "CRIM2313": 3.7, + "CRIM4336": 4.06, + "CRIM4396": 3.88, + "CRIM6390": 3.25 + } + } + ], + "nishant kathuria": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/2563392", + "quality_rating": 4.7, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Nishant Kathuria", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 3, + "tags": [ + "Accessible outside class", + "Clear grading criteria", + "Gives good feedback", + "Participation matters", + "Amazing lectures " + ], + "rmp_id": "2563392", + "instructor_id": "nxk174330", + "overall_grade_rating": 4.07, + "total_grade_count": 42, + "course_ratings": { + "BPS4305": 4.07 + } + } + ], + "armin zare": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2724198", + "quality_rating": 2.3, + "difficulty_rating": 4.5, + "would_take_again": 27, + "original_rmp_format": "Armin Zare", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 11, + "tags": [ + "Lecture heavy", + "Skip class? You won't pass.", + "Test heavy", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "2724198", + "instructor_id": "axz190009", + "overall_grade_rating": 3.56, + "total_grade_count": 104, + "course_ratings": { + "MECH2340": 3.48, + "MECH3340": 3.48, + "MECH6323": 4.29 + } + } + ], + "gregory dussor": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2056837", + "quality_rating": 4.5, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "Gregory Dussor", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 10, + "tags": [ + "Amazing lectures ", + "Hilarious", + "Skip class? You won't pass.", + "Clear grading criteria", + "Inspirational" + ], + "rmp_id": "2056837", + "instructor_id": "gxd141130", + "overall_grade_rating": 4.64, + "total_grade_count": 433, + "course_ratings": { + "NSC4363": 4.6, + "ACN6372": 4.78, + "ACN7343": 5.0, + "HCS7343": 5.0 + } + } + ], + "andrian marcus": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2295056", + "quality_rating": 1.9, + "difficulty_rating": 3.9, + "would_take_again": 22, + "original_rmp_format": "Andrian Marcus", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 9, + "tags": [ + "Group projects", + "Tough grader", + "Lots of homework", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "2295056", + "instructor_id": "axm141731", + "overall_grade_rating": 4.25, + "total_grade_count": 170, + "course_ratings": { + "CS6356": 4.86, + "SE6356": 3.26, + "CS3354": 4.15, + "CE3354": 3.67 + } + } + ], + "zoey hoggatt": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2736393", + "quality_rating": 4, + "difficulty_rating": 2.3, + "would_take_again": 75, + "original_rmp_format": "Zoey Hoggatt", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 4, + "tags": [ + "Caring", + "Gives good feedback", + "Tough grader", + "Get ready to read", + "EXTRA CREDIT" + ], + "rmp_id": "2736393", + "instructor_id": "zch150030", + "overall_grade_rating": 4.98, + "total_grade_count": 44, + "course_ratings": { + "ATCM2350": 4.98 + } + } + ], + "mark thouin": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1165787", + "quality_rating": 3.9, + "difficulty_rating": 2.6, + "would_take_again": 57, + "original_rmp_format": "Mark Thouin", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 88, + "tags": [ + "Tough grader", + "Respected", + "Gives good feedback", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "1165787", + "instructor_id": "mxt083000", + "overall_grade_rating": 4.46, + "total_grade_count": 1295, + "course_ratings": { + "MIS6360": 4.51, + "MIS6324": 4.54, + "ITSS3300": 4.01, + "BUAN6324": 4.69, + "OPRE6399": 4.58, + "BUAN6356": 4.55, + "MIS6356": 4.63 + } + } + ], + "nathan dodge": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/186987", + "quality_rating": 4.4, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Nathan Dodge", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 92, + "tags": [ + "EXTRA CREDIT", + "Respected", + "Skip class? You won't pass.", + "Lots of homework", + "Hilarious" + ], + "rmp_id": "186987", + "instructor_id": "dodge", + "overall_grade_rating": 3.71, + "total_grade_count": 326, + "course_ratings": { + "EE2310": 3.79, + "CE2310": 3.61 + } + } + ], + "james florence": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1878201", + "quality_rating": 3.1, + "difficulty_rating": 3.6, + "would_take_again": 42, + "original_rmp_format": "James Florence", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 61, + "tags": [ + "Tough grader", + "Gives good feedback", + "Respected", + "Amazing lectures ", + "Lots of homework" + ], + "rmp_id": "1878201", + "instructor_id": "jmf130530", + "overall_grade_rating": 3.47, + "total_grade_count": 842, + "course_ratings": { + "EE1100": 3.83, + "CE1100": 3.77, + "ENGR3300": 2.69, + "EE4301": 2.72 + } + } + ], + "dinesh bhatia": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/131862", + "quality_rating": 3.7, + "difficulty_rating": 3.1, + "would_take_again": 44, + "original_rmp_format": "Dinesh Bhatia", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 24, + "tags": [ + "Tough grader", + "Test heavy", + "Amazing lectures ", + "Group projects", + "Lots of homework" + ], + "rmp_id": "131862", + "instructor_id": "dinesh", + "overall_grade_rating": 4.13, + "total_grade_count": 449, + "course_ratings": { + "EEDG6370": 4.17, + "CE3320": 3.45, + "EE3320": 3.43, + "CE6306": 4.69, + "EEDG6306": 4.92, + "CE4389": 4.63, + "CE4388": 4.54, + "EE4388": 4.75, + "EE4389": 4.68 + } + } + ], + "lee libby": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2217513", + "quality_rating": 2.8, + "difficulty_rating": 2.8, + "would_take_again": 47, + "original_rmp_format": "Lee Libby", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 17, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Group projects", + "Gives good feedback", + "Participation matters" + ], + "rmp_id": "2217513", + "instructor_id": "llibby", + "overall_grade_rating": 3.77, + "total_grade_count": 153, + "course_ratings": { + "ECS3390": 3.77 + } + } + ], + "jeong bong lee": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1969261", + "quality_rating": 4, + "difficulty_rating": 3.4, + "would_take_again": 83, + "original_rmp_format": "Jeong-Bong Lee", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 17, + "tags": [ + "Caring", + "Respected", + "Tough grader", + "Skip class? You won't pass.", + "Amazing lectures " + ], + "rmp_id": "1969261", + "instructor_id": "jblee", + "overall_grade_rating": 3.64, + "total_grade_count": 457, + "course_ratings": { + "EE3110": 4.02, + "CE3110": 4.47, + "CE3310": 3.54, + "EE3310": 3.33, + "MECH4370": 3.86, + "EE4371": 3.39 + } + } + ], + "john hansen": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2164805", + "quality_rating": 4.1, + "difficulty_rating": 3.4, + "would_take_again": 86, + "original_rmp_format": "John Hansen", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 7, + "tags": [ + "Amazing lectures ", + "Respected", + "Participation matters", + "Gives good feedback", + "Hilarious" + ], + "rmp_id": "2164805", + "instructor_id": "jxh052100", + "overall_grade_rating": 4.35, + "total_grade_count": 40, + "course_ratings": { + "EESC6366": 4.19, + "CE4389": 4.55, + "EE4389": 4.49 + } + } + ], + "neal skinner": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2533369", + "quality_rating": 3, + "difficulty_rating": 3.7, + "would_take_again": 67, + "original_rmp_format": "Neal Skinner", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 3, + "tags": ["Gives good feedback", "Caring"], + "rmp_id": "2533369", + "instructor_id": "skinner", + "overall_grade_rating": 4.39, + "total_grade_count": 632, + "course_ratings": { + "EE4388": 4.78, + "CE4388": 4.75, + "EE3120": 2.46, + "EE4310": 3.48, + "CE4389": 4.61, + "EE4389": 4.73, + "ENGR2300": 3.59 + } + } + ], + "timothy bray": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/387523", + "quality_rating": 3.7, + "difficulty_rating": 3.4, + "would_take_again": 80, + "original_rmp_format": "Timothy Bray", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 23, + "tags": [ + "Accessible outside class", + "Skip class? You won't pass.", + "Amazing lectures ", + "Clear grading criteria", + "Respected" + ], + "rmp_id": "387523", + "instructor_id": "tmb021000", + "overall_grade_rating": 4.14, + "total_grade_count": 547, + "course_ratings": { + "CRIM1301": 2.99, + "EPPS7313": 4.58, + "EPPS2302": 4.29, + "EPPS6313": 4.4, + "CRIM4322": 4.18, + "CRIM2313": 3.61, + "IPEC4309": 3.88, + "PPOL4311": 3.82 + } + } + ], + "prithi narasimhan": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2029438", + "quality_rating": 3.9, + "difficulty_rating": 3.3, + "would_take_again": 75, + "original_rmp_format": "Prithi Narasimhan", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 58, + "tags": [ + "Amazing lectures ", + "Lots of homework", + "Group projects", + "Gives good feedback", + "Clear grading criteria" + ], + "rmp_id": "2029438", + "instructor_id": "pxn152330", + "overall_grade_rating": 4.41, + "total_grade_count": 725, + "course_ratings": { + "MIS6308": 4.44, + "MIS6316": 4.39, + "ITSS4330": 4.32, + "MIS6330": 4.65 + } + } + ], + "dong li": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2142133", + "quality_rating": 4.5, + "difficulty_rating": 3.9, + "would_take_again": 86, + "original_rmp_format": "Dong Li", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 8, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Respected", + "Skip class? You won't pass.", + "Would take again" + ], + "rmp_id": "2142133", + "instructor_id": "dxl145430", + "overall_grade_rating": 3.95, + "total_grade_count": 417, + "course_ratings": { + "ECON7309": 4.58, + "ECON4355": 3.78, + "ECON3310": 3.15, + "ECON7311": 4.77 + } + } + ], + "terri gladden": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/2737199", + "quality_rating": 5, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Terri Gladden", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 4, + "tags": [ + "Group projects", + "Amazing lectures ", + "Inspirational", + "Caring", + "Participation matters" + ], + "rmp_id": "2737199", + "instructor_id": "tsg200001", + "overall_grade_rating": 4.31, + "total_grade_count": 243, + "course_ratings": { + "ED3314": 4.31 + } + } + ], + "emily honea": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2256442", + "quality_rating": 3.8, + "difficulty_rating": 2, + "would_take_again": 75, + "original_rmp_format": "Emily Honea", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 4, + "tags": [ + "EXTRA CREDIT", + "Clear grading criteria", + "Accessible outside class", + "Get ready to read", + "Group projects" + ], + "rmp_id": "2256442", + "instructor_id": "exh150830", + "overall_grade_rating": 4.05, + "total_grade_count": 160, + "course_ratings": { + "COMM1311": 4.05 + } + } + ], + "berrak sisman": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2831354", + "quality_rating": 2, + "difficulty_rating": 3.5, + "would_take_again": 0, + "original_rmp_format": "Berrak Sisman", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 2, + "tags": ["Graded by few things", "Tough grader", "Get ready to read", "Test heavy"], + "rmp_id": "2831354", + "instructor_id": "bxs220043", + "overall_grade_rating": 3.62, + "total_grade_count": 171, + "course_ratings": { + "CE3303": 3.62 + } + } + ], + "scott herndon": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/1450686", + "quality_rating": 4.2, + "difficulty_rating": 2.2, + "would_take_again": 100, + "original_rmp_format": "Scott Herndon", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 16, + "tags": [ + "Gives good feedback", + "Hilarious", + "Participation matters", + "Caring", + "Amazing lectures " + ], + "rmp_id": "1450686", + "instructor_id": "sxh021200", + "overall_grade_rating": 4.06, + "total_grade_count": 108, + "course_ratings": { + "LIT3335": 4.22, + "COMM1311": 3.66, + "COMM1315": 4.12 + } + } + ], + "christian von drathen": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2119585", + "quality_rating": 2.7, + "difficulty_rating": 4.7, + "would_take_again": 50, + "original_rmp_format": "Christian Von Drathen", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 13, + "tags": [ + "Lots of homework", + "Get ready to read", + "Group projects", + "Participation matters", + "Tough grader" + ], + "rmp_id": "2119585", + "instructor_id": "cxv141430", + "overall_grade_rating": 3.87, + "total_grade_count": 222, + "course_ratings": { + "FIN6352": 3.67, + "FIN6356": 4.15, + "FIN6311": 4.06, + "FIN6316": 4.1 + } + } + ], + "caroline austin bolt": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/2137616", + "quality_rating": 3.6, + "difficulty_rating": 3.5, + "would_take_again": 60, + "original_rmp_format": "Caroline Austin-Bolt", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 6, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Get ready to read", + "Gives good feedback", + "Tough grader" + ], + "rmp_id": "2137616", + "instructor_id": "cma052000", + "overall_grade_rating": 4.05, + "total_grade_count": 31, + "course_ratings": { + "LIT2341": 4.05 + } + } + ], + "bin hu": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2445075", + "quality_rating": 3.8, + "difficulty_rating": 4, + "would_take_again": 50, + "original_rmp_format": "Bin Hu", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 4, + "tags": [ + "Group projects", + "Test heavy", + "Tough grader", + "Skip class? You won't pass.", + "Amazing lectures " + ], + "rmp_id": "2445075", + "instructor_id": "bxh180009", + "overall_grade_rating": 4.14, + "total_grade_count": 627, + "course_ratings": { + "OPRE4340": 3.85, + "OPRE6371": 4.29 + } + } + ], + "alejandro zentner": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2435152", + "quality_rating": 3.5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Alejandro Zentner", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 2, + "tags": [ + "Group projects", + "Participation matters", + "Respected", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "2435152", + "instructor_id": "axz051000", + "overall_grade_rating": 4.61, + "total_grade_count": 499, + "course_ratings": { + "MECO6303": 4.54, + "BUAN6312": 4.79, + "MECO7313": 4.93 + } + } + ], + "melanie spence": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/665481", + "quality_rating": 2.5, + "difficulty_rating": 4.3, + "would_take_again": 0, + "original_rmp_format": "Melanie Spence", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 7, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Respected", + "Test heavy" + ], + "rmp_id": "665481", + "instructor_id": "mspence", + "overall_grade_rating": 4.33, + "total_grade_count": 43, + "course_ratings": { + "HDCD6319": 4.33 + } + } + ], + "terry gold": [ + { + "department": "Physical Education", + "url": "https://www.ratemyprofessors.com/professor/1231746", + "quality_rating": 4.6, + "difficulty_rating": 1.4, + "would_take_again": 100, + "original_rmp_format": "Terry Gold", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 7, + "tags": [ + "Participation matters", + "Gives good feedback", + "Hilarious", + "Clear grading criteria", + "Would take again" + ], + "rmp_id": "1231746", + "instructor_id": "yogagold", + "overall_grade_rating": 4.75, + "total_grade_count": 229, + "course_ratings": { + "PHIN1120": 4.76, + "PHIN2125": 4.62 + } + } + ], + "kara oropallo": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2319848", + "quality_rating": 4.3, + "difficulty_rating": 2.2, + "would_take_again": 92, + "original_rmp_format": "Kara Oropallo", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 13, + "tags": ["Gives good feedback", "Respected", "Group projects", "Caring", "Get ready to read"], + "rmp_id": "2319848", + "instructor_id": "kio160030", + "overall_grade_rating": 4.58, + "total_grade_count": 648, + "course_ratings": { + "ATCM2303": 4.52, + "ATCM3303": 4.71, + "ATCM4317": 5.0, + "ATCM4397": 4.89, + "ATCM4395": 4.61, + "ATCM3301": 4.41 + } + } + ], + "christopher camacho": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2132705", + "quality_rating": 4.3, + "difficulty_rating": 3.5, + "would_take_again": 89, + "original_rmp_format": "Christopher Camacho", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 10, + "tags": [ + "Gives good feedback", + "Hilarious", + "Caring", + "Tough grader", + "Clear grading criteria" + ], + "rmp_id": "2132705", + "instructor_id": "cjc043000", + "overall_grade_rating": 3.41, + "total_grade_count": 553, + "course_ratings": { + "ATCM3305": 2.83, + "ATCM3308": 2.66, + "ATCM3338": 3.82, + "ATCM4319": 4.52, + "ATCM3306": 2.99, + "ATCM4397": 4.38 + } + } + ], + "jamie field": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2137450", + "quality_rating": 4.1, + "difficulty_rating": 2.4, + "would_take_again": 67, + "original_rmp_format": "Jamie Field", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 5, + "tags": [ + "Get ready to read", + "Clear grading criteria", + "Gives good feedback", + "Inspirational", + "Beware of pop quizzes" + ], + "rmp_id": "2137450", + "instructor_id": "jmf094020", + "overall_grade_rating": 3.87, + "total_grade_count": 73, + "course_ratings": { + "ATCM3301": 3.87 + } + } + ], + "joseph nketia": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2357463", + "quality_rating": 2.8, + "difficulty_rating": 3, + "would_take_again": 45, + "original_rmp_format": "Joseph Nketia", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 11, + "tags": [ + "Lots of homework", + "Test heavy", + "Get ready to read", + "Lecture heavy", + "Participation matters" + ], + "rmp_id": "2357463", + "instructor_id": "jan170230", + "overall_grade_rating": 2.55, + "total_grade_count": 69, + "course_ratings": { + "ACCT4337": 3.42, + "FIN3320": 2.08 + } + } + ], + "lucien thompson": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2289377", + "quality_rating": 3.9, + "difficulty_rating": 3.6, + "would_take_again": 67, + "original_rmp_format": "Lucien Thompson", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 12, + "tags": [ + "Lecture heavy", + "Skip class? You won't pass.", + "Test heavy", + "Amazing lectures ", + "Graded by few things" + ], + "rmp_id": "2289377", + "instructor_id": "tres", + "overall_grade_rating": 4.48, + "total_grade_count": 424, + "course_ratings": { + "HCS6346": 4.48, + "ACN6346": 4.55, + "HCS7351": 5.0, + "NSC4363": 4.39, + "ACN7343": 4.45, + "HCS7343": 4.66 + } + } + ], + "nikki delk": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1950764", + "quality_rating": 4.7, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Nikki Delk", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 6, + "tags": [ + "Amazing lectures ", + "Lecture heavy", + "EXTRA CREDIT", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "1950764", + "instructor_id": "nad140230", + "overall_grade_rating": 4.29, + "total_grade_count": 810, + "course_ratings": { + "BIOL3102": 4.11, + "BIOL3302": 4.33, + "BIOL5440": 4.42 + } + } + ], + "bryan chastain": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/1627666", + "quality_rating": 4.2, + "difficulty_rating": 2.2, + "would_take_again": 40, + "original_rmp_format": "Bryan Chastain", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 18, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Caring", + "Group projects" + ], + "rmp_id": "1627666", + "instructor_id": "bjc062000", + "overall_grade_rating": 3.83, + "total_grade_count": 147, + "course_ratings": { + "GISC6317": 3.69, + "GISC4317": 3.79, + "EPPS6317": 4.72, + "GISC4382": 2.95, + "GISC4325": 4.17 + } + } + ], + "dan moldovan": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1703544", + "quality_rating": 2.1, + "difficulty_rating": 4.1, + "would_take_again": 25, + "original_rmp_format": "Dan Moldovan", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 29, + "tags": [ + "Tough grader", + "Test heavy", + "Get ready to read", + "Tests are tough", + "Graded by few things" + ], + "rmp_id": "1703544", + "instructor_id": "moldovan", + "overall_grade_rating": 4.0, + "total_grade_count": 520, + "course_ratings": { + "CS6320": 4.11, + "CS4365": 3.38, + "CS6364": 4.44 + } + } + ], + "jessica corey": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2795042", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Jessica Corey", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Hilarious", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2795042", + "instructor_id": "jxc190009", + "overall_grade_rating": 4.4, + "total_grade_count": 187, + "course_ratings": { + "CRIM3301": 4.37, + "CRIM3320": 4.47, + "CRIM2316": 4.24, + "CRIM4311": 4.17 + } + } + ], + "john eaton": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2717075", + "quality_rating": 4.3, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "John Eaton", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 3, + "tags": ["Respected", "EXTRA CREDIT", "Gives good feedback", "Inspirational", "Caring"], + "rmp_id": "2717075", + "instructor_id": "jme130030", + "overall_grade_rating": 3.89, + "total_grade_count": 371, + "course_ratings": { + "GOVT2305": 4.02, + "GOVT2306": 3.79 + } + } + ], + "susan chizeck": [ + { + "department": "Not Specified", + "url": "https://www.ratemyprofessors.com/professor/267759", + "quality_rating": 4.1, + "difficulty_rating": 1.2, + "would_take_again": 100, + "original_rmp_format": "Susan Chizeck", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 9, + "tags": ["Clear grading criteria", "Gives good feedback", "Amazing lectures ", "Respected"], + "rmp_id": "267759", + "instructor_id": "chizeck", + "overall_grade_rating": 4.69, + "total_grade_count": 31, + "course_ratings": { + "BIS1100": 4.69 + } + } + ], + "maryam ahmadi": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2340428", + "quality_rating": 4.6, + "difficulty_rating": 2.4, + "would_take_again": 86, + "original_rmp_format": "Maryam Ahmadi", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 7, + "tags": [ + "EXTRA CREDIT", + "Caring", + "Skip class? You won't pass.", + "Amazing lectures ", + "Beware of pop quizzes" + ], + "rmp_id": "2340428", + "instructor_id": "mxa143930", + "overall_grade_rating": 3.55, + "total_grade_count": 98, + "course_ratings": { + "ECON2302": 3.55 + } + } + ], + "naresh pandey": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2736668", + "quality_rating": 5, + "difficulty_rating": 2.2, + "would_take_again": 100, + "original_rmp_format": "Naresh Pandey", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 14, + "tags": ["Inspirational", "Caring", "Respected", "Group projects", "Amazing lectures "], + "rmp_id": "2736668", + "instructor_id": "nkp210001", + "overall_grade_rating": 4.86, + "total_grade_count": 187, + "course_ratings": { + "BPS4395": 4.95, + "OPRE4362": 4.44, + "ITSS4395": 4.92 + } + } + ], + "timothy christopher": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1710260", + "quality_rating": 3.2, + "difficulty_rating": 2.4, + "would_take_again": 0, + "original_rmp_format": "Timothy Christopher", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 7, + "tags": [ + "Tough grader", + "Participation matters", + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Clear grading criteria" + ], + "rmp_id": "1710260", + "instructor_id": "khimbar", + "overall_grade_rating": 4.34, + "total_grade_count": 645, + "course_ratings": { + "ATCM1100": 3.21, + "ATCM4365": 4.14, + "ATCM6343": 5.0, + "ATCM3365": 4.42, + "ANGM3365": 4.58, + "ANGM4365": 4.45, + "ATCM4376": 4.88, + "ATCM6335": 3.75, + "ATCM4375": 3.81 + } + } + ], + "daniel sibley": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2370756", + "quality_rating": 3.8, + "difficulty_rating": 2.3, + "would_take_again": 75, + "original_rmp_format": "Daniel Sibley", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 4, + "tags": [ + "Participation matters", + "Graded by few things", + "Get ready to read", + "Skip class? You won't pass.", + "Caring" + ], + "rmp_id": "2370756", + "instructor_id": "dcs170002", + "overall_grade_rating": 4.65, + "total_grade_count": 584, + "course_ratings": { + "ENGY3301": 4.49, + "ENGY6330": 4.85, + "ENGY3330": 4.31, + "ENGY3340": 4.55, + "MECO6318": 4.8, + "FIN6335": 4.67, + "ENGY3302": 4.51, + "FIN4313": 4.54, + "FIN6336": 4.68, + "ENGY4313": 4.67 + } + } + ], + "meghan swanson": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2584508", + "quality_rating": 4.5, + "difficulty_rating": 3.5, + "would_take_again": 100, + "original_rmp_format": "Meghan Swanson", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 2, + "tags": ["Get ready to read", "Group projects", "Hilarious", "Caring", "Respected"], + "rmp_id": "2584508", + "instructor_id": "mrs180008", + "overall_grade_rating": 3.8, + "total_grade_count": 140, + "course_ratings": { + "CLDP4344": 3.86, + "PSY4344": 3.77 + } + } + ], + "massimo fischetti": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2001788", + "quality_rating": 2.1, + "difficulty_rating": 3.9, + "would_take_again": 11, + "original_rmp_format": "Massimo Fischetti", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 15, + "tags": [ + "Get ready to read", + "Lots of homework", + "Skip class? You won't pass.", + "Test heavy", + "Tough grader" + ], + "rmp_id": "2001788", + "instructor_id": "mvf100020", + "overall_grade_rating": 3.41, + "total_grade_count": 245, + "course_ratings": { + "ENGR3300": 3.24, + "MSEN6319": 3.71, + "MSEN6323": 4.75 + } + } + ], + "carle shi": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2728148", + "quality_rating": 4.5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Carle Shi", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 2, + "tags": [ + "Gives good feedback", + "Clear grading criteria", + "Caring", + "Accessible outside class" + ], + "rmp_id": "2728148", + "instructor_id": "cxs174230", + "overall_grade_rating": 4.84, + "total_grade_count": 122, + "course_ratings": { + "ARTS3341": 4.84 + } + } + ], + "chadwin young": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2134529", + "quality_rating": 5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Chadwin Young", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 2, + "tags": ["Clear grading criteria", "Caring", "Lecture heavy"], + "rmp_id": "2134529", + "instructor_id": "cdy120030", + "overall_grade_rating": 4.4, + "total_grade_count": 492, + "course_ratings": { + "EE4330": 4.37, + "CE4204": 4.78, + "EE4204": 4.21, + "EEMF6327": 4.71 + } + } + ], + "paul stanford": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/708615", + "quality_rating": 3.7, + "difficulty_rating": 2.9, + "would_take_again": 67, + "original_rmp_format": "Paul Stanford", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 85, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "Clear grading criteria", + "Lots of homework", + "Hilarious" + ], + "rmp_id": "708615", + "instructor_id": "phs031000", + "overall_grade_rating": 3.32, + "total_grade_count": 303, + "course_ratings": { + "MATH1325": 3.42, + "MATH3323": 2.67 + } + } + ], + "rashmi chordiya": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2203013", + "quality_rating": 4.7, + "difficulty_rating": 2.8, + "would_take_again": 90, + "original_rmp_format": "Rashmi Chordiya", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 10, + "tags": [ + "Caring", + "Gives good feedback", + "Inspirational", + "Participation matters", + "Amazing lectures " + ], + "rmp_id": "2203013", + "instructor_id": "rvc140130", + "overall_grade_rating": 4.36, + "total_grade_count": 82, + "course_ratings": { + "PA3380": 4.36 + } + } + ], + "sunyoung shin": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/2283639", + "quality_rating": 2.9, + "difficulty_rating": 3.4, + "would_take_again": 50, + "original_rmp_format": "Sunyoung Shin", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 16, + "tags": [ + "Test heavy", + "Skip class? You won't pass.", + "Graded by few things", + "Caring", + "Lecture heavy" + ], + "rmp_id": "2283639", + "instructor_id": "sxs177233", + "overall_grade_rating": 3.81, + "total_grade_count": 274, + "course_ratings": { + "STAT2332": 3.56, + "STAT5352": 4.22, + "STAT4355": 4.04 + } + } + ], + "gail tillman": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1726145", + "quality_rating": 5, + "difficulty_rating": 2.4, + "would_take_again": 100, + "original_rmp_format": "Gail Tillman", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 8, + "tags": [ + "Gives good feedback", + "Accessible outside class", + "So many papers", + "Caring", + "Clear grading criteria" + ], + "rmp_id": "1726145", + "instructor_id": "gtillman", + "overall_grade_rating": 3.96, + "total_grade_count": 181, + "course_ratings": { + "PSY3393": 3.96 + } + } + ], + "swati biswas": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/1767249", + "quality_rating": 3, + "difficulty_rating": 3.7, + "would_take_again": 46, + "original_rmp_format": "Swati Biswas", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 23, + "tags": [ + "Tough grader", + "Participation matters", + "Skip class? You won't pass.", + "Clear grading criteria", + "Lots of homework" + ], + "rmp_id": "1767249", + "instructor_id": "sxb125731", + "overall_grade_rating": 3.53, + "total_grade_count": 318, + "course_ratings": { + "STAT6337": 3.62, + "STAT6348": 3.86, + "STAT2332": 3.44, + "STAT4352": 1.99 + } + } + ], + "gregory newman": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2830127", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Gregory Newman", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 1, + "tags": ["Tough grader", "Get ready to read"], + "rmp_id": "2830127", + "instructor_id": "gxn220005", + "overall_grade_rating": 3.79, + "total_grade_count": 48, + "course_ratings": { + "CS4390": 3.79 + } + } + ], + "gretchen ladd": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/1890559", + "quality_rating": 4.3, + "difficulty_rating": 1.6, + "would_take_again": 82, + "original_rmp_format": "Gretchen Ladd", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 19, + "tags": [ + "Caring", + "Amazing lectures ", + "Would take again", + "Inspirational", + "Clear grading criteria" + ], + "rmp_id": "1890559", + "instructor_id": "gcl140130", + "overall_grade_rating": 4.6, + "total_grade_count": 70, + "course_ratings": { + "PSY4332": 4.6 + } + } + ], + "jason cirilo": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2389908", + "quality_rating": 2.3, + "difficulty_rating": 3, + "would_take_again": 33, + "original_rmp_format": "JASON CIRILO", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 3, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Gives good feedback", + "Inspirational", + "Lots of homework" + ], + "rmp_id": "2389908", + "instructor_id": "jmc180002", + "overall_grade_rating": 4.73, + "total_grade_count": 576, + "course_ratings": { + "MAS6102": 4.73 + } + } + ], + "aage moller": [ + { + "department": "Medicine", + "url": "https://www.ratemyprofessors.com/professor/1010507", + "quality_rating": 4, + "difficulty_rating": 2.4, + "would_take_again": 92, + "original_rmp_format": "Aage Moller", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 35, + "tags": ["Respected", "Caring", "Inspirational", "Graded by few things", "Tough grader"], + "rmp_id": "1010507", + "instructor_id": "amoller", + "overall_grade_rating": 4.83, + "total_grade_count": 908, + "course_ratings": { + "ACN6374": 4.67, + "NSC4373": 4.91, + "HCS7372": 4.94, + "ACN6373": 4.9, + "NSC4382": 4.57 + } + } + ], + "muhammad sabir": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2290167", + "quality_rating": 2.5, + "difficulty_rating": 3.7, + "would_take_again": 36, + "original_rmp_format": "Muhammad Sabir", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 11, + "tags": [ + "Tough grader", + "Lots of homework", + "Lecture heavy", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "2290167", + "instructor_id": "mfs170430", + "overall_grade_rating": 4.32, + "total_grade_count": 220, + "course_ratings": { + "BUAN6341": 4.12, + "BUAN6390": 4.71 + } + } + ], + "alisa bovda": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2582587", + "quality_rating": 1.7, + "difficulty_rating": 4.7, + "would_take_again": 14, + "original_rmp_format": "Alisa Bovda", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 7, + "tags": [ + "Tough grader", + "So many papers", + "Get ready to read", + "Lots of homework", + "Participation matters" + ], + "rmp_id": "2582587", + "instructor_id": "ayb091020", + "overall_grade_rating": 3.16, + "total_grade_count": 108, + "course_ratings": { + "RHET1302": 3.87, + "LIT2331": 2.4 + } + } + ], + "amy troutman": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/395458", + "quality_rating": 4.6, + "difficulty_rating": 2.5, + "would_take_again": 60, + "original_rmp_format": "Amy Troutman", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 36, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Tough grader", + "Skip class? You won't pass.", + "Respected" + ], + "rmp_id": "395458", + "instructor_id": "amybass", + "overall_grade_rating": 4.39, + "total_grade_count": 420, + "course_ratings": { + "ACCT6335": 4.68, + "ACCT2301": 4.0 + } + } + ], + "ahmet simsek": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2042590", + "quality_rating": 3.3, + "difficulty_rating": 3.3, + "would_take_again": 65, + "original_rmp_format": "Ahmet Simsek", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 20, + "tags": [ + "Lots of homework", + "Lecture heavy", + "Graded by few things", + "Beware of pop quizzes", + "Test heavy" + ], + "rmp_id": "2042590", + "instructor_id": "axs158032", + "overall_grade_rating": 3.8, + "total_grade_count": 288, + "course_ratings": { + "OPRE3360": 3.61, + "OPRE6304": 4.48 + } + } + ], + "jiapeng he": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2732369", + "quality_rating": 3.7, + "difficulty_rating": 2.3, + "would_take_again": 67, + "original_rmp_format": "Jiapeng He", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 3, + "tags": [ + "Gives good feedback", + "Clear grading criteria", + "Caring", + "Accessible outside class" + ], + "rmp_id": "2732369", + "instructor_id": "jxh176930", + "overall_grade_rating": 3.62, + "total_grade_count": 60, + "course_ratings": { + "ACCT2301": 3.62 + } + } + ], + "yu kwong chiu": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2494670", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Yu-Kwong Chiu", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 1, + "tags": ["EXTRA CREDIT", "Gives good feedback", "Hilarious"], + "rmp_id": "2494670", + "instructor_id": "yxc161331", + "overall_grade_rating": 2.99, + "total_grade_count": 105, + "course_ratings": { + "ATCM3395": 3.11, + "ATCM2335": 2.86 + } + } + ], + "marco tacca": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/617618", + "quality_rating": 4.2, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Marco Tacca", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 13, + "tags": [ + "So many papers", + "Caring", + "Skip class? You won't pass.", + "Group projects", + "Amazing lectures " + ], + "rmp_id": "617618", + "instructor_id": "mtacca", + "overall_grade_rating": 4.65, + "total_grade_count": 1222, + "course_ratings": { + "CE4388": 4.84, + "EE4388": 4.82, + "EE4389": 4.7, + "CE4389": 4.78, + "CE3301": 3.22, + "EE3301": 3.78 + } + } + ], + "john barden": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/906119", + "quality_rating": 4, + "difficulty_rating": 2.7, + "would_take_again": 85, + "original_rmp_format": "John Barden", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 110, + "tags": [ + "Tough grader", + "Hilarious", + "Skip class? You won't pass.", + "Clear grading criteria", + "Respected" + ], + "rmp_id": "906119", + "instructor_id": "jpb063000", + "overall_grade_rating": 4.28, + "total_grade_count": 899, + "course_ratings": { + "ACCT2302": 3.6, + "ACCT6373": 4.37, + "ACCT6301": 4.75 + } + } + ], + "david springate": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1117549", + "quality_rating": 2.4, + "difficulty_rating": 4.4, + "would_take_again": 23, + "original_rmp_format": "David Springate", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 18, + "tags": [ + "Lots of homework", + "Tough grader", + "Participation matters", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "1117549", + "instructor_id": "spring8", + "overall_grade_rating": 4.34, + "total_grade_count": 190, + "course_ratings": { + "FIN6311": 4.13, + "ENTP6311": 4.14, + "FIN6355": 4.43, + "FIN6352": 4.15, + "FIN6357": 4.82, + "FIN6316": 4.54, + "FIN6356": 4.76 + } + } + ], + "ashley lakoduk": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2632422", + "quality_rating": 4.9, + "difficulty_rating": 2.4, + "would_take_again": 100, + "original_rmp_format": "Ashley Lakoduk", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 14, + "tags": [ + "Caring", + "Accessible outside class", + "Gives good feedback", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "2632422", + "instructor_id": "axl200032", + "overall_grade_rating": 4.07, + "total_grade_count": 237, + "course_ratings": { + "BIOL2311": 3.99, + "BIOL3520": 4.25, + "BIOL2281": 4.11, + "BIOL3380": 3.94 + } + } + ], + "yvonne johnson": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/2283640", + "quality_rating": 2.2, + "difficulty_rating": 4, + "would_take_again": 21, + "original_rmp_format": "Yvonne Johnson", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 39, + "tags": [ + "Lecture heavy", + "Skip class? You won't pass.", + "Test heavy", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "2283640", + "instructor_id": "yxj172130", + "overall_grade_rating": 2.82, + "total_grade_count": 310, + "course_ratings": { + "HIST1301": 2.82, + "HIST1302": 2.82 + } + } + ], + "jonas bunte": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2280299", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Jonas Bunte", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 15, + "tags": [ + "Amazing lectures ", + "Caring", + "Gives good feedback", + "Get ready to read", + "Inspirational" + ], + "rmp_id": "2280299", + "instructor_id": "jbb130330", + "overall_grade_rating": 3.99, + "total_grade_count": 180, + "course_ratings": { + "PPPE6301": 3.89, + "IPEC4302": 4.06, + "PPPE6370": 4.03, + "IPEC4301": 3.97 + } + } + ], + "gregory dess": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/704919", + "quality_rating": 3.6, + "difficulty_rating": 4.5, + "would_take_again": 75, + "original_rmp_format": "Gregory Dess", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 28, + "tags": [ + "Tough grader", + "Respected", + "Get ready to read", + "Hilarious", + "Participation matters" + ], + "rmp_id": "704919", + "instructor_id": "ggd021000", + "overall_grade_rating": 4.32, + "total_grade_count": 199, + "course_ratings": { + "BPS6332": 4.22, + "BPS6310": 4.39 + } + } + ], + "sahalie hashim": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/1845092", + "quality_rating": 4.4, + "difficulty_rating": 3.2, + "would_take_again": 50, + "original_rmp_format": "Sahalie Hashim", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 18, + "tags": [ + "Skip class? You won't pass.", + "Gives good feedback", + "Tough grader", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "1845092", + "instructor_id": "sxh126730", + "overall_grade_rating": 4.55, + "total_grade_count": 11, + "course_ratings": { + "CRWT3307": 4.55 + } + } + ], + "sandra pacyna": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2006716", + "quality_rating": 4, + "difficulty_rating": 2.2, + "would_take_again": 74, + "original_rmp_format": "Sandra Pacyna", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 46, + "tags": [ + "Gives good feedback", + "Group projects", + "Respected", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2006716", + "instructor_id": "sxp158130", + "overall_grade_rating": 4.17, + "total_grade_count": 509, + "course_ratings": { + "MKT4330": 4.11, + "MKT3300": 4.24, + "MKT4334": 4.14 + } + } + ], + "misty parker": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/2483792", + "quality_rating": 4.7, + "difficulty_rating": 2.4, + "would_take_again": 92, + "original_rmp_format": "Misty Parker", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 40, + "tags": [ + "Caring", + "EXTRA CREDIT", + "Clear grading criteria", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2483792", + "instructor_id": "mxp045000", + "overall_grade_rating": 4.15, + "total_grade_count": 1194, + "course_ratings": { + "GOVT2107": 3.52, + "GOVT2305": 4.17, + "GOVT2306": 4.22, + "PSCI3364": 3.9, + "EPPS2301": 3.58 + } + } + ], + "duc vu": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2577578", + "quality_rating": 3.9, + "difficulty_rating": 3.7, + "would_take_again": 77, + "original_rmp_format": "Duc Vu", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 13, + "tags": ["Respected", "Gives good feedback", "Caring", "EXTRA CREDIT", "Amazing lectures "], + "rmp_id": "2577578", + "instructor_id": "ddv110020", + "overall_grade_rating": 3.54, + "total_grade_count": 102, + "course_ratings": { + "OPRE3310": 3.54 + } + } + ], + "omid elmi": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2643694", + "quality_rating": 3.3, + "difficulty_rating": 2.7, + "would_take_again": 57, + "original_rmp_format": "Omid Elmi", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 7, + "tags": ["Tough grader", "Group projects", "Lecture heavy", "Test heavy", "EXTRA CREDIT"], + "rmp_id": "2643694", + "instructor_id": "oxe160230", + "overall_grade_rating": 4.14, + "total_grade_count": 110, + "course_ratings": { + "MKT3300": 4.14 + } + } + ], + "adam wright": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2416367", + "quality_rating": 3.4, + "difficulty_rating": 2.9, + "would_take_again": 59, + "original_rmp_format": "Adam Wright", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 17, + "tags": ["So many papers", "Tough grader", "Get ready to read", "EXTRA CREDIT", "Caring"], + "rmp_id": "2416367", + "instructor_id": "amw140430", + "overall_grade_rating": 4.19, + "total_grade_count": 78, + "course_ratings": { + "RHET1302": 4.06, + "CRWT2301": 4.5 + } + } + ], + "rodney andrews": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1485745", + "quality_rating": 4.2, + "difficulty_rating": 3.6, + "would_take_again": 82, + "original_rmp_format": "Rodney Andrews", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 21, + "tags": [ + "Respected", + "Hilarious", + "Tough grader", + "Amazing lectures ", + "Accessible outside class" + ], + "rmp_id": "1485745", + "instructor_id": "rja091000", + "overall_grade_rating": 3.73, + "total_grade_count": 220, + "course_ratings": { + "ECON3310": 3.32, + "ECON4340": 4.32, + "ECON6331": 4.35 + } + } + ], + "elmer polk": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/1443344", + "quality_rating": 4.8, + "difficulty_rating": 1.5, + "would_take_again": 95, + "original_rmp_format": "Elmer Polk", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 53, + "tags": [ + "Clear grading criteria", + "Respected", + "Gives good feedback", + "Accessible outside class", + "Caring" + ], + "rmp_id": "1443344", + "instructor_id": "peo091000", + "overall_grade_rating": 4.48, + "total_grade_count": 1461, + "course_ratings": { + "CRIM3319": 4.59, + "CRIM2316": 4.28, + "CRIM4396": 4.59, + "CRIM6308": 4.9, + "CRIM1301": 4.34, + "CRIM3310": 4.64, + "CRIM2317": 4.18, + "CRIM3302": 4.55, + "CRIM3303": 3.92, + "CRIM6381": 4.72 + } + } + ], + "sam efromovich": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1751238", + "quality_rating": 2.4, + "difficulty_rating": 4.1, + "would_take_again": 40, + "original_rmp_format": "Sam Efromovich", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 15, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Test heavy", + "Tests are tough", + "Clear grading criteria" + ], + "rmp_id": "1751238", + "instructor_id": "sxe062000", + "overall_grade_rating": 3.81, + "total_grade_count": 467, + "course_ratings": { + "STAT4351": 3.14, + "STAT6331": 4.28, + "STAT6344": 4.6, + "STAT4352": 3.8, + "STAT6332": 4.91, + "STAT7336": 4.8 + } + } + ], + "caroline jones": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2801289", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Caroline Jones", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 1, + "tags": ["EXTRA CREDIT", "Clear grading criteria"], + "rmp_id": "2801289", + "instructor_id": "cxj200007", + "overall_grade_rating": 4.74, + "total_grade_count": 107, + "course_ratings": { + "BMEN3331": 4.71, + "BMEN4341": 4.83 + } + } + ], + "duane winkler": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1896152", + "quality_rating": 4.7, + "difficulty_rating": 4, + "would_take_again": 40, + "original_rmp_format": "Duane Winkler", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Test heavy", + "Skip class? You won't pass.", + "Lecture heavy", + "Participation matters" + ], + "rmp_id": "1896152", + "instructor_id": "ddw130330", + "overall_grade_rating": 3.67, + "total_grade_count": 183, + "course_ratings": { + "BIOL6373": 3.88, + "BIOL4461": 3.45 + } + } + ], + "richard treat": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2791910", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Richard Treat", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 1, + "tags": ["Clear grading criteria", "Gives good feedback", "Caring"], + "rmp_id": "2791910", + "instructor_id": "rdt210000", + "overall_grade_rating": 4.25, + "total_grade_count": 51, + "course_ratings": { + "RHET1302": 4.25 + } + } + ], + "ying ma": [ + { + "department": "Languages", + "url": "https://www.ratemyprofessors.com/professor/2794988", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Ying Ma", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 1, + "tags": ["Participation matters", "Clear grading criteria", "Lots of homework"], + "rmp_id": "2794988", + "instructor_id": "yxm171930", + "overall_grade_rating": 4.18, + "total_grade_count": 95, + "course_ratings": { + "RHET1302": 4.17, + "CHIN1311": 4.2 + } + } + ], + "jennifer laprade": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2332424", + "quality_rating": 4.3, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Jennifer Laprade", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Gives good feedback", + "Get ready to read", + "Group projects", + "So many papers" + ], + "rmp_id": "2332424", + "instructor_id": "jml109020", + "overall_grade_rating": 4.24, + "total_grade_count": 135, + "course_ratings": { + "CRIM1307": 3.99, + "CRIM3324": 4.6, + "CRIM3300": 4.25 + } + } + ], + "shaojie tang": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2079359", + "quality_rating": 3.1, + "difficulty_rating": 2.9, + "would_take_again": 45, + "original_rmp_format": "Shaojie Tang", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 13, + "tags": [ + "Amazing lectures ", + "Lecture heavy", + "Graded by few things", + "Tough grader", + "EXTRA CREDIT" + ], + "rmp_id": "2079359", + "instructor_id": "sxt146930", + "overall_grade_rating": 4.47, + "total_grade_count": 220, + "course_ratings": { + "MIS6323": 4.46, + "ITSS4360": 4.48, + "BUAN6341": 4.49 + } + } + ], + "gayle schwark": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2439739", + "quality_rating": 4.7, + "difficulty_rating": 2.4, + "would_take_again": 94, + "original_rmp_format": "Gayle Schwark", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 31, + "tags": [ + "Clear grading criteria", + "Amazing lectures ", + "Gives good feedback", + "Caring", + "Group projects" + ], + "rmp_id": "2439739", + "instructor_id": "gxs180015", + "overall_grade_rating": 4.24, + "total_grade_count": 456, + "course_ratings": { + "PSY2317": 3.95, + "PSY3392": 4.4, + "PSY3393": 4.42 + } + } + ], + "sumit sarkar": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/1859866", + "quality_rating": 2.4, + "difficulty_rating": 3.8, + "would_take_again": 43, + "original_rmp_format": "Sumit Sarkar", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 15, + "tags": [ + "Tough grader", + "Participation matters", + "Get ready to read", + "Tests are tough", + "Group projects" + ], + "rmp_id": "1859866", + "instructor_id": "sumit", + "overall_grade_rating": 4.2, + "total_grade_count": 170, + "course_ratings": { + "MIS6313": 4.2 + } + } + ], + "stefano leonardi": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1889187", + "quality_rating": 4.1, + "difficulty_rating": 2.5, + "would_take_again": 78, + "original_rmp_format": "Stefano Leonardi", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 13, + "tags": ["Group projects", "Beware of pop quizzes", "Caring", "Inspirational", "Hilarious"], + "rmp_id": "1889187", + "instructor_id": "sxl139330", + "overall_grade_rating": 4.01, + "total_grade_count": 245, + "course_ratings": { + "MECH4320": 4.18, + "MECH3315": 3.66, + "MECH6372": 4.18 + } + } + ], + "matthew brown": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/1583297", + "quality_rating": 3.3, + "difficulty_rating": 3.7, + "would_take_again": 50, + "original_rmp_format": "Matthew Brown", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 9, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Respected", + "Group projects" + ], + "rmp_id": "1583297", + "instructor_id": "mxb091000", + "overall_grade_rating": 3.09, + "total_grade_count": 169, + "course_ratings": { + "HUHI7387": 4.51, + "PHIL2303": 2.6, + "PHIL4327": 3.41, + "PHIL6314": 4.25, + "ARHM2343": 2.23, + "PHIL3328": 3.6, + "HIST3328": 2.8, + "PHIL3324": 3.32 + } + } + ], + "john hagen": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1627581", + "quality_rating": 3.6, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "John Hagen", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 7, + "tags": [ + "EXTRA CREDIT", + "Clear grading criteria", + "Gives good feedback", + "Lots of homework", + "Lecture heavy" + ], + "rmp_id": "1627581", + "instructor_id": "jch013200", + "overall_grade_rating": 3.56, + "total_grade_count": 394, + "course_ratings": { + "ACCT4301": 3.23, + "ITSS4301": 4.03, + "ACCT4342": 3.56 + } + } + ], + "james wilt": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1844792", + "quality_rating": 2.9, + "difficulty_rating": 3.6, + "would_take_again": 42, + "original_rmp_format": "James Wilt", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 31, + "tags": [ + "Lots of homework", + "Group projects", + "Tough grader", + "Get ready to read", + "Hilarious" + ], + "rmp_id": "1844792", + "instructor_id": "jcw140130", + "overall_grade_rating": 3.57, + "total_grade_count": 640, + "course_ratings": { + "ECS3361": 3.65, + "MECH2310": 3.22, + "MECH3351": 3.76, + "MECH2320": 3.89 + } + } + ], + "james murdoch": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1113740", + "quality_rating": 4.3, + "difficulty_rating": 3.4, + "would_take_again": 100, + "original_rmp_format": "James Murdoch", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 8, + "tags": ["Clear grading criteria", "Gives good feedback", "Lecture heavy"], + "rmp_id": "1113740", + "instructor_id": "murdoch", + "overall_grade_rating": 4.05, + "total_grade_count": 61, + "course_ratings": { + "ECON4332": 4.19, + "ECON4320": 3.82 + } + } + ], + "mark moonesinghe": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/2330067", + "quality_rating": 3.7, + "difficulty_rating": 2.7, + "would_take_again": 67, + "original_rmp_format": "Mark Moonesinghe", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 6, + "tags": [ + "Clear grading criteria", + "Get ready to read", + "Group projects", + "Respected", + "Lecture heavy" + ], + "rmp_id": "2330067", + "instructor_id": "msm160030", + "overall_grade_rating": 4.31, + "total_grade_count": 361, + "course_ratings": { + "MIS6317": 4.23, + "HMGT6323": 4.55, + "HMGT4321": 4.25 + } + } + ], + "erica armstead": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2643025", + "quality_rating": 2, + "difficulty_rating": 4.7, + "would_take_again": 0, + "original_rmp_format": "Erica Armstead", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 3, + "tags": ["Tough grader", "Group projects", "Lots of homework"], + "rmp_id": "2643025", + "instructor_id": "exa190018", + "overall_grade_rating": 4.03, + "total_grade_count": 156, + "course_ratings": { + "BCOM3310": 4.03 + } + } + ], + "john bell": [ + { + "department": "Physical Education", + "url": "https://www.ratemyprofessors.com/professor/2315480", + "quality_rating": 3.3, + "difficulty_rating": 2.3, + "would_take_again": 33, + "original_rmp_format": "John Bell", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Tough grader", + "Skip class? You won't pass.", + "Graded by few things" + ], + "rmp_id": "2315480", + "instructor_id": "jsb018200", + "overall_grade_rating": 4.57, + "total_grade_count": 48, + "course_ratings": { + "PHIN1121": 4.57 + } + } + ], + "joanna gentsch": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/850354", + "quality_rating": 4.9, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Joanna Gentsch", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 53, + "tags": [ + "Amazing lectures ", + "Caring", + "Respected", + "Clear grading criteria", + "Inspirational" + ], + "rmp_id": "850354", + "instructor_id": "jgentsch", + "overall_grade_rating": 4.61, + "total_grade_count": 607, + "course_ratings": { + "PSY4346": 4.55, + "PSY2301": 4.89, + "HONS3106": 4.72 + } + } + ], + "timothy culver": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1791880", + "quality_rating": 4.1, + "difficulty_rating": 2.3, + "would_take_again": 78, + "original_rmp_format": "Timothy Culver", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 32, + "tags": ["Hilarious", "Gives good feedback", "Caring", "Amazing lectures ", "Inspirational"], + "rmp_id": "1791880", + "instructor_id": "tlc130230", + "overall_grade_rating": 4.81, + "total_grade_count": 444, + "course_ratings": { + "CS6301": 4.81, + "CS4347": 4.81, + "SE4347": 4.93 + } + } + ], + "adam chandler": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2286826", + "quality_rating": 4.5, + "difficulty_rating": 3.3, + "would_take_again": 88, + "original_rmp_format": "Adam Chandler", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 8, + "tags": [ + "Caring", + "Accessible outside class", + "Skip class? You won't pass.", + "Gives good feedback", + "Tough grader" + ], + "rmp_id": "2286826", + "instructor_id": "awc051000", + "overall_grade_rating": 3.8, + "total_grade_count": 1073, + "course_ratings": { + "ATCM3338": 3.7, + "ATCM3367": 3.45, + "ATCM3368": 3.33, + "ATCM4367": 3.39, + "ATCM4368": 4.05, + "ATCM4377": 4.84, + "ATCM3365": 3.99, + "ANGM4367": 3.59, + "ANGM4368": 3.9, + "ANGM4376": 4.98, + "ATCM6349": 4.52, + "ANGM3368": 3.69, + "ATCM4397": 4.12, + "ATCM4374": 4.78, + "ANGM3367": 3.39, + "ANGM4374": 4.15, + "ANGM4377": 4.93, + "ATCM4338": 3.96 + } + } + ], + "tuoc nguyen": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2638967", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 75, + "original_rmp_format": "Tuoc Nguyen", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 4, + "tags": [ + "Get ready to read", + "Tough grader", + "Gives good feedback", + "Participation matters", + "Inspirational" + ], + "rmp_id": "2638967", + "instructor_id": "tkn180000", + "overall_grade_rating": 3.97, + "total_grade_count": 94, + "course_ratings": { + "ATCM2301": 3.99, + "ATCM2302": 3.94 + } + } + ], + "karen prager": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/359619", + "quality_rating": 2.8, + "difficulty_rating": 3.3, + "would_take_again": 16, + "original_rmp_format": "Karen Prager", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 58, + "tags": [ + "Test heavy", + "Graded by few things", + "Tough grader", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "359619", + "instructor_id": "kprager", + "overall_grade_rating": 3.61, + "total_grade_count": 458, + "course_ratings": { + "PSY4331": 3.76, + "PSY3324": 3.47, + "GST3301": 3.59 + } + } + ], + "sven kroener": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/1619227", + "quality_rating": 3.7, + "difficulty_rating": 2.6, + "would_take_again": 76, + "original_rmp_format": "Sven Kroener", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 37, + "tags": [ + "Test heavy", + "Clear grading criteria", + "Graded by few things", + "Lecture heavy", + "EXTRA CREDIT" + ], + "rmp_id": "1619227", + "instructor_id": "sxk101000", + "overall_grade_rating": 4.02, + "total_grade_count": 927, + "course_ratings": { + "NSC4354": 4.17, + "HCS7121": 5.0, + "ACN6340": 3.68, + "HCS6340": 4.34, + "NSC4352": 3.89 + } + } + ], + "theodore price": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/1967295", + "quality_rating": 4.3, + "difficulty_rating": 2.7, + "would_take_again": 81, + "original_rmp_format": "Theodore Price", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 21, + "tags": [ + "Respected", + "Inspirational", + "Amazing lectures ", + "Clear grading criteria", + "Would take again" + ], + "rmp_id": "1967295", + "instructor_id": "tjp140130", + "overall_grade_rating": 4.63, + "total_grade_count": 1100, + "course_ratings": { + "NSC4352": 3.85, + "HCS7121": 4.87, + "HCS7372": 4.42, + "NSC4358": 4.74 + } + } + ], + "derek stewart": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2005402", + "quality_rating": 4.9, + "difficulty_rating": 1.6, + "would_take_again": 100, + "original_rmp_format": "Derek Stewart", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 15, + "tags": [ + "Hilarious", + "Gives good feedback", + "Clear grading criteria", + "Caring", + "Participation matters" + ], + "rmp_id": "2005402", + "instructor_id": "das141230", + "overall_grade_rating": 4.54, + "total_grade_count": 125, + "course_ratings": { + "COMM1311": 4.54 + } + } + ], + "vivek arora": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2162590", + "quality_rating": 3.9, + "difficulty_rating": 3.3, + "would_take_again": 64, + "original_rmp_format": "Vivek Arora", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 33, + "tags": [ + "Accessible outside class", + "Group projects", + "Tough grader", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "2162590", + "instructor_id": "vxa081000", + "overall_grade_rating": 4.22, + "total_grade_count": 530, + "course_ratings": { + "MIS6326": 4.29, + "ITSS4312": 4.11, + "ITSS3390": 4.39, + "ITSS4300": 3.84 + } + } + ], + "uyen henson": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1890465", + "quality_rating": 4.7, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Uyen Henson", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 9, + "tags": [ + "EXTRA CREDIT", + "Lecture heavy", + "Graded by few things", + "Amazing lectures ", + "Tests? Not many" + ], + "rmp_id": "1890465", + "instructor_id": "unh130030", + "overall_grade_rating": 4.63, + "total_grade_count": 1111, + "course_ratings": { + "BIOL3318": 4.63 + } + } + ], + "jeffrey kromer": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1523788", + "quality_rating": 4.6, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Jeffrey Kromer", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 11, + "tags": [ + "Gives good feedback", + "Clear grading criteria", + "Accessible outside class", + "Caring", + "Group projects" + ], + "rmp_id": "1523788", + "instructor_id": "jrk013000", + "overall_grade_rating": 4.45, + "total_grade_count": 749, + "course_ratings": { + "ACCT6383": 4.72, + "ACCT3332": 2.98, + "ACCT4342": 3.57, + "ACCT6384": 4.59, + "MIS6339": 4.43, + "ACCT3341": 4.5 + } + } + ], + "christine sanders": [ + { + "department": "Theater", + "url": "https://www.ratemyprofessors.com/professor/2490213", + "quality_rating": 4.5, + "difficulty_rating": 1.1, + "would_take_again": 100, + "original_rmp_format": "Christine Sanders", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 8, + "tags": [ + "Group projects", + "Caring", + "Get ready to read", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "2490213", + "instructor_id": "cxs180032", + "overall_grade_rating": 4.74, + "total_grade_count": 116, + "course_ratings": { + "THEA1310": 4.84, + "THEA1351": 4.17 + } + } + ], + "laura neal": [ + { + "department": "Arts amp Humanities", + "url": "https://www.ratemyprofessors.com/professor/2768942", + "quality_rating": 3, + "difficulty_rating": 2.4, + "would_take_again": 40, + "original_rmp_format": "Laura Neal", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 5, + "tags": [ + "Get ready to read", + "Clear grading criteria", + "Gives good feedback", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2768942", + "instructor_id": "lxn200009", + "overall_grade_rating": 4.07, + "total_grade_count": 71, + "course_ratings": { + "CRWT2301": 4.11, + "CRWT3351": 4.04 + } + } + ], + "victoria askew": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/2497202", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Victoria Askew", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 3, + "tags": [ + "Caring", + "Gives good feedback", + "Participation matters", + "So many papers", + "Respected" + ], + "rmp_id": "2497202", + "instructor_id": "vxa180018", + "overall_grade_rating": 4.76, + "total_grade_count": 71, + "course_ratings": { + "HLTH4304": 4.76 + } + } + ], + "dongye song": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2713193", + "quality_rating": 3.7, + "difficulty_rating": 3, + "would_take_again": 33, + "original_rmp_format": "Dongye Song", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 3, + "tags": ["EXTRA CREDIT", "Clear grading criteria", "Graded by few things"], + "rmp_id": "2713193", + "instructor_id": "dxs153330", + "overall_grade_rating": 3.43, + "total_grade_count": 48, + "course_ratings": { + "ACCT2301": 3.43 + } + } + ], + "ayesha mulla": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2511052", + "quality_rating": 4.7, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Ayesha Mulla", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 3, + "tags": [ + "Caring", + "Participation matters", + "Clear grading criteria", + "So many papers", + "Accessible outside class" + ], + "rmp_id": "2511052", + "instructor_id": "axm190114", + "overall_grade_rating": 4.33, + "total_grade_count": 163, + "course_ratings": { + "ATCM3301": 4.39, + "ATCM2321": 4.29 + } + } + ], + "abdullah gokcinar": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2697116", + "quality_rating": 3, + "difficulty_rating": 4, + "would_take_again": 67, + "original_rmp_format": "Abdullah Gokcinar", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 3, + "tags": [ + "Lecture heavy", + "Tough grader", + "Participation matters", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "2697116", + "instructor_id": "axg169230", + "overall_grade_rating": 4.03, + "total_grade_count": 90, + "course_ratings": { + "OPRE3310": 3.92, + "OPRE3360": 4.17 + } + } + ], + "richard goodrum": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2088512", + "quality_rating": 1.9, + "difficulty_rating": 3.9, + "would_take_again": 20, + "original_rmp_format": "Richard Goodrum", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 64, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Get ready to read", + "Lots of homework", + "Graded by few things" + ], + "rmp_id": "2088512", + "instructor_id": "rag150330", + "overall_grade_rating": 3.29, + "total_grade_count": 571, + "course_ratings": { + "CE4348": 3.65, + "CS3340": 3.26, + "CS4348": 3.11, + "CS4301": 3.22, + "CS2340": 3.32, + "CS4341": 3.05 + } + } + ], + "ann coleman": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2059686", + "quality_rating": 2.8, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Ann Coleman", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 9, + "tags": [ + "Lots of homework", + "Tough grader", + "Get ready to read", + "Clear grading criteria", + "Tests? Not many" + ], + "rmp_id": "2059686", + "instructor_id": "acc130630", + "overall_grade_rating": 3.39, + "total_grade_count": 94, + "course_ratings": { + "EE4301": 3.39 + } + } + ], + "feng zhao": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1509020", + "quality_rating": 3.3, + "difficulty_rating": 3.2, + "would_take_again": 71, + "original_rmp_format": "Feng Zhao", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 9, + "tags": [ + "Gives good feedback", + "Group projects", + "Clear grading criteria", + "Caring", + "Lecture heavy" + ], + "rmp_id": "1509020", + "instructor_id": "fxz082000", + "overall_grade_rating": 4.14, + "total_grade_count": 360, + "course_ratings": { + "FIN4340": 3.06, + "FIN6360": 4.14, + "FIN6381": 5.0, + "FIN6314": 4.42, + "FIN4305": 4.3 + } + } + ], + "samitha panangala": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2719041", + "quality_rating": 2.7, + "difficulty_rating": 2.2, + "would_take_again": 50, + "original_rmp_format": "Samitha Panangala", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 6, + "tags": [ + "Participation matters", + "Clear grading criteria", + "Caring", + "Group projects", + "Respected" + ], + "rmp_id": "2719041", + "instructor_id": "sdp140230", + "overall_grade_rating": 3.98, + "total_grade_count": 164, + "course_ratings": { + "CHEM1111": 3.92, + "CHEM1112": 2.86, + "CHEM2125": 4.35, + "CHEM2123": 4.21 + } + } + ], + "subbarayan venkatesan": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1470004", + "quality_rating": 3.3, + "difficulty_rating": 3.5, + "would_take_again": 70, + "original_rmp_format": "Subbarayan Venkatesan", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 29, + "tags": [ + "Skip class? You won't pass.", + "Group projects", + "Accessible outside class", + "Amazing lectures ", + "Lecture heavy" + ], + "rmp_id": "1470004", + "instructor_id": "venky", + "overall_grade_rating": 4.31, + "total_grade_count": 151, + "course_ratings": { + "CS5348": 4.48, + "CS6380": 4.61, + "CS4348": 3.91, + "SE4348": 3.56 + } + } + ], + "katrina tamez": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2639467", + "quality_rating": 3.1, + "difficulty_rating": 3.9, + "would_take_again": 50, + "original_rmp_format": "Katrina Tamez", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 18, + "tags": [ + "Test heavy", + "Tough grader", + "Accessible outside class", + "Get ready to read", + "Skip class? You won't pass." + ], + "rmp_id": "2639467", + "instructor_id": "kxt200010", + "overall_grade_rating": 3.74, + "total_grade_count": 175, + "course_ratings": { + "BCOM3310": 4.22, + "BCOM4300": 3.29 + } + } + ], + "daniel uribe": [ + { + "department": "Computer & Math. Sciences", + "url": "https://www.ratemyprofessors.com/professor/1880109", + "quality_rating": 4.4, + "difficulty_rating": 1.5, + "would_take_again": 94, + "original_rmp_format": "Daniel Uribe", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 22, + "tags": [ + "Caring", + "EXTRA CREDIT", + "Clear grading criteria", + "Gives good feedback", + "Hilarious" + ], + "rmp_id": "1880109", + "instructor_id": "dmu011000", + "overall_grade_rating": 4.87, + "total_grade_count": 146, + "course_ratings": { + "CS3305": 4.87 + } + } + ], + "clayton dillard": [ + { + "department": "Arts amp Humanities", + "url": "https://www.ratemyprofessors.com/professor/2561773", + "quality_rating": 3, + "difficulty_rating": 4.2, + "would_take_again": 40, + "original_rmp_format": "Clayton Dillard", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 10, + "tags": [ + "Get ready to read", + "Skip class? You won't pass.", + "Participation matters", + "Group projects", + "Amazing lectures " + ], + "rmp_id": "2561773", + "instructor_id": "cxd190016", + "overall_grade_rating": 3.77, + "total_grade_count": 218, + "course_ratings": { + "FILM2332": 3.77 + } + } + ], + "bob arnold": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2274258", + "quality_rating": 3, + "difficulty_rating": 1.2, + "would_take_again": 40, + "original_rmp_format": "Bob Arnold", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 5, + "tags": [ + "Participation matters", + "EXTRA CREDIT", + "Group projects", + "Skip class? You won't pass." + ], + "rmp_id": "2274258", + "instructor_id": "bxa161430", + "overall_grade_rating": 4.18, + "total_grade_count": 211, + "course_ratings": { + "COMM1311": 4.18 + } + } + ], + "changsong li": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1928969", + "quality_rating": 4.4, + "difficulty_rating": 2.4, + "would_take_again": 79, + "original_rmp_format": "Changsong Li", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 157, + "tags": ["Hilarious", "Respected", "Amazing lectures ", "Lots of homework", "Caring"], + "rmp_id": "1928969", + "instructor_id": "cxl109120", + "overall_grade_rating": 3.37, + "total_grade_count": 816, + "course_ratings": { + "MATH1325": 3.66, + "MATH2415": 3.25, + "MATH1326": 2.64 + } + } + ], + "karl ho": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/374871", + "quality_rating": 3.9, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Karl Ho", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 14, + "tags": [ + "Group projects", + "EXTRA CREDIT", + "Clear grading criteria", + "Gives good feedback", + "Respected" + ], + "rmp_id": "374871", + "instructor_id": "kxh022100", + "overall_grade_rating": 4.27, + "total_grade_count": 247, + "course_ratings": { + "EPPS6302": 4.44, + "EPPS6356": 4.61, + "PSCI4314": 3.75, + "EPPS6323": 4.41, + "EPPS6354": 4.67, + "PSCI4313": 3.74 + } + } + ], + "laura mohsene": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2483231", + "quality_rating": 2, + "difficulty_rating": 2.6, + "would_take_again": 38, + "original_rmp_format": "Laura Mohsene", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 8, + "tags": [ + "Skip class? You won't pass.", + "Caring", + "Tough grader", + "Participation matters", + "Group projects" + ], + "rmp_id": "2483231", + "instructor_id": "olive", + "overall_grade_rating": 4.4, + "total_grade_count": 265, + "course_ratings": { + "ECS3390": 4.4 + } + } + ], + "pia jakobsson": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/885931", + "quality_rating": 4, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Pia Jakobsson", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 9, + "tags": ["Get ready to read", "Caring", "Amazing lectures ", "Accessible outside class"], + "rmp_id": "885931", + "instructor_id": "pkj010100", + "overall_grade_rating": 3.9, + "total_grade_count": 142, + "course_ratings": { + "HIST3302": 3.73, + "GST3302": 4.07 + } + } + ], + "dragana derlic": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2588667", + "quality_rating": 4.6, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Dragana Derlic", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 11, + "tags": [ + "Clear grading criteria", + "Amazing lectures ", + "Accessible outside class", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2588667", + "instructor_id": "dxd171830", + "overall_grade_rating": 3.95, + "total_grade_count": 108, + "course_ratings": { + "CRIM3302": 4.26, + "CRIM4396": 4.0, + "CRIM3324": 3.74 + } + } + ], + "shannon schaffer": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2746090", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Shannon Schaffer", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 1, + "tags": ["Clear grading criteria", "Gives good feedback", "Caring"], + "rmp_id": "2746090", + "instructor_id": "sjs190000", + "overall_grade_rating": 3.72, + "total_grade_count": 50, + "course_ratings": { + "RHET1302": 3.72 + } + } + ], + "zachary campbell": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2260138", + "quality_rating": 3.7, + "difficulty_rating": 3.5, + "would_take_again": 63, + "original_rmp_format": "Zachary Campbell", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 27, + "tags": [ + "Amazing lectures ", + "Inspirational", + "Respected", + "Test heavy", + "Skip class? You won't pass." + ], + "rmp_id": "2260138", + "instructor_id": "zxc153030", + "overall_grade_rating": 3.13, + "total_grade_count": 201, + "course_ratings": { + "BIOL5420": 3.03, + "BIOL3101": 3.15 + } + } + ], + "andrea warner czyz": [ + { + "department": "Speech Language Pathology", + "url": "https://www.ratemyprofessors.com/professor/1940592", + "quality_rating": 3.6, + "difficulty_rating": 3.8, + "would_take_again": 67, + "original_rmp_format": "Andrea Warner-Czyz", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 11, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Hilarious", + "Respected", + "EXTRA CREDIT" + ], + "rmp_id": "1940592", + "instructor_id": "adw052000", + "overall_grade_rating": 4.28, + "total_grade_count": 285, + "course_ratings": { + "AUD7324": 4.81, + "SPAU3341": 4.01, + "AUD6318": 4.66 + } + } + ], + "ramaswamy chandrasekaran": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1209576", + "quality_rating": 4.1, + "difficulty_rating": 3.6, + "would_take_again": 78, + "original_rmp_format": "Ramaswamy Chandrasekaran", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 39, + "tags": [ + "Respected", + "Amazing lectures ", + "Gives good feedback", + "Accessible outside class", + "Inspirational" + ], + "rmp_id": "1209576", + "instructor_id": "chandra", + "overall_grade_rating": 4.56, + "total_grade_count": 395, + "course_ratings": { + "CS6363": 4.53, + "CS6301": 4.56, + "CS6381": 4.79 + } + } + ], + "muhammad ikram": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2426226", + "quality_rating": 2.3, + "difficulty_rating": 4.4, + "would_take_again": 25, + "original_rmp_format": "Muhammad Ikram", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 16, + "tags": [ + "Tough grader", + "Graded by few things", + "Lecture heavy", + "Accessible outside class", + "Skip class? You won't pass." + ], + "rmp_id": "2426226", + "instructor_id": "mzi041000", + "overall_grade_rating": 3.23, + "total_grade_count": 178, + "course_ratings": { + "CS2340": 3.25, + "CE3301": 2.89, + "EE3301": 3.32 + } + } + ], + "john stilwell": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/966816", + "quality_rating": 3.3, + "difficulty_rating": 2.2, + "would_take_again": 33, + "original_rmp_format": "John Stilwell", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 9, + "tags": [ + "Get ready to read", + "Participation matters", + "Skip class? You won't pass.", + "Group projects", + "Caring" + ], + "rmp_id": "966816", + "instructor_id": "stilwell", + "overall_grade_rating": 4.21, + "total_grade_count": 86, + "course_ratings": { + "PSY4377": 4.21 + } + } + ], + "won namgoong": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1708359", + "quality_rating": 2.3, + "difficulty_rating": 4.5, + "would_take_again": 17, + "original_rmp_format": "Won Namgoong", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 12, + "tags": [ + "Tough grader", + "Beware of pop quizzes", + "Get ready to read", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "1708359", + "instructor_id": "wxn062000", + "overall_grade_rating": 4.03, + "total_grade_count": 102, + "course_ratings": { + "EESC6349": 3.29, + "CE3101": 3.92, + "EE3101": 4.16 + } + } + ], + "david lyons": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2250735", + "quality_rating": 5, + "difficulty_rating": 3.4, + "would_take_again": 100, + "original_rmp_format": "David Lyons", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 20, + "tags": [ + "Gives good feedback", + "Hilarious", + "Accessible outside class", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2250735", + "instructor_id": "dll101020", + "overall_grade_rating": 4.33, + "total_grade_count": 128, + "course_ratings": { + "RHET1302": 4.33 + } + } + ], + "rachel crawford": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2204544", + "quality_rating": 4.6, + "difficulty_rating": 3.6, + "would_take_again": 82, + "original_rmp_format": "Rachel Crawford", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 11, + "tags": [ + "Gives good feedback", + "Lots of homework", + "Caring", + "Participation matters", + "Inspirational" + ], + "rmp_id": "2204544", + "instructor_id": "rxc161430", + "overall_grade_rating": 3.75, + "total_grade_count": 107, + "course_ratings": { + "RHET1302": 3.8, + "CRWT2301": 3.33 + } + } + ], + "elizabeth currey": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2605997", + "quality_rating": 3.3, + "difficulty_rating": 2, + "would_take_again": 75, + "original_rmp_format": "Elizabeth Currey", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 4, + "tags": [ + "Gives good feedback", + "So many papers", + "Get ready to read", + "Participation matters", + "Amazing lectures " + ], + "rmp_id": "2605997", + "instructor_id": "ejc015000", + "overall_grade_rating": 4.45, + "total_grade_count": 19, + "course_ratings": { + "RHET1302": 4.45 + } + } + ], + "william manton": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/442357", + "quality_rating": 3.6, + "difficulty_rating": 3.8, + "would_take_again": 78, + "original_rmp_format": "William Manton", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 24, + "tags": [ + "Skip class? You won't pass.", + "Test heavy", + "Tough grader", + "Respected", + "Lecture heavy" + ], + "rmp_id": "442357", + "instructor_id": "manton", + "overall_grade_rating": 3.57, + "total_grade_count": 179, + "course_ratings": { + "GEOS2409": 3.12, + "GEOS5315": 4.52, + "GEOS5319": 4.64, + "GEOS1303": 3.37, + "GEOS4322": 3.47 + } + } + ], + "stacey said": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2744197", + "quality_rating": 5, + "difficulty_rating": 3.5, + "would_take_again": 100, + "original_rmp_format": "Stacey Said", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 2, + "tags": [ + "Tough grader", + "Amazing lectures ", + "Gives good feedback", + "Lots of homework", + "Respected" + ], + "rmp_id": "2744197", + "instructor_id": "sxs210216", + "overall_grade_rating": 3.33, + "total_grade_count": 21, + "course_ratings": { + "BCOM4300": 3.33 + } + } + ], + "ravin cline": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/2767993", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Ravin Cline", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 1, + "tags": ["Get ready to read", "Clear grading criteria", "Graded by few things"], + "rmp_id": "2767993", + "instructor_id": "rrc170001", + "overall_grade_rating": 4.28, + "total_grade_count": 67, + "course_ratings": { + "PA4355": 2.92, + "SOC3379": 4.69, + "PA3379": 4.64 + } + } + ], + "kathryn evans": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/1605557", + "quality_rating": 3.7, + "difficulty_rating": 2.6, + "would_take_again": 43, + "original_rmp_format": "Kathryn Evans", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 12, + "tags": [ + "Inspirational", + "Clear grading criteria", + "Lots of homework", + "Lecture heavy", + "Amazing lectures " + ], + "rmp_id": "1605557", + "instructor_id": "kcevans", + "overall_grade_rating": 4.34, + "total_grade_count": 249, + "course_ratings": { + "MUSI3385": 4.72, + "MUSI3322": 4.5, + "ARHM3342": 3.92, + "MUSI3327": 4.22, + "MUSI4385": 4.21 + } + } + ], + "paul diehl": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2659801", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Paul Diehl", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 2, + "tags": ["Group projects", "Gives good feedback", "Lots of homework"], + "rmp_id": "2659801", + "instructor_id": "pxd153230", + "overall_grade_rating": 3.49, + "total_grade_count": 90, + "course_ratings": { + "PSCI4396": 3.8, + "PSCI6319": 3.58, + "PSCI4363": 3.35, + "PSCI3328": 3.14 + } + } + ], + "jocyln hanson": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1907752", + "quality_rating": 4.6, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Jocyln Hanson", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 10, + "tags": [ + "Caring", + "Tough grader", + "Lots of homework", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "1907752", + "instructor_id": "jyh140230", + "overall_grade_rating": 4.55, + "total_grade_count": 164, + "course_ratings": { + "COMM1311": 4.55 + } + } + ], + "charles hazzard": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1487294", + "quality_rating": 4.1, + "difficulty_rating": 1.7, + "would_take_again": 62, + "original_rmp_format": "Charles Hazzard", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 27, + "tags": [ + "Participation matters", + "Lecture heavy", + "Accessible outside class", + "Skip class? You won't pass.", + "Respected" + ], + "rmp_id": "1487294", + "instructor_id": "cxh056000", + "overall_grade_rating": 4.54, + "total_grade_count": 410, + "course_ratings": { + "IMS3310": 4.64, + "OBHR3310": 4.5 + } + } + ], + "tony fuller": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2327568", + "quality_rating": 4.1, + "difficulty_rating": 2.6, + "would_take_again": 86, + "original_rmp_format": "Tony Fuller", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 21, + "tags": [ + "Clear grading criteria", + "Caring", + "Accessible outside class", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2327568", + "instructor_id": "tff170130", + "overall_grade_rating": 4.54, + "total_grade_count": 308, + "course_ratings": { + "ITSS3300": 4.33, + "MIS6313": 4.74, + "ITSS4370": 4.35 + } + } + ], + "patrick dennis": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/1086971", + "quality_rating": 3.1, + "difficulty_rating": 2.7, + "would_take_again": 25, + "original_rmp_format": "Patrick Dennis", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 12, + "tags": [ + "Get ready to read", + "Tough grader", + "Participation matters", + "Tests? Not many", + "Gives good feedback" + ], + "rmp_id": "1086971", + "instructor_id": "pdennis", + "overall_grade_rating": 3.36, + "total_grade_count": 384, + "course_ratings": { + "HUMA1301": 3.13, + "HIST3327": 3.61, + "HIST3328": 3.23, + "PHIL3328": 3.59 + } + } + ], + "lora day": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/1381199", + "quality_rating": 2.2, + "difficulty_rating": 4.2, + "would_take_again": 18, + "original_rmp_format": "Lora Day", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 25, + "tags": [ + "Test heavy", + "Tough grader", + "Get ready to read", + "Lots of homework", + "Participation matters" + ], + "rmp_id": "1381199", + "instructor_id": "lnd092000", + "overall_grade_rating": 3.41, + "total_grade_count": 215, + "course_ratings": { + "HLTH1322": 3.41 + } + } + ], + "cara aronson": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2560986", + "quality_rating": 5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Cara Aronson", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 2, + "tags": ["EXTRA CREDIT", "Group projects"], + "rmp_id": "2560986", + "instructor_id": "cxa190007", + "overall_grade_rating": 4.33, + "total_grade_count": 29, + "course_ratings": { + "ECS1100": 4.33 + } + } + ], + "jeanne pitz": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1845086", + "quality_rating": 2, + "difficulty_rating": 4, + "would_take_again": 12, + "original_rmp_format": "Jeanne Pitz", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 15, + "tags": [ + "Get ready to read", + "Graded by few things", + "Test heavy", + "Tough grader", + "Beware of pop quizzes" + ], + "rmp_id": "1845086", + "instructor_id": "jxp133430", + "overall_grade_rating": 4.73, + "total_grade_count": 97, + "course_ratings": { + "EE3111": 4.7, + "CE3111": 4.69, + "EESC6360": 4.91 + } + } + ], + "julia hsu": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1713565", + "quality_rating": 2, + "difficulty_rating": 4.3, + "would_take_again": 100, + "original_rmp_format": "Julia Hsu", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 12, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Tests are tough", + "Amazing lectures ", + "Lecture heavy" + ], + "rmp_id": "1713565", + "instructor_id": "jxh101000", + "overall_grade_rating": 3.9, + "total_grade_count": 38, + "course_ratings": { + "MSEN5310": 3.9 + } + } + ], + "kyeongjae cho": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2060612", + "quality_rating": 2.7, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Kyeongjae Cho", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 3, + "tags": [ + "Lots of homework", + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Clear grading criteria" + ], + "rmp_id": "2060612", + "instructor_id": "kxc067000", + "overall_grade_rating": 3.98, + "total_grade_count": 98, + "course_ratings": { + "ENGR3300": 3.45, + "MSEN6381": 4.42, + "MECH6367": 4.42, + "MSEN6324": 4.01 + } + } + ], + "wenyi lu": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2132663", + "quality_rating": 2, + "difficulty_rating": 3.7, + "would_take_again": 33, + "original_rmp_format": "Wenyi Lu", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 3, + "tags": [ + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Beware of pop quizzes", + "Test heavy" + ], + "rmp_id": "2132663", + "instructor_id": "wxl153330", + "overall_grade_rating": 4.35, + "total_grade_count": 68, + "course_ratings": { + "ACTS6301": 4.15, + "ACTS6304": 4.25, + "ACTS6303": 4.55, + "ACTS6305": 4.77 + } + } + ], + "ravishankar narayan": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/1841778", + "quality_rating": 1.8, + "difficulty_rating": 2.8, + "would_take_again": 19, + "original_rmp_format": "Ravishankar Narayan", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 41, + "tags": [ + "Tough grader", + "Group projects", + "Lots of homework", + "Graded by few things", + "Clear grading criteria" + ], + "rmp_id": "1841778", + "instructor_id": "rln130030", + "overall_grade_rating": 4.64, + "total_grade_count": 1073, + "course_ratings": { + "BUAN6320": 4.76, + "BUAN6335": 4.59, + "MIS6364": 4.52, + "SYSM6335": 4.86, + "ITSS4301": 3.95, + "ACCT4301": 3.81, + "MIS6372": 4.65, + "MIS6320": 4.51, + "MIS6378": 4.8, + "MKT6338": 4.78 + } + } + ], + "ying xie": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2003935", + "quality_rating": 2.5, + "difficulty_rating": 3.2, + "would_take_again": 33, + "original_rmp_format": "Ying Xie", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 12, + "tags": [ + "Group projects", + "Lecture heavy", + "Participation matters", + "Graded by few things", + "Tough grader" + ], + "rmp_id": "2003935", + "instructor_id": "yxx124930", + "overall_grade_rating": 4.3, + "total_grade_count": 255, + "course_ratings": { + "MKT6301": 4.12, + "MKT6343": 4.42 + } + } + ], + "addison shierry": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2358860", + "quality_rating": 4.6, + "difficulty_rating": 2.8, + "would_take_again": 80, + "original_rmp_format": "Addison Shierry", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 5, + "tags": [ + "Gives good feedback", + "Caring", + "Clear grading criteria", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "2358860", + "instructor_id": "axs084500", + "overall_grade_rating": 4.12, + "total_grade_count": 140, + "course_ratings": { + "RHET1302": 4.1, + "LIT2331": 4.2 + } + } + ], + "ivor page": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/133832", + "quality_rating": 3.8, + "difficulty_rating": 3.2, + "would_take_again": 73, + "original_rmp_format": "Ivor Page", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 34, + "tags": ["Respected", "Caring", "Inspirational", "Lecture heavy", "Accessible outside class"], + "rmp_id": "133832", + "instructor_id": "ivor", + "overall_grade_rating": 4.4, + "total_grade_count": 377, + "course_ratings": { + "CS3345": 3.96, + "CS1200": 4.9, + "HONS3199": 5.0, + "CS3149": 4.39, + "CS3340": 4.65, + "CS4341": 4.54, + "SE3345": 2.81, + "CS2340": 4.46, + "CS4141": 4.51 + } + } + ], + "michael allred": [ + { + "department": "Languages", + "url": "https://www.ratemyprofessors.com/professor/2394569", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Michael Allred", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 3, + "tags": [ + "Caring", + "Group projects", + "Gives good feedback", + "Inspirational", + "Lots of homework" + ], + "rmp_id": "2394569", + "instructor_id": "mka170830", + "overall_grade_rating": 4.36, + "total_grade_count": 72, + "course_ratings": { + "JAPN1311": 4.74, + "JAPN1312": 4.11 + } + } + ], + "karen rodrigue": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/1811809", + "quality_rating": 3.3, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Karen Rodrigue", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 18, + "tags": [ + "Clear grading criteria", + "Lecture heavy", + "EXTRA CREDIT", + "Test heavy", + "Tough grader" + ], + "rmp_id": "1811809", + "instructor_id": "kmr082000", + "overall_grade_rating": 4.28, + "total_grade_count": 149, + "course_ratings": { + "NSC4359": 4.14, + "HCS7372": 4.88, + "ACN7372": 5.0, + "PSY4359": 4.1 + } + } + ], + "madhura kulkarni": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2364475", + "quality_rating": 5, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "Madhura Kulkarni", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 17, + "tags": [ + "Caring", + "Participation matters", + "Inspirational", + "Gives good feedback", + "Amazing lectures " + ], + "rmp_id": "2364475", + "instructor_id": "mxk170005", + "overall_grade_rating": 3.92, + "total_grade_count": 22, + "course_ratings": { + "MKT3300": 3.92 + } + } + ], + "mona gregory": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2107008", + "quality_rating": 4.9, + "difficulty_rating": 1.9, + "would_take_again": 91, + "original_rmp_format": "Mona Gregory", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 13, + "tags": [ + "Gives good feedback", + "EXTRA CREDIT", + "Clear grading criteria", + "Caring", + "Accessible outside class" + ], + "rmp_id": "2107008", + "instructor_id": "myg140030", + "overall_grade_rating": 4.14, + "total_grade_count": 157, + "course_ratings": { + "COMM1311": 4.14 + } + } + ], + "cristen hamilton": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2145650", + "quality_rating": 4.7, + "difficulty_rating": 3.4, + "would_take_again": 92, + "original_rmp_format": "Cristen Hamilton", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 13, + "tags": [ + "Gives good feedback", + "Skip class? You won't pass.", + "So many papers", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "2145650", + "instructor_id": "cch073000", + "overall_grade_rating": 3.88, + "total_grade_count": 127, + "course_ratings": { + "RHET1302": 3.88 + } + } + ], + "scott janke": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2310910", + "quality_rating": 4.5, + "difficulty_rating": 1.8, + "would_take_again": 92, + "original_rmp_format": "Scott Janke", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 12, + "tags": [ + "Clear grading criteria", + "Caring", + "Participation matters", + "EXTRA CREDIT", + "Gives good feedback" + ], + "rmp_id": "2310910", + "instructor_id": "smj160830", + "overall_grade_rating": 4.25, + "total_grade_count": 390, + "course_ratings": { + "OPRE3310": 4.5, + "OPRE3330": 3.94, + "OPRE6362": 4.79 + } + } + ], + "william pervin": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1290044", + "quality_rating": 2.8, + "difficulty_rating": 4.1, + "would_take_again": 43, + "original_rmp_format": "William Pervin", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 10, + "tags": ["Test heavy", "Tough grader", "Amazing lectures ", "Caring", "Graded by few things"], + "rmp_id": "1290044", + "instructor_id": "pervin", + "overall_grade_rating": 3.76, + "total_grade_count": 141, + "course_ratings": { + "CS4384": 4.32, + "CS3305": 2.69 + } + } + ], + "pil seng lee": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2582603", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Pil-Seng Lee", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 2, + "tags": [ + "Test heavy", + "Tough grader", + "Get ready to read", + "Lots of homework", + "Lecture heavy" + ], + "rmp_id": "2582603", + "instructor_id": "pxl132230", + "overall_grade_rating": 3.83, + "total_grade_count": 15, + "course_ratings": { + "FIN3320": 3.83 + } + } + ], + "trillion small": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2276545", + "quality_rating": 3.6, + "difficulty_rating": 1.8, + "would_take_again": 64, + "original_rmp_format": "Trillion Small", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 11, + "tags": ["Caring", "EXTRA CREDIT", "Inspirational", "Group projects", "Amazing lectures "], + "rmp_id": "2276545", + "instructor_id": "txs174730", + "overall_grade_rating": 4.25, + "total_grade_count": 271, + "course_ratings": { + "PSY4343": 4.22, + "PSY3322": 4.3 + } + } + ], + "katharine powers": [ + { + "department": "Speech & Language Pathology", + "url": "https://www.ratemyprofessors.com/professor/1841253", + "quality_rating": 2.8, + "difficulty_rating": 4.2, + "would_take_again": 33, + "original_rmp_format": "Katharine Powers", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 28, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Clear grading criteria", + "Lecture heavy", + "Test heavy" + ], + "rmp_id": "1841253", + "instructor_id": "kap130730", + "overall_grade_rating": 3.61, + "total_grade_count": 295, + "course_ratings": { + "SPAU3344": 3.38, + "NSC3344": 3.73, + "COMD5344": 4.76 + } + } + ], + "barbara morgan": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2268176", + "quality_rating": 4.3, + "difficulty_rating": 4.9, + "would_take_again": 81, + "original_rmp_format": "Barbara Morgan", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 16, + "tags": [ + "Group projects", + "Lots of homework", + "Inspirational", + "Respected", + "Get ready to read" + ], + "rmp_id": "2268176", + "instructor_id": "bem160830", + "overall_grade_rating": 3.49, + "total_grade_count": 55, + "course_ratings": { + "ECS3390": 3.49 + } + } + ], + "carolyn reichert": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1441143", + "quality_rating": 4.3, + "difficulty_rating": 3.3, + "would_take_again": 80, + "original_rmp_format": "Carolyn Reichert", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 15, + "tags": [ + "Amazing lectures ", + "Respected", + "Gives good feedback", + "Lots of homework", + "Hilarious" + ], + "rmp_id": "1441143", + "instructor_id": "carolyn", + "overall_grade_rating": 4.38, + "total_grade_count": 888, + "course_ratings": { + "FIN6301": 4.39, + "FIN6350": 4.27 + } + } + ], + "eric jones": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2448536", + "quality_rating": 4.4, + "difficulty_rating": 1.7, + "would_take_again": 80, + "original_rmp_format": "Eric Jones", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 20, + "tags": ["Caring", "Graded by few things", "Respected", "Inspirational", "Test heavy"], + "rmp_id": "2448536", + "instructor_id": "exj180003", + "overall_grade_rating": 4.85, + "total_grade_count": 437, + "course_ratings": { + "MUSI1306": 4.87, + "MUSI2321": 4.8, + "MUSI2322": 5.0 + } + } + ], + "stephen spiro": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1394368", + "quality_rating": 4.4, + "difficulty_rating": 3, + "would_take_again": 88, + "original_rmp_format": "Stephen Spiro", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 18, + "tags": [ + "Amazing lectures ", + "Respected", + "Clear grading criteria", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "1394368", + "instructor_id": "sxs067400", + "overall_grade_rating": 3.84, + "total_grade_count": 582, + "course_ratings": { + "NATS1101": 4.96, + "BIOL3161": 3.51, + "BIOL3361": 3.92, + "CHEM3361": 3.96 + } + } + ], + "daniel griffith": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/1525013", + "quality_rating": 2.2, + "difficulty_rating": 4.3, + "would_take_again": 17, + "original_rmp_format": "Daniel Griffith", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 8, + "tags": [ + "Lots of homework", + "Get ready to read", + "So many papers", + "Skip class? You won't pass.", + "Caring" + ], + "rmp_id": "1525013", + "instructor_id": "dtg170130", + "overall_grade_rating": 3.86, + "total_grade_count": 287, + "course_ratings": { + "MECH3351": 3.83, + "MECH6339": 4.46 + } + }, + { + "instructor_id": "dag054000", + "overall_grade_rating": 4.04, + "total_grade_count": 67, + "course_ratings": { + "GISC6379": 3.21, + "EPPS2302": 4.14 + } + } + ], + "joseph izen": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/990829", + "quality_rating": 5, + "difficulty_rating": 3.6, + "would_take_again": 100, + "original_rmp_format": "Joseph Izen", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 8, + "tags": [ + "Amazing lectures ", + "Accessible outside class", + "Lots of homework", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "990829", + "instructor_id": "joe", + "overall_grade_rating": 4.14, + "total_grade_count": 56, + "course_ratings": { + "PHYS6300": 4.18, + "PHYS2421": 4.1 + } + } + ], + "linda thibodeau": [ + { + "department": "Speech Language Pathology", + "url": "https://www.ratemyprofessors.com/professor/2079296", + "quality_rating": 4.7, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Linda Thibodeau", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 3, + "tags": [ + "Inspirational", + "Get ready to read", + "Participation matters", + "EXTRA CREDIT", + "Clear grading criteria" + ], + "rmp_id": "2079296", + "instructor_id": "thib", + "overall_grade_rating": 4.61, + "total_grade_count": 242, + "course_ratings": { + "SPAU4395": 4.16, + "AUD6114": 5.0, + "COMD7325": 4.58, + "AUD7325": 4.9, + "AUD7326": 4.94 + } + } + ], + "colette copeland": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2141588", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 40, + "original_rmp_format": "Colette Copeland", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 6, + "tags": [ + "Participation matters", + "Tough grader", + "Gives good feedback", + "Lots of homework", + "Skip class? You won't pass." + ], + "rmp_id": "2141588", + "instructor_id": "cxc132230", + "overall_grade_rating": 3.62, + "total_grade_count": 162, + "course_ratings": { + "ARTS2350": 3.52, + "ARTS3371": 3.56, + "ARTS3311": 3.91, + "ARTS3340": 3.7 + } + } + ], + "richard bowen": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1272477", + "quality_rating": 3.1, + "difficulty_rating": 3.4, + "would_take_again": 18, + "original_rmp_format": "Richard Bowen", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 43, + "tags": [ + "Lots of homework", + "Tough grader", + "Skip class? You won't pass.", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "1272477", + "instructor_id": "rxb073100", + "overall_grade_rating": 3.77, + "total_grade_count": 299, + "course_ratings": { + "ACCT4336": 3.73, + "ACCT6344": 4.54, + "ACCT2301": 2.49 + } + } + ], + "karen baynham": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1731504", + "quality_rating": 3.7, + "difficulty_rating": 2.4, + "would_take_again": 40, + "original_rmp_format": "Karen Baynham", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 17, + "tags": [ + "Tough grader", + "Gives good feedback", + "Group projects", + "Clear grading criteria", + "Lots of homework" + ], + "rmp_id": "1731504", + "instructor_id": "contemp", + "overall_grade_rating": 3.7, + "total_grade_count": 129, + "course_ratings": { + "COMM1311": 3.7 + } + } + ], + "sourav chatterjee": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2456511", + "quality_rating": 4, + "difficulty_rating": 3.6, + "would_take_again": 83, + "original_rmp_format": "Sourav Chatterjee", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 12, + "tags": [ + "Accessible outside class", + "Respected", + "Skip class? You won't pass.", + "Amazing lectures ", + "Group projects" + ], + "rmp_id": "2456511", + "instructor_id": "sxc180075", + "overall_grade_rating": 4.28, + "total_grade_count": 310, + "course_ratings": { + "BUAN6356": 4.19, + "BUAN6357": 4.37, + "MIS6356": 4.5, + "BUAN6337": 4.15, + "MKT6337": 3.91 + } + } + ], + "daniel bochsler": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1358928", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Daniel Bochsler", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 14, + "tags": [ + "Tough grader", + "Lots of homework", + "So many papers", + "Get ready to read", + "Participation matters" + ], + "rmp_id": "1358928", + "instructor_id": "dcb091000", + "overall_grade_rating": 3.94, + "total_grade_count": 169, + "course_ratings": { + "ENTP6375": 4.05, + "MIS6375": 3.29, + "OPRE6394": 4.24 + } + } + ], + "zhengyang chen": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2426658", + "quality_rating": 4.5, + "difficulty_rating": 3.1, + "would_take_again": 92, + "original_rmp_format": "Zhengyang Chen", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 12, + "tags": [ + "Caring", + "Accessible outside class", + "Lecture heavy", + "Gives good feedback", + "Beware of pop quizzes" + ], + "rmp_id": "2426658", + "instructor_id": "zxc151030", + "overall_grade_rating": 3.71, + "total_grade_count": 11, + "course_ratings": { + "ECON2301": 3.71 + } + } + ], + "ian etter": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2691341", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Ian Etter", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 1, + "tags": ["Participation matters", "Gives good feedback"], + "rmp_id": "2691341", + "instructor_id": "ixe200004", + "overall_grade_rating": 4.07, + "total_grade_count": 38, + "course_ratings": { + "ARTS3340": 3.99, + "ARTS3381": 4.24 + } + } + ], + "yifan zhu": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2651866", + "quality_rating": 5, + "difficulty_rating": 3.5, + "would_take_again": 100, + "original_rmp_format": "Yifan Zhu", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 2, + "tags": [ + "Caring", + "Gives good feedback", + "Inspirational", + "Respected", + "Accessible outside class" + ], + "rmp_id": "2651866", + "instructor_id": "yxz166130", + "overall_grade_rating": 4.62, + "total_grade_count": 57, + "course_ratings": { + "FIN3320": 4.54, + "FIN4300": 4.71 + } + } + ], + "paul fishwick": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2655017", + "quality_rating": 4.5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Paul Fishwick", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 2, + "tags": [ + "Group projects", + "Gives good feedback", + "Inspirational", + "Graded by few things", + "Accessible outside class" + ], + "rmp_id": "2655017", + "instructor_id": "pxf130430", + "overall_grade_rating": 4.99, + "total_grade_count": 70, + "course_ratings": { + "CS6328": 4.99 + } + } + ], + "ana solodkin": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2571623", + "quality_rating": 2.3, + "difficulty_rating": 4.4, + "would_take_again": 36, + "original_rmp_format": "Ana Solodkin", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 22, + "tags": [ + "Tough grader", + "Test heavy", + "Lecture heavy", + "Skip class? You won't pass.", + "Beware of pop quizzes" + ], + "rmp_id": "2571623", + "instructor_id": "ajs190004", + "overall_grade_rating": 3.74, + "total_grade_count": 287, + "course_ratings": { + "NSC4366": 3.82, + "NSC4380": 3.5 + } + } + ], + "galia cohen": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1689330", + "quality_rating": 4.3, + "difficulty_rating": 2.6, + "would_take_again": 85, + "original_rmp_format": "Galia Cohen", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 192, + "tags": [ + "Hilarious", + "Amazing lectures ", + "Participation matters", + "Inspirational", + "Skip class? You won't pass." + ], + "rmp_id": "1689330", + "instructor_id": "gxc097120", + "overall_grade_rating": 3.66, + "total_grade_count": 218, + "course_ratings": { + "PA6345": 4.72, + "SOC1301": 3.53, + "PA4345": 3.03 + } + } + ], + "brady mccary": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1530229", + "quality_rating": 3.6, + "difficulty_rating": 3.2, + "would_take_again": 38, + "original_rmp_format": "Brady McCary", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 124, + "tags": [ + "Lots of homework", + "Tough grader", + "Skip class? You won't pass.", + "Amazing lectures ", + "Hilarious" + ], + "rmp_id": "1530229", + "instructor_id": "bcm052000", + "overall_grade_rating": 3.31, + "total_grade_count": 610, + "course_ratings": { + "MATH1314": 2.73, + "MATH2451": 3.56, + "MATH2370": 3.34, + "MATH2413": 3.76, + "MATH2414": 3.04, + "MATH1326": 2.7 + } + } + ], + "dian zhou": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1576533", + "quality_rating": 2.8, + "difficulty_rating": 2.9, + "would_take_again": 50, + "original_rmp_format": "Dian Zhou", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 10, + "tags": ["Get ready to read", "Lots of homework", "Hilarious", "Group projects", "Caring"], + "rmp_id": "1576533", + "instructor_id": "zhoud", + "overall_grade_rating": 4.27, + "total_grade_count": 360, + "course_ratings": { + "EE3120": 4.3, + "CE3120": 4.18, + "EEDG6306": 4.78, + "CE6306": 4.82, + "CE2310": 3.69, + "EE2310": 3.94 + } + } + ], + "alan sauter": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2311339", + "quality_rating": 4.7, + "difficulty_rating": 2.8, + "would_take_again": 80, + "original_rmp_format": "Alan Sauter", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 10, + "tags": [ + "Skip class? You won't pass.", + "Amazing lectures ", + "Lots of homework", + "Respected", + "Caring" + ], + "rmp_id": "2311339", + "instructor_id": "ads014500", + "overall_grade_rating": 2.99, + "total_grade_count": 185, + "course_ratings": { + "MATH2312": 3.35, + "MATH2414": 2.61 + } + } + ], + "kun qian": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2643227", + "quality_rating": 4.2, + "difficulty_rating": 1.8, + "would_take_again": 80, + "original_rmp_format": "Kun Qian", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 5, + "tags": [ + "Gives good feedback", + "Group projects", + "Inspirational", + "Respected", + "Amazing lectures " + ], + "rmp_id": "2643227", + "instructor_id": "kxq170030", + "overall_grade_rating": 3.81, + "total_grade_count": 114, + "course_ratings": { + "MKT3300": 3.81 + } + } + ], + "bo ram lim": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2301655", + "quality_rating": 2.5, + "difficulty_rating": 3.1, + "would_take_again": 33, + "original_rmp_format": "Bo Ram Lim", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 15, + "tags": [ + "Group projects", + "Graded by few things", + "Lecture heavy", + "Participation matters", + "Lots of homework" + ], + "rmp_id": "2301655", + "instructor_id": "bxl131330", + "overall_grade_rating": 3.92, + "total_grade_count": 96, + "course_ratings": { + "MKT3300": 3.92 + } + } + ], + "elizabeth searing": [ + { + "department": "Public Policy", + "url": "https://www.ratemyprofessors.com/professor/2736645", + "quality_rating": 1, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Elizabeth Searing", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 1, + "tags": ["Group projects", "Lots of homework", "So many papers"], + "rmp_id": "2736645", + "instructor_id": "exs200001", + "overall_grade_rating": 4.48, + "total_grade_count": 195, + "course_ratings": { + "PA6382": 4.67, + "PA7375": 4.61, + "PA6387": 4.98, + "GOVT2306": 3.31, + "PA6374": 4.76 + } + } + ], + "ryan lux": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2266715", + "quality_rating": 4.2, + "difficulty_rating": 2.4, + "would_take_again": 80, + "original_rmp_format": "Ryan Lux", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 51, + "tags": [ + "Get ready to read", + "Participation matters", + "Skip class? You won't pass.", + "Hilarious", + "Amazing lectures " + ], + "rmp_id": "2266715", + "instructor_id": "rjl140330", + "overall_grade_rating": 4.17, + "total_grade_count": 1302, + "course_ratings": { + "GOVT2305": 4.05, + "GOVT2306": 4.29, + "PSCI3350": 3.45 + } + } + ], + "kristen wetzler": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2538865", + "quality_rating": 2, + "difficulty_rating": 4.4, + "would_take_again": 27, + "original_rmp_format": "Kristen Wetzler", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 11, + "tags": [ + "Skip class? You won't pass.", + "Test heavy", + "Accessible outside class", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "2538865", + "instructor_id": "kxw190011", + "overall_grade_rating": 2.84, + "total_grade_count": 249, + "course_ratings": { + "MATH1314": 3.25, + "MATH2312": 3.56, + "MATH2417": 2.14, + "MATH2418": 2.16 + } + } + ], + "ehap sabri": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2426186", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Ehap Sabri", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Gives good feedback", "Respected"], + "rmp_id": "2426186", + "instructor_id": "exs055000", + "overall_grade_rating": 4.78, + "total_grade_count": 540, + "course_ratings": { + "OPRE6370": 4.78 + } + } + ], + "robin sinckler": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2237926", + "quality_rating": 1.5, + "difficulty_rating": 3.7, + "would_take_again": 14, + "original_rmp_format": "Robin Sinckler", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 21, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "So many papers", + "Participation matters", + "Lots of homework" + ], + "rmp_id": "2237926", + "instructor_id": "rxs150131", + "overall_grade_rating": 2.19, + "total_grade_count": 97, + "course_ratings": { + "RHET1302": 2.08, + "LIT2331": 2.34 + } + } + ], + "nan clement": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2727703", + "quality_rating": 5, + "difficulty_rating": 5, + "would_take_again": 100, + "original_rmp_format": "Nan Clement", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 1, + "tags": ["Gives good feedback", "Beware of pop quizzes", "Test heavy"], + "rmp_id": "2727703", + "instructor_id": "nxz160030", + "overall_grade_rating": 3.94, + "total_grade_count": 35, + "course_ratings": { + "ECON3310": 3.94 + } + } + ], + "simon kane": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2419373", + "quality_rating": 2.6, + "difficulty_rating": 4.1, + "would_take_again": 40, + "original_rmp_format": "Simon Kane", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 10, + "tags": [ + "Tough grader", + "Accessible outside class", + "Skip class? You won't pass.", + "Lots of homework", + "Participation matters" + ], + "rmp_id": "2419373", + "instructor_id": "sak043000", + "overall_grade_rating": 2.79, + "total_grade_count": 106, + "course_ratings": { + "ATCM3395": 2.59, + "ATCM3335": 2.86 + } + } + ], + "sarah gammell": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2505367", + "quality_rating": 4.5, + "difficulty_rating": 2.6, + "would_take_again": 88, + "original_rmp_format": "Sarah Gammell", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 8, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback", + "Participation matters", + "Respected" + ], + "rmp_id": "2505367", + "instructor_id": "spg160530", + "overall_grade_rating": 4.16, + "total_grade_count": 368, + "course_ratings": { + "CRIM3303": 4.2, + "CRIM3324": 4.19, + "CRIM3327": 4.29, + "CRIM2308": 4.47, + "CRIM3302": 3.27, + "CRIM3309": 4.64, + "CRIM3310": 3.54 + } + } + ], + "sara keeth": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/2097393", + "quality_rating": 4.1, + "difficulty_rating": 3.7, + "would_take_again": 71, + "original_rmp_format": "Sara Keeth", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 14, + "tags": ["Gives good feedback", "Tough grader", "Caring", "Respected", "EXTRA CREDIT"], + "rmp_id": "2097393", + "instructor_id": "slk041000", + "overall_grade_rating": 3.64, + "total_grade_count": 150, + "course_ratings": { + "RHET1302": 3.64 + } + } + ], + "garrett davis": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/2566128", + "quality_rating": 3.8, + "difficulty_rating": 2, + "would_take_again": 75, + "original_rmp_format": "Garrett Davis", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 4, + "tags": [ + "Participation matters", + "Amazing lectures ", + "Clear grading criteria", + "Hilarious", + "So many papers" + ], + "rmp_id": "2566128", + "instructor_id": "grd031000", + "overall_grade_rating": 4.23, + "total_grade_count": 172, + "course_ratings": { + "SOC1301": 4.43, + "SOC2305": 3.52 + } + } + ], + "can kucukgul": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2505530", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Can Kucukgul", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 3, + "tags": ["Caring", "Amazing lectures ", "Hilarious", "Respected", "Lecture heavy"], + "rmp_id": "2505530", + "instructor_id": "cxk151030", + "overall_grade_rating": 4.12, + "total_grade_count": 122, + "course_ratings": { + "OPRE3360": 4.18, + "OPRE3310": 4.05 + } + } + ], + "joohyun kim": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2533770", + "quality_rating": 4.6, + "difficulty_rating": 2.6, + "would_take_again": 92, + "original_rmp_format": "Joohyun Kim", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 12, + "tags": [ + "Accessible outside class", + "Gives good feedback", + "Caring", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "2533770", + "instructor_id": "jxk161630", + "overall_grade_rating": 4.32, + "total_grade_count": 115, + "course_ratings": { + "OPRE3310": 4.32 + } + } + ], + "yaqin hu": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2270028", + "quality_rating": 4.4, + "difficulty_rating": 2.7, + "would_take_again": 86, + "original_rmp_format": "Yaqin Hu", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 7, + "tags": ["Caring", "Amazing lectures ", "Gives good feedback", "Respected", "Lecture heavy"], + "rmp_id": "2270028", + "instructor_id": "yxh136230", + "overall_grade_rating": 3.64, + "total_grade_count": 60, + "course_ratings": { + "ACCT2301": 3.64 + } + } + ], + "olivia smith": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2610202", + "quality_rating": 3.5, + "difficulty_rating": 2.5, + "would_take_again": 75, + "original_rmp_format": "Olivia Smith", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 4, + "tags": [ + "Accessible outside class", + "Tough grader", + "Get ready to read", + "Gives good feedback", + "Test heavy" + ], + "rmp_id": "2610202", + "instructor_id": "oxs140330", + "overall_grade_rating": 4.15, + "total_grade_count": 367, + "course_ratings": { + "CLDP3342": 4.45, + "PSY3342": 4.0, + "SPAU3342": 4.47, + "CLDP3310": 4.05, + "PSY3310": 3.67 + } + } + ], + "norris bruce": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/857756", + "quality_rating": 3.2, + "difficulty_rating": 3.2, + "would_take_again": 36, + "original_rmp_format": "Norris Bruce", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 18, + "tags": [ + "Tough grader", + "Group projects", + "Get ready to read", + "Lecture heavy", + "Participation matters" + ], + "rmp_id": "857756", + "instructor_id": "nxb018100", + "overall_grade_rating": 4.25, + "total_grade_count": 256, + "course_ratings": { + "MKT6301": 4.24, + "MKT6329": 4.33 + } + } + ], + "agnieszka olsztynska": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1806551", + "quality_rating": 3, + "difficulty_rating": 2.8, + "would_take_again": 56, + "original_rmp_format": "Agnieszka Olsztynska", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 10, + "tags": [ + "Participation matters", + "Graded by few things", + "Tough grader", + "Test heavy", + "Group projects" + ], + "rmp_id": "1806551", + "instructor_id": "axo027000", + "overall_grade_rating": 4.16, + "total_grade_count": 810, + "course_ratings": { + "OB6301": 4.37, + "OBHR3310": 3.81, + "IMS6360": 4.5, + "OBHR3330": 3.74, + "BA1320": 3.77 + } + } + ], + "xiaoou bai": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2585337", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Xiaoou Bai", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 2, + "tags": [ + "Caring", + "Accessible outside class", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2585337", + "instructor_id": "xxb150330", + "overall_grade_rating": 4.52, + "total_grade_count": 222, + "course_ratings": { + "IMS3310": 4.52 + } + } + ], + "duck yang": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2248314", + "quality_rating": 2.5, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Duck Yang", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 2, + "tags": ["Gives good feedback", "Respected", "Test heavy"], + "rmp_id": "2248314", + "instructor_id": "djy031000", + "overall_grade_rating": 4.35, + "total_grade_count": 25, + "course_ratings": { + "CHEM4335": 4.35 + } + } + ], + "susan minkoff": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1761753", + "quality_rating": 2.5, + "difficulty_rating": 3.9, + "would_take_again": 29, + "original_rmp_format": "Susan Minkoff", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 11, + "tags": [ + "Lots of homework", + "Participation matters", + "Tough grader", + "Skip class? You won't pass.", + "Gives good feedback" + ], + "rmp_id": "1761753", + "instructor_id": "sem120030", + "overall_grade_rating": 3.35, + "total_grade_count": 215, + "course_ratings": { + "MATH6313": 4.07, + "MATH4334": 2.89, + "MATH6340": 4.15 + } + } + ], + "lunjin chen": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/2000103", + "quality_rating": 2.8, + "difficulty_rating": 2.9, + "would_take_again": 42, + "original_rmp_format": "Lunjin Chen", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 32, + "tags": [ + "Lots of homework", + "Graded by few things", + "EXTRA CREDIT", + "Clear grading criteria", + "Beware of pop quizzes" + ], + "rmp_id": "2000103", + "instructor_id": "lxc134330", + "overall_grade_rating": 3.47, + "total_grade_count": 862, + "course_ratings": { + "PHYS1301": 3.53, + "PHYS2325": 3.31, + "PHYS5320": 4.33 + } + } + ], + "john malek ahmadi": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/1645234", + "quality_rating": 4.7, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "John Malek-Ahmadi", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 47, + "tags": ["Amazing lectures ", "Gives good feedback", "Hilarious", "Caring", "Respected"], + "rmp_id": "1645234", + "instructor_id": "jhm110020", + "overall_grade_rating": 4.62, + "total_grade_count": 920, + "course_ratings": { + "SOC3342": 4.63, + "SOC4369": 4.56, + "SOC4371": 4.84, + "SOC4385": 4.57, + "SOC2320": 4.35, + "SOC3325": 4.67, + "SOC1301": 4.39, + "SOC4372": 4.87, + "SOC4384": 4.69 + } + } + ], + "david ritchey": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/445649", + "quality_rating": 4.5, + "difficulty_rating": 1.7, + "would_take_again": 88, + "original_rmp_format": "David Ritchey", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 108, + "tags": ["Clear grading criteria", "Respected", "Lecture heavy", "Caring", "So many papers"], + "rmp_id": "445649", + "instructor_id": "davidr", + "overall_grade_rating": 4.33, + "total_grade_count": 1189, + "course_ratings": { + "OBHR3310": 4.28, + "OBHR3330": 4.38, + "OBHR4333": 4.37, + "OBHR4350": 4.41 + } + } + ], + "ashutosh bhave": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2702268", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Ashutosh Bhave", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 1, + "tags": ["Group projects", "Clear grading criteria", "Lecture heavy"], + "rmp_id": "2702268", + "instructor_id": "acb140430", + "overall_grade_rating": 4.11, + "total_grade_count": 95, + "course_ratings": { + "MKT3300": 4.11 + } + } + ], + "stephen perkins": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1896482", + "quality_rating": 4, + "difficulty_rating": 3.7, + "would_take_again": 71, + "original_rmp_format": "Stephen Perkins", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 66, + "tags": [ + "Amazing lectures ", + "Skip class? You won't pass.", + "Respected", + "Clear grading criteria", + "Lots of homework" + ], + "rmp_id": "1896482", + "instructor_id": "sxp127930", + "overall_grade_rating": 3.48, + "total_grade_count": 552, + "course_ratings": { + "CS1337": 3.14, + "CS1200": 4.07, + "CS3377": 3.58, + "SE3377": 2.9 + } + } + ], + "hanna ulatowska": [ + { + "department": "Speech Language Pathology", + "url": "https://www.ratemyprofessors.com/professor/2134449", + "quality_rating": 1.2, + "difficulty_rating": 4.3, + "would_take_again": 0, + "original_rmp_format": "Hanna Ulatowska", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Lecture heavy", + "Get ready to read", + "Skip class? You won't pass.", + "Graded by few things" + ], + "rmp_id": "2134449", + "instructor_id": "hanna", + "overall_grade_rating": 4.08, + "total_grade_count": 116, + "course_ratings": { + "COMD7305": 4.67, + "PSY3350": 3.79, + "COMD7306": 4.89, + "PSY4393": 3.91, + "SPAU4393": 4.3 + } + } + ], + "russell stoneback": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/797772", + "quality_rating": 1.9, + "difficulty_rating": 3.8, + "would_take_again": 25, + "original_rmp_format": "Russell Stoneback", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 20, + "tags": [ + "Test heavy", + "Get ready to read", + "Tough grader", + "Lots of homework", + "Graded by few things" + ], + "rmp_id": "797772", + "instructor_id": "rstoneba", + "overall_grade_rating": 3.67, + "total_grade_count": 509, + "course_ratings": { + "PHYS2326": 3.82, + "PHYS1301": 3.51 + } + } + ], + "nicholas fey": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2543989", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Nicholas Fey", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 2, + "tags": [ + "Clear grading criteria", + "Accessible outside class", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2543989", + "instructor_id": "nxf160530", + "overall_grade_rating": 3.08, + "total_grade_count": 72, + "course_ratings": { + "BMEN2320": 3.58, + "MECH2330": 2.72 + } + } + ], + "minjung lee": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/2699834", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Minjung Lee", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 1, + "tags": ["Tough grader", "Caring", "Lecture heavy"], + "rmp_id": "2699834", + "instructor_id": "mxl170026", + "overall_grade_rating": 3.95, + "total_grade_count": 96, + "course_ratings": { + "IMS3310": 3.95, + "BPS4305": 3.94 + } + } + ], + "michael choate": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1052820", + "quality_rating": 4.6, + "difficulty_rating": 2.9, + "would_take_again": 86, + "original_rmp_format": "Michael Choate", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 19, + "tags": [ + "Caring", + "Gives good feedback", + "Respected", + "Accessible outside class", + "Skip class? You won't pass." + ], + "rmp_id": "1052820", + "instructor_id": "mchoate", + "overall_grade_rating": 4.5, + "total_grade_count": 83, + "course_ratings": { + "PSY3100": 4.76, + "PSY4395": 0.84, + "PSY4394": 0.84, + "PSY4193": 4.05 + } + } + ], + "umberto ciri": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2653547", + "quality_rating": 3.2, + "difficulty_rating": 3.4, + "would_take_again": 60, + "original_rmp_format": "Umberto Ciri", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 5, + "tags": [ + "Skip class? You won't pass.", + "Clear grading criteria", + "Gives good feedback", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2653547", + "instructor_id": "uxc150030", + "overall_grade_rating": 3.98, + "total_grade_count": 87, + "course_ratings": { + "MECH3315": 3.98 + } + } + ], + "denis dean": [ + { + "department": "Geography", + "url": "https://www.ratemyprofessors.com/professor/1399877", + "quality_rating": 3.4, + "difficulty_rating": 4, + "would_take_again": 50, + "original_rmp_format": "Denis Dean", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 4, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "Gives good feedback", + "Lots of homework", + "Accessible outside class" + ], + "rmp_id": "1399877", + "instructor_id": "djd081000", + "overall_grade_rating": 3.72, + "total_grade_count": 120, + "course_ratings": { + "GISC6379": 4.25, + "EPPS2301": 3.0, + "GEOG3304": 4.61, + "GISC3304": 4.2, + "EPPS2302": 3.41, + "GISC4325": 4.38 + } + } + ], + "irina vakulenko": [ + { + "department": "Geography & Geospatial Info. Syst.", + "url": "https://www.ratemyprofessors.com/professor/1360016", + "quality_rating": 4.5, + "difficulty_rating": 2.5, + "would_take_again": 80, + "original_rmp_format": "Irina Vakulenko", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 35, + "tags": [ + "Get ready to read", + "Skip class? You won't pass.", + "Amazing lectures ", + "Respected", + "Lecture heavy" + ], + "rmp_id": "1360016", + "instructor_id": "iav081000", + "overall_grade_rating": 3.94, + "total_grade_count": 543, + "course_ratings": { + "GEOG3377": 4.03, + "GEOG2303": 4.01, + "GEOG3357": 3.94, + "GEOG3370": 3.74, + "PA3377": 4.07, + "GEOG3382": 4.48, + "GEOG3331": 3.87, + "GEOG3359": 3.99, + "GEOG3372": 3.76, + "GEOG4396": 4.1 + } + } + ], + "mohammad hooshyar": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2143880", + "quality_rating": 3.7, + "difficulty_rating": 3.4, + "would_take_again": 50, + "original_rmp_format": "Mohammad Hooshyar", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 5, + "tags": [ + "Get ready to read", + "Clear grading criteria", + "Gives good feedback", + "Lots of homework", + "Caring" + ], + "rmp_id": "2143880", + "instructor_id": "ali", + "overall_grade_rating": 3.7, + "total_grade_count": 256, + "course_ratings": { + "MATH6315": 4.09, + "MATH3379": 3.3, + "MATH4334": 3.6, + "MATH2451": 3.97, + "MATH6316": 4.03 + } + } + ], + "kristina kirk": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2502678", + "quality_rating": 5, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Kristina Kirk", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 3, + "tags": [ + "Gives good feedback", + "Caring", + "Accessible outside class", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "2502678", + "instructor_id": "kek160430", + "overall_grade_rating": 4.34, + "total_grade_count": 122, + "course_ratings": { + "RHET1302": 4.37, + "LIT2331": 4.14 + } + } + ], + "thomas lambert": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2093021", + "quality_rating": 4.6, + "difficulty_rating": 2.6, + "would_take_again": 100, + "original_rmp_format": "Thomas Lambert", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 13, + "tags": [ + "Clear grading criteria", + "Hilarious", + "Caring", + "Get ready to read", + "EXTRA CREDIT" + ], + "rmp_id": "2093021", + "instructor_id": "tml017100", + "overall_grade_rating": 4.01, + "total_grade_count": 195, + "course_ratings": { + "LIT3330": 4.3, + "SPAN1312": 3.6, + "LIT3332": 4.17, + "SPAN1311": 3.69 + } + } + ], + "julia leverone": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2348080", + "quality_rating": 4.3, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Julia Leverone", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 4, + "tags": [ + "Caring", + "Accessible outside class", + "Participation matters", + "EXTRA CREDIT", + "Gives good feedback" + ], + "rmp_id": "2348080", + "instructor_id": "jxl162631", + "overall_grade_rating": 4.38, + "total_grade_count": 166, + "course_ratings": { + "SPAN1312": 4.33, + "CRWT2301": 4.07, + "CRWT3351": 4.36, + "SPAN2311": 4.12, + "LIT2331": 4.28, + "SPAN2312": 4.91, + "LIT3337": 4.58 + } + } + ], + "jonathan malesic": [ + { + "department": "Writing", + "url": "https://www.ratemyprofessors.com/professor/2700011", + "quality_rating": 2.5, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Jonathan Malesic", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 2, + "tags": [ + "Tough grader", + "Participation matters", + "Skip class? You won't pass.", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "2700011", + "instructor_id": "jxm210001", + "overall_grade_rating": 4.43, + "total_grade_count": 27, + "course_ratings": { + "CRWT3308": 4.43 + } + } + ], + "md fazle rabbi": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2589789", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Md. Fazle Rabbi", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 3, + "tags": [ + "Group projects", + "Participation matters", + "Clear grading criteria", + "Gives good feedback", + "Accessible outside class" + ], + "rmp_id": "2589789", + "instructor_id": "mxr163630", + "overall_grade_rating": 4.07, + "total_grade_count": 132, + "course_ratings": { + "PA3310": 3.75, + "PSCI3310": 4.22, + "PA3380": 3.97 + } + } + ], + "terrell bennett": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2448982", + "quality_rating": 3.4, + "difficulty_rating": 3.6, + "would_take_again": 60, + "original_rmp_format": "Terrell Bennett", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 5, + "tags": [ + "Group projects", + "Gives good feedback", + "Respected", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "2448982", + "instructor_id": "trb052000", + "overall_grade_rating": 4.25, + "total_grade_count": 124, + "course_ratings": { + "ECSC2100": 4.44, + "CE6302": 3.88, + "EEDG6302": 3.31 + } + } + ], + "david cordell": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1216203", + "quality_rating": 3.1, + "difficulty_rating": 4.2, + "would_take_again": 56, + "original_rmp_format": "David Cordell", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 55, + "tags": [ + "Lots of homework", + "Get ready to read", + "Tough grader", + "Skip class? You won't pass.", + "Test heavy" + ], + "rmp_id": "1216203", + "instructor_id": "dmc012300", + "overall_grade_rating": 3.14, + "total_grade_count": 450, + "course_ratings": { + "FIN3320": 3.01, + "FIN6300": 3.9, + "FIN4300": 3.46 + } + } + ], + "marcy palmer": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1725305", + "quality_rating": 4, + "difficulty_rating": 2.7, + "would_take_again": 50, + "original_rmp_format": "Marcy Palmer", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 3, + "tags": [ + "Gives good feedback", + "Participation matters", + "EXTRA CREDIT", + "Lots of homework", + "Lecture heavy" + ], + "rmp_id": "1725305", + "instructor_id": "mxp070100", + "overall_grade_rating": 4.07, + "total_grade_count": 244, + "course_ratings": { + "ARTS3379": 4.07, + "ARTS3372": 4.09, + "ARTS2315": 4.19, + "ARTS2350": 4.31, + "ARTS3377": 3.85 + } + } + ], + "shulamith kang": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/2698313", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Shulamith Kang", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 1, + "tags": ["Clear grading criteria", "Lots of homework", "So many papers"], + "rmp_id": "2698313", + "instructor_id": "sdk200001", + "overall_grade_rating": 3.93, + "total_grade_count": 288, + "course_ratings": { + "HIST6390": 3.9, + "HIST1302": 3.92, + "HIST4386": 3.96 + } + } + ], + "nanda kumar": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2126024", + "quality_rating": 2.3, + "difficulty_rating": 2.8, + "would_take_again": 33, + "original_rmp_format": "Nanda Kumar", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 11, + "tags": [ + "Group projects", + "Graded by few things", + "Participation matters", + "Get ready to read", + "Amazing lectures " + ], + "rmp_id": "2126024", + "instructor_id": "nkumar", + "overall_grade_rating": 4.27, + "total_grade_count": 284, + "course_ratings": { + "MKT6323": 4.4, + "MKT6353": 4.3, + "MKT6301": 4.19 + } + } + ], + "keith thurgood": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/2538538", + "quality_rating": 3.1, + "difficulty_rating": 3.3, + "would_take_again": 38, + "original_rmp_format": "Keith Thurgood", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 8, + "tags": [ + "EXTRA CREDIT", + "Test heavy", + "Get ready to read", + "Gives good feedback", + "Graded by few things" + ], + "rmp_id": "2538538", + "instructor_id": "klt160130", + "overall_grade_rating": 4.69, + "total_grade_count": 848, + "course_ratings": { + "HMGT6320": 4.77, + "MKT3330": 3.82, + "HMGT3301": 3.6, + "HMGT6340": 4.85, + "HMGT6329": 5.0, + "HMGT6325": 4.7 + } + } + ], + "chenglong zhang": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2522078", + "quality_rating": 2, + "difficulty_rating": 3.7, + "would_take_again": 0, + "original_rmp_format": "Chenglong Zhang", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 3, + "tags": ["Lecture heavy", "Tough grader", "Clear grading criteria", "Graded by few things"], + "rmp_id": "2522078", + "instructor_id": "cxz160530", + "overall_grade_rating": 4.71, + "total_grade_count": 54, + "course_ratings": { + "ITSS3312": 4.71 + } + } + ], + "jill cook": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2132904", + "quality_rating": 4.2, + "difficulty_rating": 2.4, + "would_take_again": 86, + "original_rmp_format": "Jill Cook", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 8, + "tags": [ + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Amazing lectures ", + "Caring", + "Group projects" + ], + "rmp_id": "2132904", + "instructor_id": "jbc140430", + "overall_grade_rating": 4.55, + "total_grade_count": 100, + "course_ratings": { + "HDCD5350": 4.88, + "PSY4325": 4.53 + } + } + ], + "yu liu": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2695356", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Yu Liu", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 3, + "tags": [ + "Gives good feedback", + "Amazing lectures ", + "Inspirational", + "EXTRA CREDIT", + "Caring" + ], + "rmp_id": "2695356", + "instructor_id": "yxl173230", + "overall_grade_rating": 4.01, + "total_grade_count": 106, + "course_ratings": { + "IMS3310": 4.01 + } + } + ], + "whitney sanders": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2610381", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Whitney Sanders", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": ["Tough grader", "Get ready to read"], + "rmp_id": "2610381", + "instructor_id": "wss190000", + "overall_grade_rating": 2.88, + "total_grade_count": 63, + "course_ratings": { + "CRIM1301": 2.88 + } + } + ], + "brenna hill": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1889897", + "quality_rating": 4.3, + "difficulty_rating": 3.1, + "would_take_again": 83, + "original_rmp_format": "Brenna Hill", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 14, + "tags": [ + "Caring", + "Skip class? You won't pass.", + "Gives good feedback", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "1889897", + "instructor_id": "brh140230", + "overall_grade_rating": 4.01, + "total_grade_count": 246, + "course_ratings": { + "BIOL2281": 4.12, + "BIOL3456": 3.67, + "BIOL3370": 4.23, + "BIOL3357": 4.35 + } + } + ], + "poras balsara": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/131340", + "quality_rating": 3.4, + "difficulty_rating": 3.8, + "would_take_again": 67, + "original_rmp_format": "Poras Balsara", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 16, + "tags": [ + "Respected", + "Skip class? You won't pass.", + "Gives good feedback", + "Caring", + "Tough grader" + ], + "rmp_id": "131340", + "instructor_id": "poras", + "overall_grade_rating": 3.5, + "total_grade_count": 40, + "course_ratings": { + "CE3320": 2.94, + "EE3320": 4.06 + } + } + ], + "sunshine williams": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2532406", + "quality_rating": 3.8, + "difficulty_rating": 2.7, + "would_take_again": 67, + "original_rmp_format": "Sunshine Williams", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 6, + "tags": [ + "Gives good feedback", + "Caring", + "Accessible outside class", + "Tough grader", + "Lots of homework" + ], + "rmp_id": "2532406", + "instructor_id": "saw170230", + "overall_grade_rating": 4.16, + "total_grade_count": 71, + "course_ratings": { + "RHET1302": 4.16 + } + } + ], + "mary ketchum": [ + { + "department": "Arts amp Humanities", + "url": "https://www.ratemyprofessors.com/professor/2673895", + "quality_rating": 2, + "difficulty_rating": 1.3, + "would_take_again": 33, + "original_rmp_format": "Mary Ketchum", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 3, + "tags": [ + "Lecture heavy", + "Participation matters", + "EXTRA CREDIT", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "2673895", + "instructor_id": "mak180021", + "overall_grade_rating": 4.34, + "total_grade_count": 26, + "course_ratings": { + "THEA1310": 4.34 + } + } + ], + "fan zhang": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1946104", + "quality_rating": 2.7, + "difficulty_rating": 3.4, + "would_take_again": 56, + "original_rmp_format": "Fan Zhang", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 25, + "tags": [ + "Get ready to read", + "Tough grader", + "Lots of homework", + "Caring", + "Graded by few things" + ], + "rmp_id": "1946104", + "instructor_id": "fxz140930", + "overall_grade_rating": 4.42, + "total_grade_count": 417, + "course_ratings": { + "PHYS2325": 4.0, + "PHYS2326": 4.52, + "PHYS5313": 4.66 + } + } + ], + "shelby hibbs": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2217666", + "quality_rating": 4.5, + "difficulty_rating": 2.1, + "would_take_again": 75, + "original_rmp_format": "Shelby Hibbs", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 8, + "tags": [ + "Participation matters", + "Gives good feedback", + "Group projects", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "2217666", + "instructor_id": "sah140730", + "overall_grade_rating": 4.57, + "total_grade_count": 217, + "course_ratings": { + "THEA3310": 4.97, + "THEA3323": 4.28, + "THEA3325": 4.2, + "THEA1310": 4.65 + } + } + ], + "yichen ding": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2683364", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Yichen Ding", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 1, + "tags": ["Skip class? You won't pass.", "Gives good feedback", "Accessible outside class"], + "rmp_id": "2683364", + "instructor_id": "yxd200010", + "overall_grade_rating": 4.07, + "total_grade_count": 135, + "course_ratings": { + "BMEN4110": 3.76, + "BMEN6394": 4.64, + "BMEN4371": 4.54 + } + } + ], + "toyah miller": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1938755", + "quality_rating": 2.5, + "difficulty_rating": 3.9, + "would_take_again": 18, + "original_rmp_format": "Toyah Miller", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 15, + "tags": [ + "Tough grader", + "Lecture heavy", + "Participation matters", + "So many papers", + "Get ready to read" + ], + "rmp_id": "1938755", + "instructor_id": "tlm140330", + "overall_grade_rating": 3.61, + "total_grade_count": 142, + "course_ratings": { + "BPS4305": 3.61 + } + } + ], + "jerome gafford": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2344900", + "quality_rating": 3.7, + "difficulty_rating": 2.3, + "would_take_again": 83, + "original_rmp_format": "Jerome Gafford", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 12, + "tags": [ + "Graded by few things", + "Participation matters", + "Clear grading criteria", + "EXTRA CREDIT", + "Gives good feedback" + ], + "rmp_id": "2344900", + "instructor_id": "jmg171130", + "overall_grade_rating": 4.31, + "total_grade_count": 574, + "course_ratings": { + "MKT3330": 4.37, + "MKT3300": 4.22, + "MKT4332": 2.95, + "MKT4335": 4.54 + } + } + ], + "michael cleveland": [ + { + "department": "Theater", + "url": "https://www.ratemyprofessors.com/professor/2629093", + "quality_rating": 4, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Michael Cleveland", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": ["Lots of homework", "Hilarious"], + "rmp_id": "2629093", + "instructor_id": "mxc112730", + "overall_grade_rating": 4.22, + "total_grade_count": 92, + "course_ratings": { + "THEA1310": 4.22 + } + } + ], + "kashif saeed": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/1946170", + "quality_rating": 4.1, + "difficulty_rating": 3, + "would_take_again": 65, + "original_rmp_format": "Kashif Saeed", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 44, + "tags": ["Amazing lectures ", "Caring", "Respected", "Inspirational", "Tough grader"], + "rmp_id": "1946170", + "instructor_id": "kxs147230", + "overall_grade_rating": 4.35, + "total_grade_count": 580, + "course_ratings": { + "MIS6309": 4.35, + "ACCT6309": 3.86, + "MIS6345": 4.45, + "BUAN6346": 4.34, + "BUAN6345": 4.32, + "MIS6346": 4.34 + } + } + ], + "sharathchandra ramakrishnan": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2637562", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Sharathchandra Ramakrishnan", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": ["Tough grader", "Participation matters", "Gives good feedback", "Inspirational"], + "rmp_id": "2637562", + "instructor_id": "sxr178530", + "overall_grade_rating": 3.78, + "total_grade_count": 65, + "course_ratings": { + "ATCM3301": 3.78 + } + } + ], + "alvaro cardenas": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1808430", + "quality_rating": 3.5, + "difficulty_rating": 3.2, + "would_take_again": 83, + "original_rmp_format": "Alvaro Cardenas", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 12, + "tags": [ + "Amazing lectures ", + "Tough grader", + "EXTRA CREDIT", + "Group projects", + "Would take again" + ], + "rmp_id": "1808430", + "instructor_id": "axc127431", + "overall_grade_rating": 4.62, + "total_grade_count": 52, + "course_ratings": { + "CS6301": 5.0, + "CS6324": 4.51 + } + } + ], + "kang zhang": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/182838", + "quality_rating": 3.5, + "difficulty_rating": 3.8, + "would_take_again": 55, + "original_rmp_format": "Kang Zhang", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 24, + "tags": [ + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Test heavy", + "Tough grader", + "Lecture heavy" + ], + "rmp_id": "182838", + "instructor_id": "kzhang", + "overall_grade_rating": 4.05, + "total_grade_count": 243, + "course_ratings": { + "CS6366": 4.41, + "CS2340": 3.27, + "CS3340": 3.87, + "CS6359": 4.38 + } + } + ], + "lizbette ocasio russe": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2189346", + "quality_rating": 5, + "difficulty_rating": 2.6, + "would_take_again": 100, + "original_rmp_format": "Lizbette Ocasio-Russe", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 11, + "tags": [ + "Gives good feedback", + "Participation matters", + "Hilarious", + "Caring", + "Clear grading criteria" + ], + "rmp_id": "2189346", + "instructor_id": "lxo160130", + "overall_grade_rating": 3.8, + "total_grade_count": 113, + "course_ratings": { + "RHET1302": 3.47, + "CRWT2301": 4.41 + } + } + ], + "robert wallace": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2121085", + "quality_rating": 1, + "difficulty_rating": 4.7, + "would_take_again": 0, + "original_rmp_format": "Robert Wallace", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 3, + "tags": [ + "Tough grader", + "Get ready to read", + "Tests are tough", + "Lots of homework", + "Beware of pop quizzes" + ], + "rmp_id": "2121085", + "instructor_id": "rmw031000", + "overall_grade_rating": 3.71, + "total_grade_count": 62, + "course_ratings": { + "MSEN6319": 3.86, + "MSEN5360": 3.48 + } + } + ], + "ramona dorough": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2005233", + "quality_rating": 1.3, + "difficulty_rating": 3.3, + "would_take_again": 0, + "original_rmp_format": "Ramona Dorough", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 3, + "tags": ["Lots of homework", "Tough grader", "Group projects"], + "rmp_id": "2005233", + "instructor_id": "rjd140130", + "overall_grade_rating": 3.56, + "total_grade_count": 44, + "course_ratings": { + "COMM1311": 3.56 + } + } + ], + "meng li": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1880796", + "quality_rating": 3.8, + "difficulty_rating": 2.8, + "would_take_again": 73, + "original_rmp_format": "Meng LI", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 29, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Test heavy", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "1880796", + "instructor_id": "mxl120531", + "overall_grade_rating": 3.76, + "total_grade_count": 240, + "course_ratings": { + "ACCT2301": 3.84, + "ACCT3341": 3.58 + } + } + ], + "donald hafer": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/588371", + "quality_rating": 4.5, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "Donald Hafer", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 23, + "tags": [ + "Hilarious", + "Test heavy", + "Clear grading criteria", + "Skip class? You won't pass.", + "Graded by few things" + ], + "rmp_id": "588371", + "instructor_id": "haferd", + "overall_grade_rating": 4.45, + "total_grade_count": 369, + "course_ratings": { + "PSY4328": 4.6, + "PSY4373": 3.77 + } + } + ], + "john burr": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1048570", + "quality_rating": 3.3, + "difficulty_rating": 3.4, + "would_take_again": 52, + "original_rmp_format": "John Burr", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 54, + "tags": ["Lecture heavy", "Test heavy", "Graded by few things", "Caring", "Tough grader"], + "rmp_id": "1048570", + "instructor_id": "burr", + "overall_grade_rating": 3.94, + "total_grade_count": 2026, + "course_ratings": { + "BIOL2111": 3.99, + "BIOL2311": 3.7, + "BIOL3102": 3.56, + "BIOL3302": 3.53, + "BIOL4345": 4.31, + "BIOL6351": 4.58, + "BIOL6341": 4.84, + "BIOL4366": 4.39, + "BIOL4353": 4.28, + "BIOL6345": 4.91 + } + } + ], + "rebecca newcomb": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/1891235", + "quality_rating": 2.5, + "difficulty_rating": 2.4, + "would_take_again": 20, + "original_rmp_format": "Rebecca Newcomb", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 21, + "tags": [ + "Lots of homework", + "Skip class? You won't pass.", + "Tough grader", + "Group projects", + "So many papers" + ], + "rmp_id": "1891235", + "instructor_id": "rgn100020", + "overall_grade_rating": 4.23, + "total_grade_count": 240, + "course_ratings": { + "BCOM3200": 4.19, + "ACCT3100": 4.66 + } + } + ], + "robert rodriguez": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2026842", + "quality_rating": 4.2, + "difficulty_rating": 3.2, + "would_take_again": 75, + "original_rmp_format": "Robert Rodriguez", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 5, + "tags": [ + "Gives good feedback", + "Respected", + "Amazing lectures ", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "2026842", + "instructor_id": "rxr014610", + "overall_grade_rating": 4.8, + "total_grade_count": 121, + "course_ratings": { + "HUAS6399": 4.44, + "HUMA6300": 4.71, + "MUSI3112": 5.0, + "VPAS6300": 3.96, + "MUSI4112": 4.89 + } + } + ], + "lloyd atabansi": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2549759", + "quality_rating": 3.3, + "difficulty_rating": 2.8, + "would_take_again": 50, + "original_rmp_format": "Lloyd Atabansi", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 4, + "tags": [ + "Participation matters", + "Group projects", + "Caring", + "Respected", + "Graded by few things" + ], + "rmp_id": "2549759", + "instructor_id": "laa190003", + "overall_grade_rating": 4.77, + "total_grade_count": 32, + "course_ratings": { + "MIS6320": 4.61, + "OPRE6393": 4.97 + } + } + ], + "diane mcnulty": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1921575", + "quality_rating": 4.3, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Diane McNulty", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": [ + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "1921575", + "instructor_id": "dmcnulty", + "overall_grade_rating": 4.64, + "total_grade_count": 372, + "course_ratings": { + "OBHR4310": 4.64 + } + } + ], + "patrick winter": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2183621", + "quality_rating": 2.1, + "difficulty_rating": 3.7, + "would_take_again": 25, + "original_rmp_format": "Patrick Winter", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 16, + "tags": [ + "Tough grader", + "Lots of homework", + "Get ready to read", + "Skip class? You won't pass.", + "Clear grading criteria" + ], + "rmp_id": "2183621", + "instructor_id": "pxw151030", + "overall_grade_rating": 3.83, + "total_grade_count": 415, + "course_ratings": { + "BMEN3120": 4.01, + "BMEN3320": 3.53, + "BMEN3380": 3.87, + "BMEN3150": 3.82, + "BMEN6394": 4.46 + } + } + ], + "gabriele meloni": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2230595", + "quality_rating": 5, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "Gabriele Meloni", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 7, + "tags": ["Caring", "Amazing lectures ", "Hilarious", "Lecture heavy", "Test heavy"], + "rmp_id": "2230595", + "instructor_id": "gxm152330", + "overall_grade_rating": 4.37, + "total_grade_count": 459, + "course_ratings": { + "CHEM6100": 4.93, + "CHEM6361": 4.31, + "BIOL3161": 3.42, + "CHEM5361": 4.68 + } + } + ], + "megan fitzmaurice": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2650969", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Megan Fitzmaurice", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 1, + "tags": ["Clear grading criteria", "Caring", "Accessible outside class"], + "rmp_id": "2650969", + "instructor_id": "mif200001", + "overall_grade_rating": 3.4, + "total_grade_count": 89, + "course_ratings": { + "BCOM3300": 3.4 + } + } + ], + "ghazal saeidfar": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2493546", + "quality_rating": 2, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Ghazal Saeidfar", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 1, + "tags": ["Gives good feedback", "Graded by few things", "Accessible outside class"], + "rmp_id": "2493546", + "instructor_id": "gxs153630", + "overall_grade_rating": 4.27, + "total_grade_count": 128, + "course_ratings": { + "RHET1302": 4.27 + } + } + ], + "kristen kennedy": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/1977806", + "quality_rating": 4.2, + "difficulty_rating": 3.2, + "would_take_again": 60, + "original_rmp_format": "Kristen Kennedy", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 9, + "tags": [ + "Respected", + "Amazing lectures ", + "Would take again", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "1977806", + "instructor_id": "kmk082000", + "overall_grade_rating": 4.01, + "total_grade_count": 280, + "course_ratings": { + "NSC4385": 4.08, + "ACN6338": 3.87, + "HCS6338": 4.48 + } + } + ], + "alessio saretto": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1815554", + "quality_rating": 3.3, + "difficulty_rating": 3.7, + "would_take_again": 43, + "original_rmp_format": "Alessio Saretto", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 8, + "tags": [ + "Lots of homework", + "Hilarious", + "Get ready to read", + "Tough grader", + "Group projects" + ], + "rmp_id": "1815554", + "instructor_id": "axs125732", + "overall_grade_rating": 4.21, + "total_grade_count": 213, + "course_ratings": { + "FIN6360": 4.36, + "FIN4340": 3.89, + "FIN4300": 4.18 + } + } + ], + "ashutosh prasad": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/1479322", + "quality_rating": 2.8, + "difficulty_rating": 2.5, + "would_take_again": 50, + "original_rmp_format": "Ashutosh Prasad", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 10, + "tags": [ + "Group projects", + "Tough grader", + "Get ready to read", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "1479322", + "instructor_id": "aprasad", + "overall_grade_rating": 4.58, + "total_grade_count": 33, + "course_ratings": { + "MKT6309": 4.45, + "MKT6301": 4.71 + } + } + ], + "arthur redfern": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2437149", + "quality_rating": 3.4, + "difficulty_rating": 3.6, + "would_take_again": 40, + "original_rmp_format": "Arthur Redfern", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 5, + "tags": [ + "Get ready to read", + "Lots of homework", + "Amazing lectures ", + "Inspirational", + "Hilarious" + ], + "rmp_id": "2437149", + "instructor_id": "axr180074", + "overall_grade_rating": 4.53, + "total_grade_count": 90, + "course_ratings": { + "CS6301": 4.53 + } + } + ], + "julie garza horne": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2652367", + "quality_rating": 1, + "difficulty_rating": 2, + "would_take_again": 0, + "original_rmp_format": "Julie Garza-Horne", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": [], + "rmp_id": "2652367", + "instructor_id": "jxg200028", + "overall_grade_rating": 4.34, + "total_grade_count": 141, + "course_ratings": { + "BCOM4350": 4.37, + "BCOM3310": 4.26 + } + } + ], + "juliann chapman": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2215265", + "quality_rating": 4.4, + "difficulty_rating": 2.2, + "would_take_again": 95, + "original_rmp_format": "Juliann Chapman", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 22, + "tags": [ + "EXTRA CREDIT", + "Caring", + "Clear grading criteria", + "Lots of homework", + "Inspirational" + ], + "rmp_id": "2215265", + "instructor_id": "jgc160130", + "overall_grade_rating": 4.42, + "total_grade_count": 504, + "course_ratings": { + "FIN3330": 4.42 + } + } + ], + "yang hu": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2353643", + "quality_rating": 4, + "difficulty_rating": 3.2, + "would_take_again": 75, + "original_rmp_format": "Yang Hu", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 8, + "tags": [ + "Caring", + "Get ready to read", + "Graded by few things", + "Clear grading criteria", + "Respected" + ], + "rmp_id": "2353643", + "instructor_id": "yxh177430", + "overall_grade_rating": 4.64, + "total_grade_count": 232, + "course_ratings": { + "EE3102": 4.58, + "CE4304": 4.55, + "EE4304": 4.33, + "CE3302": 4.7, + "EE3302": 4.48, + "CE6304": 4.96, + "CS6304": 5.0, + "EEDG6304": 5.0 + } + } + ], + "dong qian": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1956457", + "quality_rating": 4.3, + "difficulty_rating": 3.2, + "would_take_again": 100, + "original_rmp_format": "Dong Qian", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 6, + "tags": [ + "Respected", + "Amazing lectures ", + "Lots of homework", + "Accessible outside class", + "Skip class? You won't pass." + ], + "rmp_id": "1956457", + "instructor_id": "dxq120430", + "overall_grade_rating": 4.59, + "total_grade_count": 366, + "course_ratings": { + "MECH3351": 4.16, + "MECH6351": 4.56, + "MECH7000": 4.92, + "MECH6353": 4.84, + "MECH6306": 4.58 + } + } + ], + "james smallwood": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2306839", + "quality_rating": 3.8, + "difficulty_rating": 1.4, + "would_take_again": 83, + "original_rmp_format": "James Smallwood", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 12, + "tags": [ + "Caring", + "Participation matters", + "Group projects", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2306839", + "instructor_id": "jes094020", + "overall_grade_rating": 4.46, + "total_grade_count": 177, + "course_ratings": { + "BCOM3100": 4.71, + "BCOM3200": 4.49, + "FIN3100": 4.15 + } + } + ], + "inki sul": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2613215", + "quality_rating": 4, + "difficulty_rating": 3.7, + "would_take_again": 100, + "original_rmp_format": "Inki Sul", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 7, + "tags": [ + "Accessible outside class", + "Skip class? You won't pass.", + "Lecture heavy", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "2613215", + "instructor_id": "ixs161130", + "overall_grade_rating": 3.95, + "total_grade_count": 81, + "course_ratings": { + "OPRE3360": 3.95 + } + } + ], + "grace mueller": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2609105", + "quality_rating": 5, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Grace Mueller", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 7, + "tags": [ + "Accessible outside class", + "Amazing lectures ", + "Respected", + "Get ready to read", + "Clear grading criteria" + ], + "rmp_id": "2609105", + "instructor_id": "gbm090020", + "overall_grade_rating": 4.08, + "total_grade_count": 80, + "course_ratings": { + "PSCI3328": 4.08 + } + } + ], + "jason warren": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2358809", + "quality_rating": 1.8, + "difficulty_rating": 3.3, + "would_take_again": 11, + "original_rmp_format": "Jason Warren", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 9, + "tags": [ + "Tough grader", + "Lots of homework", + "Participation matters", + "EXTRA CREDIT", + "Get ready to read" + ], + "rmp_id": "2358809", + "instructor_id": "jxw174630", + "overall_grade_rating": 3.48, + "total_grade_count": 80, + "course_ratings": { + "COMM1311": 3.79, + "COMM1315": 3.18 + } + } + ], + "miranda welbourne eleazar": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2406734", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Miranda Welbourne-Eleazar", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 1, + "tags": ["Group projects", "Gives good feedback", "Accessible outside class"], + "rmp_id": "2406734", + "instructor_id": "mjw160530", + "overall_grade_rating": 3.38, + "total_grade_count": 38, + "course_ratings": { + "ENTP4330": 3.38 + } + } + ], + "roshonda gibson": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2636160", + "quality_rating": 2.5, + "difficulty_rating": 1.5, + "would_take_again": 50, + "original_rmp_format": "Roshonda Gibson", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": ["Skip class? You won't pass.", "Group projects"], + "rmp_id": "2636160", + "instructor_id": "rxg130930", + "overall_grade_rating": 4.63, + "total_grade_count": 93, + "course_ratings": { + "BCOM4350": 4.63 + } + } + ], + "ilya sapozhnikov": [ + { + "department": "Science", + "url": "https://www.ratemyprofessors.com/professor/795522", + "quality_rating": 2.6, + "difficulty_rating": 2, + "would_take_again": 62, + "original_rmp_format": "Ilya Sapozhnikov", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 95, + "tags": ["Lecture heavy", "Caring", "Test heavy", "Respected", "Get ready to read"], + "rmp_id": "795522", + "instructor_id": "isapoz", + "overall_grade_rating": 4.64, + "total_grade_count": 513, + "course_ratings": { + "BIOL2350": 4.43, + "BIOL3355": 4.94 + } + } + ], + "wenjin pang": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2161877", + "quality_rating": 2.7, + "difficulty_rating": 4.2, + "would_take_again": 33, + "original_rmp_format": "Wenjin Pang", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Lecture heavy", + "Test heavy", + "Graded by few things", + "Get ready to read" + ], + "rmp_id": "2161877", + "instructor_id": "wxp042000", + "overall_grade_rating": 3.68, + "total_grade_count": 73, + "course_ratings": { + "ACCT6330": 3.33, + "ACCT6354": 3.91 + } + } + ], + "awanti sethi": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/2357218", + "quality_rating": 4, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Awanti Sethi", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 1, + "tags": ["Participation matters", "Group projects"], + "rmp_id": "2357218", + "instructor_id": "asethi", + "overall_grade_rating": 4.19, + "total_grade_count": 1679, + "course_ratings": { + "OPRE6303": 4.17, + "OPRE6332": 4.24, + "OPRE6301": 4.07, + "BUAN6398": 4.33, + "OPRE6398": 4.41, + "OPRE6359": 4.4, + "BUAN6359": 4.37 + } + } + ], + "raul rojas villarreal": [ + { + "department": "Speech & Language Pathology", + "url": "https://www.ratemyprofessors.com/professor/2539002", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Raul Rojas-Villarreal", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": [ + "EXTRA CREDIT", + "Participation matters", + "Skip class? You won't pass.", + "Gives good feedback", + "Lecture heavy" + ], + "rmp_id": "2539002", + "instructor_id": "rxr105520", + "overall_grade_rating": 4.62, + "total_grade_count": 104, + "course_ratings": { + "SPAU4308": 4.62 + } + } + ], + "nick hinojosa": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1912130", + "quality_rating": 4, + "difficulty_rating": 2.3, + "would_take_again": 78, + "original_rmp_format": "Nick Hinojosa", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 23, + "tags": ["Amazing lectures ", "Caring", "Respected", "Inspirational", "Hilarious"], + "rmp_id": "1912130", + "instructor_id": "ngh061000", + "overall_grade_rating": 3.56, + "total_grade_count": 88, + "course_ratings": { + "BA1100": 3.56 + } + } + ], + "shawn varghese": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/2406973", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Shawn Varghese", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 4, + "tags": ["Amazing lectures ", "Respected", "Clear grading criteria", "Lecture heavy"], + "rmp_id": "2406973", + "instructor_id": "sxv140730", + "overall_grade_rating": 4.39, + "total_grade_count": 77, + "course_ratings": { + "HIST1302": 4.39 + } + } + ], + "amanda field": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2542890", + "quality_rating": 1, + "difficulty_rating": 2, + "would_take_again": 0, + "original_rmp_format": "Amanda Field", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 1, + "tags": ["Get ready to read", "Participation matters", "Accessible outside class"], + "rmp_id": "2542890", + "instructor_id": "axl151930", + "overall_grade_rating": 4.44, + "total_grade_count": 71, + "course_ratings": { + "RHET1302": 4.34, + "CRWT2301": 4.85 + } + } + ], + "yulia gel": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/1880993", + "quality_rating": 4.5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Yulia Gel", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 10, + "tags": [ + "Clear grading criteria", + "Hilarious", + "Caring", + "Respected", + "Graded by few things" + ], + "rmp_id": "1880993", + "instructor_id": "yxg142030", + "overall_grade_rating": 4.99, + "total_grade_count": 62, + "course_ratings": { + "STAT6348": 5.0, + "STAT6347": 5.0, + "STAT7331": 4.95 + } + } + ], + "zsuzsanna ozsvath": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/962223", + "quality_rating": 3.9, + "difficulty_rating": 3, + "would_take_again": 67, + "original_rmp_format": "Zsuzsanna Ozsvath", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 9, + "tags": [ + "Inspirational", + "Get ready to read", + "Participation matters", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "962223", + "instructor_id": "zozsvath", + "overall_grade_rating": 4.04, + "total_grade_count": 66, + "course_ratings": { + "HUHI6338": 4.82, + "LIT3343": 3.85, + "HIST4332": 4.0 + } + } + ], + "frederick turner": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/766297", + "quality_rating": 3.9, + "difficulty_rating": 3.1, + "would_take_again": 100, + "original_rmp_format": "Frederick Turner", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 13, + "tags": ["Amazing lectures ", "Respected", "Clear grading criteria", "Would take again"], + "rmp_id": "766297", + "instructor_id": "fturner", + "overall_grade_rating": 4.61, + "total_grade_count": 16, + "course_ratings": { + "LIT3382": 4.61 + } + } + ], + "jon reid": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2139294", + "quality_rating": 3.5, + "difficulty_rating": 2.3, + "would_take_again": 75, + "original_rmp_format": "Jon Reid", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 13, + "tags": [ + "Amazing lectures ", + "Get ready to read", + "Skip class? You won't pass.", + "Caring", + "Tough grader" + ], + "rmp_id": "2139294", + "instructor_id": "jkr150330", + "overall_grade_rating": 3.84, + "total_grade_count": 248, + "course_ratings": { + "PSY4346": 4.1, + "PSY4323": 3.5 + } + } + ], + "debra dewitte": [ + { + "department": "Art History", + "url": "https://www.ratemyprofessors.com/professor/1385938", + "quality_rating": 2.6, + "difficulty_rating": 3.1, + "would_take_again": 35, + "original_rmp_format": "Debra Dewitte", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 42, + "tags": [ + "Get ready to read", + "Graded by few things", + "Test heavy", + "Tough grader", + "Lecture heavy" + ], + "rmp_id": "1385938", + "instructor_id": "djd011500", + "overall_grade_rating": 4.11, + "total_grade_count": 496, + "course_ratings": { + "AHST2331": 4.11 + } + } + ], + "julia evans": [ + { + "department": "Speech Language Pathology", + "url": "https://www.ratemyprofessors.com/professor/1994199", + "quality_rating": 3.3, + "difficulty_rating": 3.8, + "would_take_again": 71, + "original_rmp_format": "Julia Evans", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 13, + "tags": [ + "Get ready to read", + "Amazing lectures ", + "Test heavy", + "Tough grader", + "Skip class? You won't pass." + ], + "rmp_id": "1994199", + "instructor_id": "jle130030", + "overall_grade_rating": 4.68, + "total_grade_count": 221, + "course_ratings": { + "CLDP3303": 4.6, + "SPAU3303": 4.67, + "COMD6307": 4.76, + "HCS7324": 5.0 + } + } + ], + "virginie kidwell": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1906334", + "quality_rating": 4.6, + "difficulty_rating": 2.4, + "would_take_again": 83, + "original_rmp_format": "Virginie Kidwell", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 10, + "tags": [ + "Participation matters", + "Clear grading criteria", + "Gives good feedback", + "Inspirational", + "Respected" + ], + "rmp_id": "1906334", + "instructor_id": "vxk133330", + "overall_grade_rating": 4.95, + "total_grade_count": 85, + "course_ratings": { + "OB6301": 4.95 + } + } + ], + "sriharsha kamatham": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2526754", + "quality_rating": 3.2, + "difficulty_rating": 2.3, + "would_take_again": 50, + "original_rmp_format": "Sriharsha Kamatham", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 6, + "tags": [ + "Participation matters", + "Group projects", + "Skip class? You won't pass.", + "Gives good feedback", + "Accessible outside class" + ], + "rmp_id": "2526754", + "instructor_id": "sxk152031", + "overall_grade_rating": 4.25, + "total_grade_count": 30, + "course_ratings": { + "MKT3340": 4.25 + } + } + ], + "michael hasler": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2596775", + "quality_rating": 3, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Michael Hasler", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 1, + "tags": ["Lecture heavy", "Test heavy", "Graded by few things"], + "rmp_id": "2596775", + "instructor_id": "mxh190031", + "overall_grade_rating": 3.5, + "total_grade_count": 148, + "course_ratings": { + "FIN4310": 3.44, + "FIN7330": 4.33 + } + } + ], + "john barfoot": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/642769", + "quality_rating": 4, + "difficulty_rating": 1.7, + "would_take_again": 71, + "original_rmp_format": "John Barfoot", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 66, + "tags": [ + "Lecture heavy", + "Clear grading criteria", + "Gives good feedback", + "Inspirational", + "Caring" + ], + "rmp_id": "642769", + "instructor_id": "jwb043000", + "overall_grade_rating": 4.28, + "total_grade_count": 446, + "course_ratings": { + "CLDP3342": 4.37, + "PSY3333": 4.26, + "PSY3342": 4.17, + "SPAU3342": 4.18, + "HCS7376": 4.96 + } + } + ], + "theodore day": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1356725", + "quality_rating": 2.1, + "difficulty_rating": 4.5, + "would_take_again": 25, + "original_rmp_format": "Theodore Day", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 19, + "tags": [ + "Tough grader", + "Lecture heavy", + "Skip class? You won't pass.", + "Test heavy", + "Accessible outside class" + ], + "rmp_id": "1356725", + "instructor_id": "tday", + "overall_grade_rating": 3.49, + "total_grade_count": 126, + "course_ratings": { + "FIN6301": 3.09, + "FIN6352": 4.16 + } + } + ], + "greg metz": [ + { + "department": "Fine Arts", + "url": "https://www.ratemyprofessors.com/professor/472025", + "quality_rating": 3, + "difficulty_rating": 3.8, + "would_take_again": 0, + "original_rmp_format": "Greg Metz", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 12, + "tags": [ + "Lecture heavy", + "Participation matters", + "Skip class? You won't pass.", + "Would take again", + "Gives good feedback" + ], + "rmp_id": "472025", + "instructor_id": "glmetz", + "overall_grade_rating": 4.13, + "total_grade_count": 62, + "course_ratings": { + "ARTS3378": 4.02, + "ARTS4310": 3.99, + "HUAS6313": 4.44, + "ARTS1316": 4.25 + } + } + ], + "michael rugg": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/1688858", + "quality_rating": 2.8, + "difficulty_rating": 3.5, + "would_take_again": 0, + "original_rmp_format": "Michael Rugg", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": ["Participation matters", "So many papers", "Graded by few things"], + "rmp_id": "1688858", + "instructor_id": "mdr104020", + "overall_grade_rating": 4.58, + "total_grade_count": 33, + "course_ratings": { + "HCS7364": 4.56, + "ACN7364": 4.62 + } + } + ], + "john geissman": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/1916002", + "quality_rating": 3.7, + "difficulty_rating": 3.4, + "would_take_again": 100, + "original_rmp_format": "John Geissman", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 10, + "tags": ["Tough grader", "Caring", "Respected", "Amazing lectures ", "Gives good feedback"], + "rmp_id": "1916002", + "instructor_id": "jwg102020", + "overall_grade_rating": 4.56, + "total_grade_count": 45, + "course_ratings": { + "NATS1101": 4.66, + "GEOS3300": 4.24 + } + } + ], + "yabo zhao": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2611188", + "quality_rating": 4, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Yabo Zhao", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 1, + "tags": ["Skip class? You won't pass.", "Test heavy", "Accessible outside class"], + "rmp_id": "2611188", + "instructor_id": "yxz163130", + "overall_grade_rating": 3.91, + "total_grade_count": 33, + "course_ratings": { + "FIN3320": 3.91 + } + } + ], + "evan lowe": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2302624", + "quality_rating": 4.1, + "difficulty_rating": 2.5, + "would_take_again": 78, + "original_rmp_format": "Evan Lowe", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 76, + "tags": [ + "Hilarious", + "Lecture heavy", + "Get ready to read", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2302624", + "instructor_id": "exl171930", + "overall_grade_rating": 3.46, + "total_grade_count": 966, + "course_ratings": { + "GOVT2306": 3.53, + "GOVT2305": 2.83, + "PSCI3301": 3.72 + } + } + ], + "laurel dingrando": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/2485326", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Laurel Dingrando", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": [ + "Get ready to read", + "Participation matters", + "Skip class? You won't pass.", + "Inspirational", + "Caring" + ], + "rmp_id": "2485326", + "instructor_id": "lpd015000", + "overall_grade_rating": 4.35, + "total_grade_count": 87, + "course_ratings": { + "NATS3341": 4.35 + } + } + ], + "john taden": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2556404", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "John Taden", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback", + "Hilarious", + "Accessible outside class" + ], + "rmp_id": "2556404", + "instructor_id": "jxt161530", + "overall_grade_rating": 3.91, + "total_grade_count": 33, + "course_ratings": { + "EPPS2301": 3.91 + } + } + ], + "lale guler": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2142644", + "quality_rating": 4.1, + "difficulty_rating": 3.5, + "would_take_again": 77, + "original_rmp_format": "Lale Guler", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 54, + "tags": [ + "Group projects", + "Respected", + "Participation matters", + "Clear grading criteria", + "Tough grader" + ], + "rmp_id": "2142644", + "instructor_id": "lxg152230", + "overall_grade_rating": 4.45, + "total_grade_count": 177, + "course_ratings": { + "ACCT6334": 4.57, + "ACCT6301": 4.36 + } + } + ], + "daniel pacheco": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2274094", + "quality_rating": 3.4, + "difficulty_rating": 2.2, + "would_take_again": 60, + "original_rmp_format": "Daniel Pacheco", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 5, + "tags": [ + "Graded by few things", + "Get ready to read", + "Skip class? You won't pass.", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2274094", + "instructor_id": "pdaniel", + "overall_grade_rating": 3.77, + "total_grade_count": 21, + "course_ratings": { + "PSY2317": 3.77 + } + } + ], + "seth hays": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2187263", + "quality_rating": 4.3, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Seth Hays", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 3, + "tags": [ + "Gives good feedback", + "Test heavy", + "Get ready to read", + "Inspirational", + "Graded by few things" + ], + "rmp_id": "2187263", + "instructor_id": "sxh129730", + "overall_grade_rating": 4.17, + "total_grade_count": 163, + "course_ratings": { + "BMEN3330": 3.96, + "BMEN6395": 4.86, + "BMEN3332": 3.95 + } + } + ], + "john santrock": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/316745", + "quality_rating": 3.1, + "difficulty_rating": 3.6, + "would_take_again": 68, + "original_rmp_format": "John Santrock", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 65, + "tags": [ + "Get ready to read", + "Skip class? You won't pass.", + "Tough grader", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "316745", + "instructor_id": "santrock", + "overall_grade_rating": 3.33, + "total_grade_count": 283, + "course_ratings": { + "CLDP3339": 3.17, + "PSY3339": 3.94, + "CLDP2314": 2.74, + "PSY2314": 3.27, + "CLDP3338": 3.43, + "PSY3338": 3.53 + } + } + ], + "don vogel": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1867538", + "quality_rating": 3.7, + "difficulty_rating": 2.6, + "would_take_again": 84, + "original_rmp_format": "Don Vogel", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 46, + "tags": [ + "Clear grading criteria", + "Gives good feedback", + "EXTRA CREDIT", + "Lecture heavy", + "Lots of homework" + ], + "rmp_id": "1867538", + "instructor_id": "dgv130030", + "overall_grade_rating": 3.92, + "total_grade_count": 1470, + "course_ratings": { + "CS1136": 3.97, + "CS2336": 4.1, + "CS1336": 2.72, + "CS1337": 3.72, + "CE1337": 3.94 + } + } + ], + "carl hasler": [ + { + "department": "Philosophy", + "url": "https://www.ratemyprofessors.com/professor/2323872", + "quality_rating": 3.8, + "difficulty_rating": 3.6, + "would_take_again": 73, + "original_rmp_format": "Carl Hasler", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 15, + "tags": [ + "Get ready to read", + "Skip class? You won't pass.", + "Hilarious", + "Tough grader", + "Test heavy" + ], + "rmp_id": "2323872", + "instructor_id": "cxh165030", + "overall_grade_rating": 3.33, + "total_grade_count": 242, + "course_ratings": { + "PHIL1301": 3.47, + "HUMA1301": 2.97 + } + } + ], + "tevfik dalgic": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1448690", + "quality_rating": 3.4, + "difficulty_rating": 2.7, + "would_take_again": 0, + "original_rmp_format": "Tevfik Dalgic", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 12, + "tags": ["Tough grader", "Participation matters", "Group projects", "Graded by few things"], + "rmp_id": "1448690", + "instructor_id": "tdalgic", + "overall_grade_rating": 4.67, + "total_grade_count": 73, + "course_ratings": { + "IMS6314": 4.67 + } + } + ], + "minyu han": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2598202", + "quality_rating": 1, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Minyu Han", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 1, + "tags": ["Get ready to read", "Clear grading criteria"], + "rmp_id": "2598202", + "instructor_id": "mxh162130", + "overall_grade_rating": 4.42, + "total_grade_count": 34, + "course_ratings": { + "ECON2301": 4.42 + } + } + ], + "ghanshyamsinh gohil": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2325171", + "quality_rating": 4, + "difficulty_rating": 4.5, + "would_take_again": 50, + "original_rmp_format": "Ghanshyamsinh Gohil", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 2, + "tags": ["Skip class? You won't pass.", "Lots of homework", "Lecture heavy"], + "rmp_id": "2325171", + "instructor_id": "gxg172530", + "overall_grade_rating": 4.61, + "total_grade_count": 19, + "course_ratings": { + "EEPE6359": 4.61 + } + } + ], + "robert fee": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2585458", + "quality_rating": 1.2, + "difficulty_rating": 2.2, + "would_take_again": 0, + "original_rmp_format": "Robert Fee", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 6, + "tags": [ + "Group projects", + "Lecture heavy", + "Graded by few things", + "Accessible outside class" + ], + "rmp_id": "2585458", + "instructor_id": "rxf160930", + "overall_grade_rating": 4.25, + "total_grade_count": 10, + "course_ratings": { + "ATCM4340": 4.25 + } + } + ], + "kristi compton": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2079502", + "quality_rating": 4.4, + "difficulty_rating": 2.2, + "would_take_again": 75, + "original_rmp_format": "Kristi Compton", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 6, + "tags": [ + "Amazing lectures ", + "Inspirational", + "Hilarious", + "Skip class? You won't pass.", + "Participation matters" + ], + "rmp_id": "2079502", + "instructor_id": "klc130130", + "overall_grade_rating": 4.88, + "total_grade_count": 155, + "course_ratings": { + "PSY4372": 4.88 + } + } + ], + "latoya watkins": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2598605", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Latoya Watkins", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 1, + "tags": ["Gives good feedback", "Inspirational", "Caring"], + "rmp_id": "2598605", + "instructor_id": "lws031000", + "overall_grade_rating": 4.35, + "total_grade_count": 40, + "course_ratings": { + "HUAS6354": 4.65, + "CRWT3306": 4.23 + } + } + ], + "ebenezer oladimeji": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1903256", + "quality_rating": 4, + "difficulty_rating": 2.7, + "would_take_again": 77, + "original_rmp_format": "Ebenezer Oladimeji", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 19, + "tags": [ + "Respected", + "Gives good feedback", + "Clear grading criteria", + "Accessible outside class", + "Participation matters" + ], + "rmp_id": "1903256", + "instructor_id": "eao015100", + "overall_grade_rating": 3.9, + "total_grade_count": 151, + "course_ratings": { + "CS1337": 3.92, + "CE3354": 3.54, + "CS3354": 4.44, + "SE3354": 4.14, + "CS4337": 3.4 + } + } + ], + "jonathan maskaly": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2210989", + "quality_rating": 4.3, + "difficulty_rating": 3.5, + "would_take_again": 70, + "original_rmp_format": "Jonathan Maskaly", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 10, + "tags": [ + "Get ready to read", + "Tough grader", + "Gives good feedback", + "Participation matters", + "Amazing lectures " + ], + "rmp_id": "2210989", + "instructor_id": "jxm166430", + "overall_grade_rating": 3.86, + "total_grade_count": 55, + "course_ratings": { + "CRIM2313": 3.36, + "EPPS6313": 4.53, + "CRIM6311": 4.21 + } + } + ], + "robert marsh": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/957387", + "quality_rating": 2.7, + "difficulty_rating": 3.7, + "would_take_again": 38, + "original_rmp_format": "Robert Marsh", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 30, + "tags": [ + "Lecture heavy", + "Skip class? You won't pass.", + "Tough grader", + "Get ready to read", + "Test heavy" + ], + "rmp_id": "957387", + "instructor_id": "rmarsh", + "overall_grade_rating": 3.16, + "total_grade_count": 452, + "course_ratings": { + "BIOL3361": 3.19, + "CHEM3361": 3.07, + "BIOL3161": 3.13 + } + } + ], + "milton cohen": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/244201", + "quality_rating": 3.9, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Milton Cohen", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 18, + "tags": [ + "Gives good feedback", + "Get ready to read", + "Tough grader", + "Would take again", + "Respected" + ], + "rmp_id": "244201", + "instructor_id": "mcohen", + "overall_grade_rating": 3.51, + "total_grade_count": 44, + "course_ratings": { + "LIT4348": 3.47, + "LIT3312": 3.59 + } + } + ], + "betty mathew": [ + { + "department": "Speech Language Pathology", + "url": "https://www.ratemyprofessors.com/professor/2230108", + "quality_rating": 4, + "difficulty_rating": 3.2, + "would_take_again": 86, + "original_rmp_format": "Betty Mathew", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 7, + "tags": [ + "Clear grading criteria", + "Lecture heavy", + "Amazing lectures ", + "Respected", + "Skip class? You won't pass." + ], + "rmp_id": "2230108", + "instructor_id": "bsm170230", + "overall_grade_rating": 4.32, + "total_grade_count": 84, + "course_ratings": { + "COMD5344": 4.69, + "SPAU3344": 4.28 + } + } + ], + "michael huskey": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2363695", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 75, + "original_rmp_format": "Michael Huskey", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 4, + "tags": [ + "Participation matters", + "Clear grading criteria", + "Gives good feedback", + "Get ready to read", + "Lots of homework" + ], + "rmp_id": "2363695", + "instructor_id": "mxh160630", + "overall_grade_rating": 3.43, + "total_grade_count": 119, + "course_ratings": { + "CRIM3302": 4.25, + "CRIM1301": 3.13, + "CRIM3320": 3.44 + } + } + ], + "tom brikowski": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/985103", + "quality_rating": 2.3, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Tom Brikowski", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 27, + "tags": [ + "Tough grader", + "Get ready to read", + "Lots of homework", + "Test heavy", + "Gives good feedback" + ], + "rmp_id": "985103", + "instructor_id": "brikowi", + "overall_grade_rating": 3.91, + "total_grade_count": 276, + "course_ratings": { + "GEOS7110": 5.0, + "GEOS2310": 3.79, + "GEOS5398": 5.0, + "GEOS4430": 4.02, + "GEOS5311": 4.48 + } + } + ], + "elizabeth salter": [ + { + "department": "Anthropology", + "url": "https://www.ratemyprofessors.com/professor/250859", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 0, + "original_rmp_format": "Elizabeth Salter", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 31, + "tags": [ + "Tough grader", + "Lecture heavy", + "Participation matters", + "Tests? Not many", + "So many papers" + ], + "rmp_id": "250859", + "instructor_id": "emsalter", + "overall_grade_rating": 4.19, + "total_grade_count": 53, + "course_ratings": { + "ISIS3309": 3.89, + "HLTH3306": 4.44 + } + } + ], + "bobby alexander": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/395465", + "quality_rating": 4, + "difficulty_rating": 1.5, + "would_take_again": 78, + "original_rmp_format": "Bobby Alexander", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 26, + "tags": [ + "Inspirational", + "Lecture heavy", + "Caring", + "Get ready to read", + "Amazing lectures " + ], + "rmp_id": "395465", + "instructor_id": "bcalex", + "overall_grade_rating": 4.47, + "total_grade_count": 289, + "course_ratings": { + "EPPS6346": 4.81, + "SOC4388": 4.35, + "SOC3333": 4.51, + "SOC3363": 4.28 + } + } + ], + "mukund rao": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2471734", + "quality_rating": 2.4, + "difficulty_rating": 3.4, + "would_take_again": 60, + "original_rmp_format": "Mukund Rao", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 5, + "tags": [ + "Lots of homework", + "Lecture heavy", + "Accessible outside class", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "2471734", + "instructor_id": "mxr170008", + "overall_grade_rating": 4.7, + "total_grade_count": 26, + "course_ratings": { + "ITSS4354": 4.7 + } + } + ], + "bonnie pitman": [ + { + "department": "Art History", + "url": "https://www.ratemyprofessors.com/professor/2594632", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Bonnie Pitman", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 1, + "tags": ["Participation matters", "Gives good feedback", "Graded by few things"], + "rmp_id": "2594632", + "instructor_id": "blp120030", + "overall_grade_rating": 4.73, + "total_grade_count": 28, + "course_ratings": { + "HONS3199": 4.73 + } + } + ], + "john norwood": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1966370", + "quality_rating": 4.4, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "John Norwood", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 28, + "tags": [ + "Caring", + "Lots of homework", + "Gives good feedback", + "Accessible outside class", + "Skip class? You won't pass." + ], + "rmp_id": "1966370", + "instructor_id": "jxn142530", + "overall_grade_rating": 3.21, + "total_grade_count": 307, + "course_ratings": { + "MATH2417": 3.36, + "MATH1325": 3.72, + "MATH1326": 3.42, + "MATH2419": 2.95 + } + } + ], + "adrian soncodi": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2035462", + "quality_rating": 2.5, + "difficulty_rating": 3.7, + "would_take_again": 80, + "original_rmp_format": "Adrian Soncodi", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 28, + "tags": [ + "Caring", + "Tough grader", + "Lots of homework", + "Participation matters", + "Accessible outside class" + ], + "rmp_id": "2035462", + "instructor_id": "acs151130", + "overall_grade_rating": 3.95, + "total_grade_count": 98, + "course_ratings": { + "CS2305": 3.95 + } + } + ], + "mary lacy": [ + { + "department": "Not Specified", + "url": "https://www.ratemyprofessors.com/professor/964956", + "quality_rating": 2.6, + "difficulty_rating": 3.1, + "would_take_again": 75, + "original_rmp_format": "Mary Lacy", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 12, + "tags": [ + "Inspirational", + "Lots of homework", + "Skip class? You won't pass.", + "Caring", + "Tough grader" + ], + "rmp_id": "964956", + "instructor_id": "mel024000", + "overall_grade_rating": 3.94, + "total_grade_count": 110, + "course_ratings": { + "ARTS1316": 3.87, + "ARTS2380": 3.78, + "ARTS3367": 4.09 + } + } + ], + "richard hernandez": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2541597", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Richard Hernandez", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 3, + "tags": ["EXTRA CREDIT", "Amazing lectures ", "Hilarious", "Inspirational", "Caring"], + "rmp_id": "2541597", + "instructor_id": "rxh142930", + "overall_grade_rating": 4.26, + "total_grade_count": 14, + "course_ratings": { + "CRIM1301": 4.26 + } + } + ], + "leeann derdeyn": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1570373", + "quality_rating": 4.4, + "difficulty_rating": 3.3, + "would_take_again": 0, + "original_rmp_format": "Leeann Derdeyn", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 6, + "tags": [ + "Gives good feedback", + "Get ready to read", + "Amazing lectures ", + "Respected", + "Tough grader" + ], + "rmp_id": "1570373", + "instructor_id": "lxd091000", + "overall_grade_rating": 3.83, + "total_grade_count": 27, + "course_ratings": { + "RHET1302": 3.83 + } + } + ], + "ryan johnson": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/2576649", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Ryan Johnson", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 1, + "tags": ["Tough grader", "Graded by few things"], + "rmp_id": "2576649", + "instructor_id": "rlj160230", + "overall_grade_rating": 3.2, + "total_grade_count": 52, + "course_ratings": { + "RHET1302": 3.2 + } + } + ], + "todd polk": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2001621", + "quality_rating": 5, + "difficulty_rating": 1.8, + "would_take_again": 100, + "original_rmp_format": "Todd Polk", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 4, + "tags": [ + "EXTRA CREDIT", + "Amazing lectures ", + "Inspirational", + "Lots of homework", + "Hilarious" + ], + "rmp_id": "2001621", + "instructor_id": "twp017000", + "overall_grade_rating": 4.38, + "total_grade_count": 849, + "course_ratings": { + "BMEN4388": 4.35, + "BMEN3370": 4.08, + "BMEN4389": 4.46 + } + } + ], + "leila hosseini": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2347446", + "quality_rating": 4.8, + "difficulty_rating": 2.2, + "would_take_again": 100, + "original_rmp_format": "Leila Hosseini", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 10, + "tags": [ + "Participation matters", + "Gives good feedback", + "Caring", + "Lecture heavy", + "Clear grading criteria" + ], + "rmp_id": "2347446", + "instructor_id": "lxh132430", + "overall_grade_rating": 4.71, + "total_grade_count": 49, + "course_ratings": { + "ITSS3311": 4.71 + } + } + ], + "levent kaan": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1719824", + "quality_rating": 3.7, + "difficulty_rating": 3.3, + "would_take_again": 62, + "original_rmp_format": "Levent Kaan", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 66, + "tags": ["Caring", "Respected", "Tough grader", "Participation matters", "EXTRA CREDIT"], + "rmp_id": "1719824", + "instructor_id": "lxk120730", + "overall_grade_rating": 3.04, + "total_grade_count": 262, + "course_ratings": { + "OPRE3333": 3.04 + } + } + ], + "edward hennigan": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/1936854", + "quality_rating": 4.2, + "difficulty_rating": 2.8, + "would_take_again": 71, + "original_rmp_format": "Edward Hennigan", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 10, + "tags": [ + "Gives good feedback", + "Get ready to read", + "EXTRA CREDIT", + "Amazing lectures ", + "Respected" + ], + "rmp_id": "1936854", + "instructor_id": "ebh062000", + "overall_grade_rating": 4.45, + "total_grade_count": 39, + "course_ratings": { + "THEA1351": 4.45 + } + } + ], + "robert nelson": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1095262", + "quality_rating": 4.5, + "difficulty_rating": 1.8, + "would_take_again": 67, + "original_rmp_format": "Robert Nelson", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 20, + "tags": [ + "Respected", + "Amazing lectures ", + "Skip class? You won't pass.", + "Inspirational", + "Participation matters" + ], + "rmp_id": "1095262", + "instructor_id": "ren011000", + "overall_grade_rating": 4.57, + "total_grade_count": 96, + "course_ratings": { + "ED3339": 4.57 + } + } + ], + "jonathan ploski": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/1639799", + "quality_rating": 4.3, + "difficulty_rating": 3.1, + "would_take_again": 75, + "original_rmp_format": "Jonathan Ploski", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 8, + "tags": [ + "Inspirational", + "Get ready to read", + "Participation matters", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "1639799", + "instructor_id": "jep101000", + "overall_grade_rating": 4.22, + "total_grade_count": 166, + "course_ratings": { + "NSC4362": 3.96, + "HCS6341": 4.68 + } + } + ], + "gene sims": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2457075", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Gene Sims", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 2, + "tags": [ + "Participation matters", + "Group projects", + "Hilarious", + "Respected", + "Lecture heavy" + ], + "rmp_id": "2457075", + "instructor_id": "gxs180019", + "overall_grade_rating": 4.13, + "total_grade_count": 12, + "course_ratings": { + "OBHR4331": 4.13 + } + } + ], + "veronica juarez": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2434648", + "quality_rating": 4.2, + "difficulty_rating": 2.2, + "would_take_again": 80, + "original_rmp_format": "Veronica Juarez", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 5, + "tags": [ + "Hilarious", + "Tough grader", + "Get ready to read", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "2434648", + "instructor_id": "vxj161430", + "overall_grade_rating": 4.38, + "total_grade_count": 153, + "course_ratings": { + "COMM1311": 4.38 + } + } + ], + "olivia banner": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2044331", + "quality_rating": 3.9, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Olivia Banner", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 6, + "tags": [ + "Get ready to read", + "Lots of homework", + "Caring", + "Participation matters", + "Amazing lectures " + ], + "rmp_id": "2044331", + "instructor_id": "opb140030", + "overall_grade_rating": 4.42, + "total_grade_count": 110, + "course_ratings": { + "ATCM3321": 4.4, + "ATCM2322": 3.87, + "ATCM6385": 4.63, + "ATCM4322": 4.96, + "ATCM4334": 4.6 + } + } + ], + "carole lester": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/1696108", + "quality_rating": 2.3, + "difficulty_rating": 3.5, + "would_take_again": 33, + "original_rmp_format": "Carole Lester", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 14, + "tags": [ + "Tough grader", + "Get ready to read", + "Group projects", + "So many papers", + "EXTRA CREDIT" + ], + "rmp_id": "1696108", + "instructor_id": "cxl116430", + "overall_grade_rating": 3.13, + "total_grade_count": 159, + "course_ratings": { + "HIST1301": 3.08, + "HIST1302": 3.18 + } + } + ], + "adam majors": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2565079", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Adam Majors", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 2, + "tags": ["Caring", "Accessible outside class", "Hilarious", "Respected"], + "rmp_id": "2565079", + "instructor_id": "axm180200", + "overall_grade_rating": 4.43, + "total_grade_count": 80, + "course_ratings": { + "ECS1100": 4.43 + } + } + ], + "kelly slaughter": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1901978", + "quality_rating": 4, + "difficulty_rating": 3.4, + "would_take_again": 67, + "original_rmp_format": "Kelly Slaughter", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 10, + "tags": ["Gives good feedback", "Respected", "Tough grader", "Group projects", "Caring"], + "rmp_id": "1901978", + "instructor_id": "kts130030", + "overall_grade_rating": 4.29, + "total_grade_count": 406, + "course_ratings": { + "ITSS4390": 4.7, + "MIS6380": 4.21, + "ITSS4355": 3.77, + "MIS6204": 4.07 + } + } + ], + "shellie mccullough": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1225160", + "quality_rating": 4.6, + "difficulty_rating": 2.4, + "would_take_again": 92, + "original_rmp_format": "Shellie McCullough", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 39, + "tags": [ + "Hilarious", + "Get ready to read", + "Amazing lectures ", + "Beware of pop quizzes", + "Skip class? You won't pass." + ], + "rmp_id": "1225160", + "instructor_id": "skm022000", + "overall_grade_rating": 4.3, + "total_grade_count": 307, + "course_ratings": { + "HUMA1301": 4.3 + } + } + ], + "heng du": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2446958", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Heng Du", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 2, + "tags": [ + "Skip class? You won't pass.", + "Clear grading criteria", + "Inspirational", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "2446958", + "instructor_id": "hxd131030", + "overall_grade_rating": 4.68, + "total_grade_count": 25, + "course_ratings": { + "BIOL4356": 4.69, + "BIOL6343": 4.67 + } + } + ], + "wendy sung": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2356498", + "quality_rating": 3.7, + "difficulty_rating": 4, + "would_take_again": 57, + "original_rmp_format": "Wendy Sung", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 7, + "tags": [ + "Get ready to read", + "Participation matters", + "Tough grader", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "2356498", + "instructor_id": "wxs172630", + "overall_grade_rating": 3.8, + "total_grade_count": 158, + "course_ratings": { + "ATCM2321": 4.1, + "ATCM3395": 3.91, + "ATCM4323": 3.45, + "ATCM2322": 3.75 + } + } + ], + "lindsay king": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1805053", + "quality_rating": 3.4, + "difficulty_rating": 3.1, + "would_take_again": 43, + "original_rmp_format": "Lindsay King", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 46, + "tags": [ + "Tests? Not many", + "Lots of homework", + "Graded by few things", + "Caring", + "EXTRA CREDIT" + ], + "rmp_id": "1805053", + "instructor_id": "lxk111430", + "overall_grade_rating": 3.77, + "total_grade_count": 491, + "course_ratings": { + "PHYS2326": 3.39, + "PHYS3330": 4.05, + "PHYS4392": 4.35 + } + } + ], + "spencer brown pearn": [ + { + "department": "Fine Arts", + "url": "https://www.ratemyprofessors.com/professor/2209193", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Spencer Brown-Pearn", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 2, + "tags": ["Clear grading criteria", "Caring", "Accessible outside class"], + "rmp_id": "2209193", + "instructor_id": "ssb062000", + "overall_grade_rating": 4.87, + "total_grade_count": 70, + "course_ratings": { + "ARTS3373": 4.81, + "ARTS3340": 5.0, + "ARTS1316": 4.69, + "ARTS3368": 4.98 + } + } + ], + "pankaj choudhary": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1370802", + "quality_rating": 3.8, + "difficulty_rating": 2.9, + "would_take_again": 45, + "original_rmp_format": "Pankaj Choudhary", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 24, + "tags": [ + "Lots of homework", + "Respected", + "Tough grader", + "EXTRA CREDIT", + "Amazing lectures " + ], + "rmp_id": "1370802", + "instructor_id": "pkc022000", + "overall_grade_rating": 4.22, + "total_grade_count": 332, + "course_ratings": { + "CS6313": 4.35, + "STAT6313": 4.32, + "STAT4360": 2.82, + "STAT6331": 3.66, + "STAT6340": 4.2, + "STAT4475": 4.97, + "STAT6390": 4.69 + } + } + ], + "lingming zhang": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1935928", + "quality_rating": 4, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "Lingming Zhang", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 8, + "tags": [ + "Group projects", + "Amazing lectures ", + "EXTRA CREDIT", + "Clear grading criteria", + "Would take again" + ], + "rmp_id": "1935928", + "instructor_id": "lxz144130", + "overall_grade_rating": 4.58, + "total_grade_count": 51, + "course_ratings": { + "CS6367": 4.64, + "SE6367": 4.22 + } + } + ], + "tracey berry": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2432296", + "quality_rating": 5, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Tracey Berry", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 3, + "tags": [ + "Gives good feedback", + "Caring", + "Accessible outside class", + "Participation matters", + "Hilarious" + ], + "rmp_id": "2432296", + "instructor_id": "txb112130", + "overall_grade_rating": 4.08, + "total_grade_count": 67, + "course_ratings": { + "RHET1302": 4.08 + } + } + ], + "xiaolin li": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2216094", + "quality_rating": 2.5, + "difficulty_rating": 3.2, + "would_take_again": 33, + "original_rmp_format": "Xiaolin Li", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 6, + "tags": [ + "Lecture heavy", + "Group projects", + "Get ready to read", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "2216094", + "instructor_id": "xxl157230", + "overall_grade_rating": 3.93, + "total_grade_count": 94, + "course_ratings": { + "MKT3300": 3.93 + } + } + ], + "debra richardson": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2081104", + "quality_rating": 3.9, + "difficulty_rating": 2.4, + "would_take_again": 79, + "original_rmp_format": "Debra Richardson", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 16, + "tags": [ + "Skip class? You won't pass.", + "Respected", + "Amazing lectures ", + "Caring", + "Test heavy" + ], + "rmp_id": "2081104", + "instructor_id": "dlr150330", + "overall_grade_rating": 4.1, + "total_grade_count": 235, + "course_ratings": { + "FIN3370": 3.84, + "RMIS4331": 4.28, + "RMIS3370": 4.08, + "FIN4331": 3.75, + "RMIS4332": 4.6, + "FIN4332": 4.17, + "FIN4390": 4.51 + } + } + ], + "timothy mcmahan": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2296783", + "quality_rating": 4.6, + "difficulty_rating": 2.1, + "would_take_again": 93, + "original_rmp_format": "Timothy McMahan", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 27, + "tags": [ + "Accessible outside class", + "Clear grading criteria", + "Beware of pop quizzes", + "Caring", + "Respected" + ], + "rmp_id": "2296783", + "instructor_id": "txm173230", + "overall_grade_rating": 4.25, + "total_grade_count": 426, + "course_ratings": { + "CS1200": 4.25, + "CS4337": 4.14, + "CS6314": 4.88, + "CE4337": 4.17, + "CS1337": 4.1 + } + } + ], + "lloyd dumas": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/183791", + "quality_rating": 4.4, + "difficulty_rating": 2.6, + "would_take_again": 67, + "original_rmp_format": "Lloyd Dumas", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 30, + "tags": [ + "Skip class? You won't pass.", + "Graded by few things", + "Caring", + "Inspirational", + "Respected" + ], + "rmp_id": "183791", + "instructor_id": "ljdumas", + "overall_grade_rating": 3.89, + "total_grade_count": 115, + "course_ratings": { + "ECON3311": 3.77, + "ECON6352": 4.11, + "IPEC3349": 3.75, + "PPPE6352": 4.35, + "ECON4336": 3.83, + "PPPE6369": 4.31 + } + } + ], + "stephen kiser": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1684535", + "quality_rating": 4.3, + "difficulty_rating": 3.4, + "would_take_again": 67, + "original_rmp_format": "Stephen Kiser", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 9, + "tags": [ + "Skip class? You won't pass.", + "Amazing lectures ", + "Would take again", + "Hilarious", + "Test heavy" + ], + "rmp_id": "1684535", + "instructor_id": "slk012100", + "overall_grade_rating": 4.38, + "total_grade_count": 632, + "course_ratings": { + "ECON4342": 3.78, + "ECON3332": 4.46, + "MECO6303": 4.44, + "BA1320": 4.11, + "ECON5322": 4.69 + } + } + ], + "kenneth balkus": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2553446", + "quality_rating": 2, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Kenneth Balkus", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 1, + "tags": ["Tough grader", "Get ready to read", "Graded by few things"], + "rmp_id": "2553446", + "instructor_id": "balkus", + "overall_grade_rating": 4.35, + "total_grade_count": 98, + "course_ratings": { + "CHEM6389": 4.55, + "CHEM5341": 4.19, + "CHEM6372": 4.28 + } + } + ], + "felicia ward": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/2202868", + "quality_rating": 3, + "difficulty_rating": 1.8, + "would_take_again": 53, + "original_rmp_format": "Felicia Ward", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 19, + "tags": [ + "Skip class? You won't pass.", + "Caring", + "Participation matters", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2202868", + "instructor_id": "few160030", + "overall_grade_rating": 4.5, + "total_grade_count": 108, + "course_ratings": { + "CLDP4344": 4.57, + "PSY4344": 4.44 + } + } + ], + "orlando richard": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/291702", + "quality_rating": 2.8, + "difficulty_rating": 2.6, + "would_take_again": 67, + "original_rmp_format": "Orlando Richard", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 22, + "tags": [ + "Get ready to read", + "Participation matters", + "EXTRA CREDIT", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "291702", + "instructor_id": "pretty", + "overall_grade_rating": 4.57, + "total_grade_count": 180, + "course_ratings": { + "OB6301": 4.36, + "OB6307": 4.78 + } + } + ], + "karen kaplan": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/1781269", + "quality_rating": 2.8, + "difficulty_rating": 3.2, + "would_take_again": 67, + "original_rmp_format": "Karen Kaplan", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 9, + "tags": [ + "Skip class? You won't pass.", + "Get ready to read", + "Participation matters", + "Tough grader", + "EXTRA CREDIT" + ], + "rmp_id": "1781269", + "instructor_id": "kkaplan", + "overall_grade_rating": 4.35, + "total_grade_count": 287, + "course_ratings": { + "SPAU4394": 4.32, + "SPAU4342": 4.2, + "SPAU4367": 4.6 + } + } + ], + "jack furst": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2270818", + "quality_rating": 4, + "difficulty_rating": 1.2, + "would_take_again": 86, + "original_rmp_format": "Jack Furst", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 7, + "tags": [ + "Respected", + "Amazing lectures ", + "Inspirational", + "Clear grading criteria", + "Hilarious" + ], + "rmp_id": "2270818", + "instructor_id": "jdf170030", + "overall_grade_rating": 4.63, + "total_grade_count": 114, + "course_ratings": { + "FIN4300": 4.38, + "FIN4307": 4.96, + "FIN4390": 5.0 + } + } + ], + "robert kohankie": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/1929836", + "quality_rating": 2.9, + "difficulty_rating": 1.9, + "would_take_again": 55, + "original_rmp_format": "Robert Kohankie", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 16, + "tags": [ + "Participation matters", + "Caring", + "Tough grader", + "Get ready to read", + "Lots of homework" + ], + "rmp_id": "1929836", + "instructor_id": "rwk130030", + "overall_grade_rating": 3.99, + "total_grade_count": 128, + "course_ratings": { + "OPRE3310": 3.99 + } + } + ], + "stephen mallory": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2547409", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Stephen Mallory", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Gives good feedback", "Inspirational"], + "rmp_id": "2547409", + "instructor_id": "srm140030", + "overall_grade_rating": 3.99, + "total_grade_count": 38, + "course_ratings": { + "ATCM3301": 3.99 + } + } + ], + "kevin green": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2183569", + "quality_rating": 3.2, + "difficulty_rating": 3, + "would_take_again": 67, + "original_rmp_format": "Kevin Green", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 6, + "tags": [ + "Accessible outside class", + "Gives good feedback", + "Lecture heavy", + "Test heavy", + "Tough grader" + ], + "rmp_id": "2183569", + "instructor_id": "kxg122730", + "overall_grade_rating": 3.78, + "total_grade_count": 118, + "course_ratings": { + "FIN3330": 3.78 + } + } + ], + "xiaolu zhou": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2313297", + "quality_rating": 2.7, + "difficulty_rating": 2.8, + "would_take_again": 50, + "original_rmp_format": "Xiaolu Zhou", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 4, + "tags": [ + "Tough grader", + "Lecture heavy", + "Skip class? You won't pass.", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2313297", + "instructor_id": "xxz142230", + "overall_grade_rating": 3.35, + "total_grade_count": 60, + "course_ratings": { + "ACCT2301": 3.35 + } + } + ], + "chin tuan tan": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2232646", + "quality_rating": 1, + "difficulty_rating": 4.6, + "would_take_again": 0, + "original_rmp_format": "Chin-Tuan Tan", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 9, + "tags": [ + "Tough grader", + "Test heavy", + "Lots of homework", + "Get ready to read", + "Graded by few things" + ], + "rmp_id": "2232646", + "instructor_id": "cxt163030", + "overall_grade_rating": 3.22, + "total_grade_count": 57, + "course_ratings": { + "EESC6362": 4.35, + "ENGR2300": 2.7 + } + } + ], + "vito dorazio": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2069056", + "quality_rating": 3.6, + "difficulty_rating": 2.6, + "would_take_again": 78, + "original_rmp_format": "Vito D'Orazio", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 10, + "tags": [ + "Clear grading criteria", + "Tough grader", + "Lots of homework", + "Respected", + "Participation matters" + ], + "rmp_id": "2069056", + "instructor_id": "vxd152030", + "overall_grade_rating": 3.78, + "total_grade_count": 288, + "course_ratings": { + "PSCI3328": 3.64, + "PSCI4302": 3.82, + "PSCI6302": 4.07, + "EPPS6316": 4.06, + "PSCI4359": 3.61 + } + } + ], + "lora burnett": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/2184968", + "quality_rating": 4.5, + "difficulty_rating": 2.1, + "would_take_again": 91, + "original_rmp_format": "Lora Burnett", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 33, + "tags": [ + "Amazing lectures ", + "Hilarious", + "Inspirational", + "Skip class? You won't pass.", + "Clear grading criteria" + ], + "rmp_id": "2184968", + "instructor_id": "ldb082000", + "overall_grade_rating": 4.46, + "total_grade_count": 650, + "course_ratings": { + "HIST1302": 4.61, + "HIST1301": 4.19, + "HIST4378": 3.87 + } + } + ], + "emily loving": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1804019", + "quality_rating": 3.7, + "difficulty_rating": 2, + "would_take_again": 80, + "original_rmp_format": "Emily Loving", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 9, + "tags": [ + "Gives good feedback", + "Clear grading criteria", + "Would take again", + "Caring", + "Get ready to read" + ], + "rmp_id": "1804019", + "instructor_id": "exl097120", + "overall_grade_rating": 4.27, + "total_grade_count": 346, + "course_ratings": { + "ARTS3372": 4.42, + "ARTS3379": 4.2, + "ARTS2350": 3.94, + "ARTS3340": 3.75, + "ATCM2301": 4.26 + } + } + ], + "james mcconnell": [ + { + "department": "Not Specified", + "url": "https://www.ratemyprofessors.com/professor/1009751", + "quality_rating": 4.3, + "difficulty_rating": 3.2, + "would_take_again": 100, + "original_rmp_format": "James McConnell", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 5, + "tags": ["Hilarious", "Caring", "Respected"], + "rmp_id": "1009751", + "instructor_id": "jsm019600", + "overall_grade_rating": 4.32, + "total_grade_count": 126, + "course_ratings": { + "NATS3343": 4.25, + "NATS4141": 4.94, + "NATS4694": 5.0, + "ISNS3373": 3.75 + } + } + ], + "allene nichols": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1793519", + "quality_rating": 3.5, + "difficulty_rating": 2.9, + "would_take_again": 20, + "original_rmp_format": "Allene Nichols", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 7, + "tags": [ + "Tough grader", + "Group projects", + "Participation matters", + "Tests are tough", + "Lecture heavy" + ], + "rmp_id": "1793519", + "instructor_id": "allenen", + "overall_grade_rating": 4.32, + "total_grade_count": 38, + "course_ratings": { + "ECS3390": 4.32 + } + } + ], + "shaibal chakrabarty": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2528364", + "quality_rating": 1, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Shaibal Chakrabarty", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 1, + "tags": ["Tough grader", "So many papers", "Test heavy"], + "rmp_id": "2528364", + "instructor_id": "sxc170006", + "overall_grade_rating": 4.83, + "total_grade_count": 15, + "course_ratings": { + "MIS6330": 4.83 + } + } + ], + "nicola hart": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/2296703", + "quality_rating": 2.5, + "difficulty_rating": 3.9, + "would_take_again": 20, + "original_rmp_format": "Nicola Hart", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 10, + "tags": [ + "Lots of homework", + "Tough grader", + "So many papers", + "Get ready to read", + "Skip class? You won't pass." + ], + "rmp_id": "2296703", + "instructor_id": "nxh171730", + "overall_grade_rating": 4.4, + "total_grade_count": 30, + "course_ratings": { + "ED3380": 4.4 + } + } + ], + "yingjie zhang": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2494848", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Yingjie Zhang", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Clear grading criteria", "Accessible outside class"], + "rmp_id": "2494848", + "instructor_id": "yxz180067", + "overall_grade_rating": 4.6, + "total_grade_count": 72, + "course_ratings": { + "BUAN6340": 4.6 + } + } + ], + "chelsey narvey": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2510365", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Chelsey Narvey", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Inspirational", "Caring"], + "rmp_id": "2510365", + "instructor_id": "cxn151330", + "overall_grade_rating": 4.65, + "total_grade_count": 18, + "course_ratings": { + "EPPS2301": 4.65 + } + } + ], + "charles chika": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2523235", + "quality_rating": 3, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Charles Chika", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 1, + "tags": ["Lecture heavy"], + "rmp_id": "2523235", + "instructor_id": "cec140330", + "overall_grade_rating": 3.04, + "total_grade_count": 93, + "course_ratings": { + "MATH2312": 3.04 + } + } + ], + "david rice": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1966255", + "quality_rating": 3.4, + "difficulty_rating": 3.4, + "would_take_again": 80, + "original_rmp_format": "David Rice", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 16, + "tags": [ + "Lots of homework", + "Skip class? You won't pass.", + "Tough grader", + "Hilarious", + "Amazing lectures " + ], + "rmp_id": "1966255", + "instructor_id": "dxr143630", + "overall_grade_rating": 3.02, + "total_grade_count": 182, + "course_ratings": { + "MATH1325": 3.47, + "MATH1326": 2.85 + } + } + ], + "eric carlson": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/1963598", + "quality_rating": 4.3, + "difficulty_rating": 2.7, + "would_take_again": 50, + "original_rmp_format": "Eric Carlson", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 10, + "tags": [ + "Get ready to read", + "Gives good feedback", + "Tough grader", + "Skip class? You won't pass.", + "Lots of homework" + ], + "rmp_id": "1963598", + "instructor_id": "ebc051000", + "overall_grade_rating": 4.14, + "total_grade_count": 56, + "course_ratings": { + "COMM1311": 4.14 + } + } + ], + "irina borovkov": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/860744", + "quality_rating": 2, + "difficulty_rating": 4, + "would_take_again": 33, + "original_rmp_format": "Irina Borovkov", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 42, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Lecture heavy", + "Participation matters", + "Test heavy" + ], + "rmp_id": "860744", + "instructor_id": "ixb053000", + "overall_grade_rating": 3.42, + "total_grade_count": 360, + "course_ratings": { + "BIOL4380": 3.78, + "BIOL3101": 3.21, + "BIOL3301": 3.21 + } + } + ], + "william hughes": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2064379", + "quality_rating": 4.5, + "difficulty_rating": 2.2, + "would_take_again": 83, + "original_rmp_format": "William Hughes", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 7, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Hilarious", + "Gives good feedback", + "So many papers" + ], + "rmp_id": "2064379", + "instructor_id": "wkh150030", + "overall_grade_rating": 4.16, + "total_grade_count": 49, + "course_ratings": { + "MUSI2325": 4.16 + } + } + ], + "cassini nazir": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1888703", + "quality_rating": 4.3, + "difficulty_rating": 3.3, + "would_take_again": 80, + "original_rmp_format": "Cassini Nazir", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 11, + "tags": [ + "Participation matters", + "Group projects", + "Lots of homework", + "Respected", + "Gives good feedback" + ], + "rmp_id": "1888703", + "instructor_id": "cassini", + "overall_grade_rating": 4.6, + "total_grade_count": 72, + "course_ratings": { + "ATCM6365": 4.7, + "ATCM4337": 4.58, + "ATCM6366": 4.63 + } + } + ], + "jiayu chen": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2474845", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 83, + "original_rmp_format": "Jiayu Chen", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 6, + "tags": [ + "Participation matters", + "Lecture heavy", + "Caring", + "Accessible outside class", + "Skip class? You won't pass." + ], + "rmp_id": "2474845", + "instructor_id": "jxc144030", + "overall_grade_rating": 4.48, + "total_grade_count": 47, + "course_ratings": { + "OPRE3310": 4.48 + } + } + ], + "munhee han": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2290425", + "quality_rating": 3.7, + "difficulty_rating": 3.8, + "would_take_again": 62, + "original_rmp_format": "Munhee Han", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 8, + "tags": [ + "Test heavy", + "Gives good feedback", + "Accessible outside class", + "Skip class? You won't pass.", + "Caring" + ], + "rmp_id": "2290425", + "instructor_id": "mxh142730", + "overall_grade_rating": 3.15, + "total_grade_count": 39, + "course_ratings": { + "FIN3320": 3.15 + } + } + ], + "mihaela stefan": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1259346", + "quality_rating": 4.6, + "difficulty_rating": 3.1, + "would_take_again": 83, + "original_rmp_format": "Mihaela Stefan", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 33, + "tags": ["Caring", "Respected", "Lecture heavy", "Accessible outside class", "Inspirational"], + "rmp_id": "1259346", + "instructor_id": "mci071000", + "overall_grade_rating": 4.64, + "total_grade_count": 380, + "course_ratings": { + "HONS3199": 4.96, + "CHEM2323": 4.24, + "CHEM2327": 4.78, + "HONS3117": 5.0, + "CHEM2324": 4.6, + "CHEM4340": 4.95, + "CHEM5340": 5.0 + } + } + ], + "kurt siklar": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/991950", + "quality_rating": 4.9, + "difficulty_rating": 1.6, + "would_take_again": 100, + "original_rmp_format": "Kurt Siklar", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 5, + "tags": ["Participation matters", "Group projects", "Clear grading criteria"], + "rmp_id": "991950", + "instructor_id": "kxs014600", + "overall_grade_rating": 4.51, + "total_grade_count": 16, + "course_ratings": { + "IMS6360": 4.51 + } + } + ], + "safiullah shareef": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2380885", + "quality_rating": 4.1, + "difficulty_rating": 1.4, + "would_take_again": 71, + "original_rmp_format": "Safiullah Shareef", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 7, + "tags": [ + "EXTRA CREDIT", + "Clear grading criteria", + "Test heavy", + "Graded by few things", + "Tough grader" + ], + "rmp_id": "2380885", + "instructor_id": "sms170009", + "overall_grade_rating": 4.44, + "total_grade_count": 336, + "course_ratings": { + "NSC4351": 4.67, + "NSC4364": 4.73, + "NSC3361": 4.16 + } + } + ], + "jiyong lee": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1807628", + "quality_rating": 3.3, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Jiyong Lee", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 13, + "tags": [ + "Get ready to read", + "Test heavy", + "Clear grading criteria", + "Tough grader", + "Skip class? You won't pass." + ], + "rmp_id": "1807628", + "instructor_id": "jxl127631", + "overall_grade_rating": 3.16, + "total_grade_count": 309, + "course_ratings": { + "BIOL3161": 3.17, + "CHEM2323": 3.16 + } + } + ], + "sarah henry": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2162879", + "quality_rating": 3.4, + "difficulty_rating": 2.9, + "would_take_again": 56, + "original_rmp_format": "Sarah Henry", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 9, + "tags": [ + "Tough grader", + "Participation matters", + "Skip class? You won't pass.", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "2162879", + "instructor_id": "seh150530", + "overall_grade_rating": 3.41, + "total_grade_count": 102, + "course_ratings": { + "BA1100": 3.3, + "BCOM3200": 3.85 + } + } + ], + "larry ammann": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/182021", + "quality_rating": 2.5, + "difficulty_rating": 3.1, + "would_take_again": 10, + "original_rmp_format": "Larry Ammann", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 32, + "tags": [ + "Tough grader", + "Graded by few things", + "Get ready to read", + "Lecture heavy", + "Skip class? You won't pass." + ], + "rmp_id": "182021", + "instructor_id": "ammann", + "overall_grade_rating": 3.77, + "total_grade_count": 115, + "course_ratings": { + "STAT3355": 3.72, + "STAT6329": 4.0 + } + } + ], + "dawn brinkley": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2012455", + "quality_rating": 3.2, + "difficulty_rating": 3, + "would_take_again": 58, + "original_rmp_format": "Dawn Brinkley", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 27, + "tags": [ + "Skip class? You won't pass.", + "Participation matters", + "EXTRA CREDIT", + "Lecture heavy", + "Tough grader" + ], + "rmp_id": "2012455", + "instructor_id": "dyb012000", + "overall_grade_rating": 3.46, + "total_grade_count": 765, + "course_ratings": { + "PSY3331": 3.44, + "PSY2301": 3.4, + "PSY3332": 3.45, + "CLDP3332": 3.74 + } + } + ], + "youngki jang": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2170630", + "quality_rating": 3, + "difficulty_rating": 3.8, + "would_take_again": 40, + "original_rmp_format": "Youngki Jang", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 5, + "tags": [ + "Get ready to read", + "Skip class? You won't pass.", + "Caring", + "Lecture heavy", + "Lots of homework" + ], + "rmp_id": "2170630", + "instructor_id": "yxj131330", + "overall_grade_rating": 3.35, + "total_grade_count": 60, + "course_ratings": { + "ACCT2301": 3.35 + } + } + ], + "michael andreen": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2121213", + "quality_rating": 4.2, + "difficulty_rating": 2.6, + "would_take_again": 100, + "original_rmp_format": "Michael Andreen", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 5, + "tags": [ + "Respected", + "Get ready to read", + "Participation matters", + "EXTRA CREDIT", + "Amazing lectures " + ], + "rmp_id": "2121213", + "instructor_id": "mta072000", + "overall_grade_rating": 4.25, + "total_grade_count": 295, + "course_ratings": { + "ATCM2365": 4.11, + "ATCM4376": 4.66, + "ATCM3376": 3.47, + "ATCM3369": 4.67, + "ATCM4397": 4.81, + "ATCM4395": 4.58 + } + } + ], + "john beachboard": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2287286", + "quality_rating": 3.5, + "difficulty_rating": 2.5, + "would_take_again": 62, + "original_rmp_format": "John Beachboard", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 13, + "tags": [ + "Caring", + "Clear grading criteria", + "Lecture heavy", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "2287286", + "instructor_id": "jcb170430", + "overall_grade_rating": 3.7, + "total_grade_count": 194, + "course_ratings": { + "ITSS3300": 3.7 + } + } + ], + "jianqing chen": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/1694629", + "quality_rating": 3.6, + "difficulty_rating": 2.8, + "would_take_again": 67, + "original_rmp_format": "Jianqing Chen", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 12, + "tags": [ + "Group projects", + "Accessible outside class", + "Gives good feedback", + "Lots of homework", + "Caring" + ], + "rmp_id": "1694629", + "instructor_id": "jxc111031", + "overall_grade_rating": 4.26, + "total_grade_count": 190, + "course_ratings": { + "MIS6324": 4.26, + "BUAN6324": 4.09, + "OPRE6399": 4.24, + "BUAN6356": 4.19, + "MIS6356": 4.52 + } + } + ], + "jennifer webb": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2396605", + "quality_rating": 4.3, + "difficulty_rating": 2, + "would_take_again": 67, + "original_rmp_format": "Jennifer Webb", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 3, + "tags": [ + "Lots of homework", + "Lecture heavy", + "Get ready to read", + "Skip class? You won't pass.", + "Clear grading criteria" + ], + "rmp_id": "2396605", + "instructor_id": "jhw170130", + "overall_grade_rating": 4.42, + "total_grade_count": 172, + "course_ratings": { + "EE3302": 4.26, + "CE3302": 3.88, + "EE3102": 4.56, + "CE3102": 4.36 + } + } + ], + "ryan mcmahan": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1786563", + "quality_rating": 4.8, + "difficulty_rating": 2.4, + "would_take_again": 100, + "original_rmp_format": "Ryan McMahan", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 10, + "tags": [ + "Amazing lectures ", + "Participation matters", + "Skip class? You won't pass.", + "Would take again", + "Gives good feedback" + ], + "rmp_id": "1786563", + "instructor_id": "rpm120130", + "overall_grade_rating": 4.63, + "total_grade_count": 126, + "course_ratings": { + "CS6334": 4.92, + "CS4353": 4.37 + } + } + ], + "jacquelyn cheun": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/2208218", + "quality_rating": 1.8, + "difficulty_rating": 3.7, + "would_take_again": 12, + "original_rmp_format": "Jacquelyn Cheun", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 8, + "tags": [ + "Skip class? You won't pass.", + "Get ready to read", + "Lecture heavy", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2208218", + "instructor_id": "jjc150830", + "overall_grade_rating": 4.5, + "total_grade_count": 135, + "course_ratings": { + "SOC4372": 4.46, + "EPPS2301": 4.53 + } + } + ], + "hui wang": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2380387", + "quality_rating": 2.7, + "difficulty_rating": 3.7, + "would_take_again": 67, + "original_rmp_format": "Hui Wang", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 3, + "tags": [ + "Test heavy", + "Accessible outside class", + "Tough grader", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "2380387", + "instructor_id": "hxw141630", + "overall_grade_rating": 3.91, + "total_grade_count": 32, + "course_ratings": { + "FIN3320": 3.91 + } + } + ], + "doric earle": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2135870", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 67, + "original_rmp_format": "Doric Earle", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 4, + "tags": [ + "Get ready to read", + "Participation matters", + "Group projects", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2135870", + "instructor_id": "dee011000", + "overall_grade_rating": 4.04, + "total_grade_count": 61, + "course_ratings": { + "ECON3330": 4.04 + } + } + ], + "robert gregg": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2292358", + "quality_rating": 2.5, + "difficulty_rating": 4.5, + "would_take_again": 50, + "original_rmp_format": "Robert Gregg", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 2, + "tags": ["Tough grader", "Amazing lectures ", "Lots of homework", "Respected", "Test heavy"], + "rmp_id": "2292358", + "instructor_id": "rdg130030", + "overall_grade_rating": 3.8, + "total_grade_count": 120, + "course_ratings": { + "BMEN4310": 3.76, + "MECH4310": 3.83 + } + } + ], + "jonathan brandenburg": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2136832", + "quality_rating": 4, + "difficulty_rating": 3.3, + "would_take_again": 77, + "original_rmp_format": "Jonathan Brandenburg", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 33, + "tags": [ + "Skip class? You won't pass.", + "Amazing lectures ", + "Tough grader", + "Clear grading criteria", + "Hilarious" + ], + "rmp_id": "2136832", + "instructor_id": "jcb011200", + "overall_grade_rating": 3.62, + "total_grade_count": 383, + "course_ratings": { + "CS1336": 3.59, + "CS3377": 3.66, + "CS1337": 3.55, + "CS1324": 3.64, + "CS3162": 3.84 + } + } + ], + "fereshteh zihagh": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2287514", + "quality_rating": 4.5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Fereshteh Zihagh", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 2, + "tags": ["Participation matters", "Group projects", "Gives good feedback"], + "rmp_id": "2287514", + "instructor_id": "fxz140530", + "overall_grade_rating": 4.41, + "total_grade_count": 48, + "course_ratings": { + "MKT3300": 4.41 + } + } + ], + "prabin shilpakar": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/1925509", + "quality_rating": 3.1, + "difficulty_rating": 2.5, + "would_take_again": 50, + "original_rmp_format": "Prabin Shilpakar", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 34, + "tags": [ + "Tough grader", + "Clear grading criteria", + "Get ready to read", + "Lots of homework", + "Tests? Not many" + ], + "rmp_id": "1925509", + "instructor_id": "pxs077000", + "overall_grade_rating": 3.72, + "total_grade_count": 1095, + "course_ratings": { + "ISNS2359": 3.81, + "GEOS2306": 3.17, + "GEOS1303": 2.7 + } + } + ], + "michael savoie": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1301657", + "quality_rating": 4.7, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "Michael Savoie", + "last_updated": "2025-03-14T23:13:30.171400", + "ratings_count": 30, + "tags": ["Amazing lectures ", "Group projects", "Hilarious", "Caring", "Respected"], + "rmp_id": "1301657", + "instructor_id": "msavoie", + "overall_grade_rating": 4.81, + "total_grade_count": 143, + "course_ratings": { + "ITSS3300": 4.81 + } + } + ], + "shengqi ye": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2005230", + "quality_rating": 3.8, + "difficulty_rating": 3.2, + "would_take_again": 73, + "original_rmp_format": "Shengqi Ye", + "last_updated": "2025-03-14T23:13:30.171400", + "ratings_count": 14, + "tags": [ + "Skip class? You won't pass.", + "Gives good feedback", + "Amazing lectures ", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2005230", + "instructor_id": "sxy143530", + "overall_grade_rating": 4.29, + "total_grade_count": 195, + "course_ratings": { + "OPRE3310": 4.28, + "OPRE6302": 4.3 + } + } + ], + "kendra greene": [ + { + "department": "Arts amp Humanities", + "url": "https://www.ratemyprofessors.com/professor/2493181", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Kendra Greene", + "last_updated": "2025-03-14T23:13:30.171400", + "ratings_count": 1, + "tags": ["Inspirational", "Hilarious", "Accessible outside class"], + "rmp_id": "2493181", + "instructor_id": "kxg180038", + "overall_grade_rating": 4.41, + "total_grade_count": 37, + "course_ratings": { + "CRWT3306": 4.2, + "CRWT3308": 4.35, + "LIT6325": 4.79 + } + } + ], + "timothy wunder": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1931027", + "quality_rating": 2.3, + "difficulty_rating": 3.7, + "would_take_again": 11, + "original_rmp_format": "Timothy Wunder", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 20, + "tags": [ + "Tough grader", + "Lecture heavy", + "Test heavy", + "Tests are tough", + "Clear grading criteria" + ], + "rmp_id": "1931027", + "instructor_id": "txw132630", + "overall_grade_rating": 2.79, + "total_grade_count": 221, + "course_ratings": { + "ECON2302": 2.79 + } + } + ], + "joe beauchamp": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2155496", + "quality_rating": 4, + "difficulty_rating": 2.7, + "would_take_again": 83, + "original_rmp_format": "Joe Beauchamp", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 6, + "tags": [ + "Gives good feedback", + "Get ready to read", + "Respected", + "Graded by few things", + "Participation matters" + ], + "rmp_id": "2155496", + "instructor_id": "jpb016300", + "overall_grade_rating": 4.79, + "total_grade_count": 14, + "course_ratings": { + "PA6318": 4.79 + } + } + ], + "hessam moeini": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2341598", + "quality_rating": 2.7, + "difficulty_rating": 3, + "would_take_again": 50, + "original_rmp_format": "Hessam Moeini", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 6, + "tags": [ + "Beware of pop quizzes", + "Tough grader", + "Get ready to read", + "Caring", + "Graded by few things" + ], + "rmp_id": "2341598", + "instructor_id": "hxm141530", + "overall_grade_rating": 3.7, + "total_grade_count": 75, + "course_ratings": { + "CS2305": 3.67, + "CE2305": 3.93 + } + } + ], + "michelle connell": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2033799", + "quality_rating": 4.7, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "Michelle Connell", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 57, + "tags": [ + "Caring", + "Hilarious", + "Accessible outside class", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2033799", + "instructor_id": "mxc155830", + "overall_grade_rating": 3.94, + "total_grade_count": 67, + "course_ratings": { + "FIN3320": 3.73, + "FIN4380": 4.24 + } + } + ], + "nir yehuda": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1856136", + "quality_rating": 4.8, + "difficulty_rating": 2.3, + "would_take_again": 95, + "original_rmp_format": "Nir Yehuda", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 96, + "tags": ["Caring", "Respected", "Inspirational", "Would take again", "Amazing lectures "], + "rmp_id": "1856136", + "instructor_id": "nxy130530", + "overall_grade_rating": 3.32, + "total_grade_count": 132, + "course_ratings": { + "ACCT3331": 3.32 + } + } + ], + "casper kamau": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2347668", + "quality_rating": 5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Casper Kamau", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 2, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Amazing lectures ", + "Inspirational", + "Caring" + ], + "rmp_id": "2347668", + "instructor_id": "cxk103120", + "overall_grade_rating": 4.32, + "total_grade_count": 123, + "course_ratings": { + "GOVT2107": 4.53, + "PSCI3351": 4.47, + "PSCI3353": 4.42, + "PSCI3327": 4.01 + } + } + ], + "sl ghi choi": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2280887", + "quality_rating": 3, + "difficulty_rating": 4, + "would_take_again": 67, + "original_rmp_format": "Sl Ghi Choi", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 3, + "tags": [ + "Lots of homework", + "Participation matters", + "Tests are tough", + "Amazing lectures ", + "Accessible outside class" + ], + "rmp_id": "2280887", + "instructor_id": "sxc173731", + "overall_grade_rating": 2.36, + "total_grade_count": 166, + "course_ratings": { + "MATH2413": 2.85, + "MATH2414": 2.17 + } + } + ], + "sharon fagg": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/2486976", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Sharon Fagg", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 1, + "tags": ["Participation matters", "Skip class? You won't pass.", "Respected"], + "rmp_id": "2486976", + "instructor_id": "sxf044000", + "overall_grade_rating": 4.49, + "total_grade_count": 114, + "course_ratings": { + "ED3314": 4.49 + } + } + ], + "leticia ferreira de souza": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2487182", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Leticia Ferreira de Souza", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 1, + "tags": [], + "rmp_id": "2487182", + "instructor_id": "lxf161030", + "overall_grade_rating": 4.21, + "total_grade_count": 191, + "course_ratings": { + "ATCM3301": 2.79, + "ATCM2301": 4.5, + "ATCM3321": 4.17, + "FILM1303": 4.12, + "ATCM2300": 4.61 + } + } + ], + "daedra christopher": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2258699", + "quality_rating": 3.7, + "difficulty_rating": 3.7, + "would_take_again": 83, + "original_rmp_format": "Daedra Christopher", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Lots of homework", + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Group projects" + ], + "rmp_id": "2258699", + "instructor_id": "dxe093020", + "overall_grade_rating": 4.16, + "total_grade_count": 206, + "course_ratings": { + "ATCM2301": 4.16, + "ATCM3365": 3.96, + "ATCM4397": 4.32 + } + } + ], + "forney fleming": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/1676505", + "quality_rating": 4.5, + "difficulty_rating": 2.2, + "would_take_again": 90, + "original_rmp_format": "Forney Fleming", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 23, + "tags": [ + "Amazing lectures ", + "Clear grading criteria", + "Test heavy", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "1676505", + "instructor_id": "fwf081000", + "overall_grade_rating": 4.43, + "total_grade_count": 329, + "course_ratings": { + "HMGT6320": 4.78, + "HMGT3301": 3.84 + } + } + ], + "zachary simoni": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/2235751", + "quality_rating": 4.4, + "difficulty_rating": 2, + "would_take_again": 90, + "original_rmp_format": "Zachary Simoni", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 20, + "tags": [ + "Clear grading criteria", + "Gives good feedback", + "Graded by few things", + "Accessible outside class", + "Amazing lectures " + ], + "rmp_id": "2235751", + "instructor_id": "zrs160030", + "overall_grade_rating": 4.17, + "total_grade_count": 436, + "course_ratings": { + "SOC1301": 3.96, + "SOC4369": 4.39, + "SOC4385": 4.45, + "SOC4371": 4.49, + "SOC4384": 4.22, + "SOC4306": 4.36, + "SOC3320": 3.74 + } + } + ], + "joan mortensen": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/1363575", + "quality_rating": 2.4, + "difficulty_rating": 3.5, + "would_take_again": 10, + "original_rmp_format": "Joan Mortensen", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 37, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Skip class? You won't pass.", + "Lecture heavy" + ], + "rmp_id": "1363575", + "instructor_id": "jmorten", + "overall_grade_rating": 2.97, + "total_grade_count": 234, + "course_ratings": { + "HUMA1301": 2.97 + } + } + ], + "janell straach": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1561503", + "quality_rating": 4.3, + "difficulty_rating": 2, + "would_take_again": 75, + "original_rmp_format": "Janell Straach", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 16, + "tags": [ + "Respected", + "Participation matters", + "Lots of homework", + "Hilarious", + "Skip class? You won't pass." + ], + "rmp_id": "1561503", + "instructor_id": "jxs017800", + "overall_grade_rating": 4.06, + "total_grade_count": 111, + "course_ratings": { + "SE6388": 4.44, + "SE4381": 4.01, + "SE4351": 3.91 + } + } + ], + "mike grigsby": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2271232", + "quality_rating": 3.7, + "difficulty_rating": 3.3, + "would_take_again": 83, + "original_rmp_format": "Mike Grigsby", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 6, + "tags": [ + "Skip class? You won't pass.", + "Hilarious", + "Beware of pop quizzes", + "Test heavy", + "Tough grader" + ], + "rmp_id": "2271232", + "instructor_id": "mxg153330", + "overall_grade_rating": 4.28, + "total_grade_count": 220, + "course_ratings": { + "MKT6337": 4.15, + "BUAN6337": 4.3 + } + } + ], + "ernest hannig": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/876793", + "quality_rating": 2.5, + "difficulty_rating": 4.7, + "would_take_again": 31, + "original_rmp_format": "Ernest Hannig", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 30, + "tags": [ + "Tough grader", + "Test heavy", + "Skip class? You won't pass.", + "Accessible outside class", + "Lecture heavy" + ], + "rmp_id": "876793", + "instructor_id": "hannig", + "overall_grade_rating": 2.16, + "total_grade_count": 300, + "course_ratings": { + "BIOL3101": 2.1, + "BIOL3301": 2.01, + "BIOL4371": 4.72, + "BIOL3520": 2.13 + } + } + ], + "william semper": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2026851", + "quality_rating": 4.7, + "difficulty_rating": 2.6, + "would_take_again": 100, + "original_rmp_format": "William Semper", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 21, + "tags": ["Amazing lectures ", "Lots of homework", "Caring", "Would take again", "Hilarious"], + "rmp_id": "2026851", + "instructor_id": "wjs130130", + "overall_grade_rating": 4.35, + "total_grade_count": 514, + "course_ratings": { + "CS2305": 3.82, + "CS3341": 4.02, + "CS6313": 4.49, + "CS1336": 3.67, + "CS3305": 3.88, + "CS6301": 4.96, + "CS6375": 4.63 + } + } + ], + "lisa williams": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2253343", + "quality_rating": 2.9, + "difficulty_rating": 3.4, + "would_take_again": 44, + "original_rmp_format": "Lisa Williams", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 9, + "tags": [ + "Lots of homework", + "Skip class? You won't pass.", + "Clear grading criteria", + "Tough grader", + "EXTRA CREDIT" + ], + "rmp_id": "2253343", + "instructor_id": "lisacw", + "overall_grade_rating": 3.31, + "total_grade_count": 129, + "course_ratings": { + "ACCT2302": 3.31 + } + } + ], + "noah zisman": [ + { + "department": "Writing", + "url": "https://www.ratemyprofessors.com/professor/1845929", + "quality_rating": 2.7, + "difficulty_rating": 3.1, + "would_take_again": 33, + "original_rmp_format": "Noah Zisman", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 10, + "tags": [ + "Participation matters", + "Gives good feedback", + "Lots of homework", + "Amazing lectures ", + "Would take again" + ], + "rmp_id": "1845929", + "instructor_id": "nxz110630", + "overall_grade_rating": 3.46, + "total_grade_count": 52, + "course_ratings": { + "CRWT4354": 3.55, + "CRWT2301": 3.37 + } + } + ], + "zhenpeng qin": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2028598", + "quality_rating": 4, + "difficulty_rating": 3.3, + "would_take_again": 67, + "original_rmp_format": "Zhenpeng Qin", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 3, + "tags": [ + "Caring", + "Test heavy", + "Skip class? You won't pass.", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2028598", + "instructor_id": "zxq140530", + "overall_grade_rating": 4.12, + "total_grade_count": 170, + "course_ratings": { + "MECH6374": 4.22, + "MECH3320": 3.85, + "MECH6373": 4.43 + } + } + ], + "natalia humphreys": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1619033", + "quality_rating": 4.4, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Natalia Humphreys", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 4, + "tags": [ + "Skip class? You won't pass.", + "Amazing lectures ", + "Tough grader", + "Tests are tough", + "Clear grading criteria" + ], + "rmp_id": "1619033", + "instructor_id": "nah103020", + "overall_grade_rating": 3.37, + "total_grade_count": 407, + "course_ratings": { + "ACTS4308": 3.08, + "ACTS4302": 3.23, + "ACTS4304": 3.73, + "ACTS4303": 3.42, + "ACTS4309": 3.54, + "ACTS4301": 3.22, + "ACTS4305": 3.14 + } + } + ], + "daniel cohen": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1558308", + "quality_rating": 4.2, + "difficulty_rating": 3.5, + "would_take_again": 80, + "original_rmp_format": "Daniel Cohen", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 11, + "tags": [ + "Caring", + "Gives good feedback", + "Test heavy", + "Tough grader", + "Skip class? You won't pass." + ], + "rmp_id": "1558308", + "instructor_id": "dac101000", + "overall_grade_rating": 4.02, + "total_grade_count": 127, + "course_ratings": { + "ACCT3341": 4.02 + } + } + ], + "filip jevtic": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2312729", + "quality_rating": 4, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Filip Jevtic", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 4, + "tags": [ + "Accessible outside class", + "Skip class? You won't pass.", + "Gives good feedback", + "Caring", + "Amazing lectures " + ], + "rmp_id": "2312729", + "instructor_id": "fdj130030", + "overall_grade_rating": 2.95, + "total_grade_count": 120, + "course_ratings": { + "MATH2333": 2.95 + } + } + ], + "laurel neustadter": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2432215", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Laurel Neustadter", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 1, + "tags": [], + "rmp_id": "2432215", + "instructor_id": "lxn160230", + "overall_grade_rating": 3.66, + "total_grade_count": 22, + "course_ratings": { + "MATH2413": 3.66 + } + } + ], + "phillip hall": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2200730", + "quality_rating": 5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Phillip Hall", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 8, + "tags": ["Inspirational", "Caring", "Hilarious", "Respected", "Amazing lectures "], + "rmp_id": "2200730", + "instructor_id": "pxh151330", + "overall_grade_rating": 4.34, + "total_grade_count": 283, + "course_ratings": { + "ATCM2305": 4.78, + "ATCM3305": 4.05, + "ATCM4305": 3.94, + "ATCM4373": 2.85 + } + } + ], + "linda morales": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1509805", + "quality_rating": 3.5, + "difficulty_rating": 3.9, + "would_take_again": 57, + "original_rmp_format": "Linda Morales", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 41, + "tags": [ + "Lots of homework", + "Tough grader", + "Participation matters", + "Skip class? You won't pass.", + "Lecture heavy" + ], + "rmp_id": "1509805", + "instructor_id": "lxm014000", + "overall_grade_rating": 3.33, + "total_grade_count": 210, + "course_ratings": { + "CS3305": 3.29, + "SE6387": 4.27 + } + } + ], + "frank konietschke": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2002645", + "quality_rating": 4.6, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Frank Konietschke", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 18, + "tags": [ + "Accessible outside class", + "Caring", + "Clear grading criteria", + "Gives good feedback", + "Hilarious" + ], + "rmp_id": "2002645", + "instructor_id": "fxk141230", + "overall_grade_rating": 4.0, + "total_grade_count": 259, + "course_ratings": { + "STAT2332": 3.97, + "STAT6344": 4.24, + "STAT6339": 4.34 + } + } + ], + "liya hou": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2275633", + "quality_rating": 4.4, + "difficulty_rating": 2.6, + "would_take_again": 80, + "original_rmp_format": "Liya Hou", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 5, + "tags": [ + "Participation matters", + "EXTRA CREDIT", + "Respected", + "Caring", + "Graded by few things" + ], + "rmp_id": "2275633", + "instructor_id": "lxh110020", + "overall_grade_rating": 4.57, + "total_grade_count": 50, + "course_ratings": { + "ACCT2301": 4.57 + } + } + ], + "jaleah williams": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2322776", + "quality_rating": 4.2, + "difficulty_rating": 1.8, + "would_take_again": 80, + "original_rmp_format": "Jaleah Williams", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 5, + "tags": [ + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Participation matters", + "Caring", + "Tough grader" + ], + "rmp_id": "2322776", + "instructor_id": "jxw161630", + "overall_grade_rating": 4.45, + "total_grade_count": 149, + "course_ratings": { + "ECS1100": 4.45 + } + } + ], + "nathan goldman": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2341312", + "quality_rating": 4.9, + "difficulty_rating": 3.5, + "would_take_again": 100, + "original_rmp_format": "Nathan Goldman", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 18, + "tags": [ + "Amazing lectures ", + "Caring", + "Skip class? You won't pass.", + "Clear grading criteria", + "Get ready to read" + ], + "rmp_id": "2341312", + "instructor_id": "ncg160030", + "overall_grade_rating": 3.88, + "total_grade_count": 100, + "course_ratings": { + "ACCT3350": 3.56, + "ACCT6350": 4.14 + } + } + ], + "zhongwen fan": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2284342", + "quality_rating": 4.1, + "difficulty_rating": 2.4, + "would_take_again": 43, + "original_rmp_format": "Zhongwen Fan", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 7, + "tags": [ + "Clear grading criteria", + "EXTRA CREDIT", + "Gives good feedback", + "Caring", + "Test heavy" + ], + "rmp_id": "2284342", + "instructor_id": "zxf140730", + "overall_grade_rating": 3.72, + "total_grade_count": 59, + "course_ratings": { + "ACCT2301": 3.72 + } + } + ], + "brent dell": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/2311338", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Brent Dell", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Beware of pop quizzes", "Accessible outside class"], + "rmp_id": "2311338", + "instructor_id": "bxd160430", + "overall_grade_rating": 4.54, + "total_grade_count": 47, + "course_ratings": { + "GISC2305": 4.64, + "GISC4325": 4.33 + } + } + ], + "yeongin kim": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2379295", + "quality_rating": 4, + "difficulty_rating": 2.8, + "would_take_again": 80, + "original_rmp_format": "Yeongin Kim", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 5, + "tags": [ + "Accessible outside class", + "EXTRA CREDIT", + "Gives good feedback", + "Lecture heavy", + "Participation matters" + ], + "rmp_id": "2379295", + "instructor_id": "yxk130930", + "overall_grade_rating": 4.55, + "total_grade_count": 141, + "course_ratings": { + "ITSS3312": 4.74, + "ITSS3311": 4.46 + } + } + ], + "amanda hahn": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2391656", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Amanda Hahn", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 1, + "tags": ["Participation matters", "Gives good feedback", "Respected"], + "rmp_id": "2391656", + "instructor_id": "ach103020", + "overall_grade_rating": 3.87, + "total_grade_count": 17, + "course_ratings": { + "PSY3393": 3.87 + } + } + ], + "jackie clark": [ + { + "department": "Health Science", + "url": "https://www.ratemyprofessors.com/professor/1214575", + "quality_rating": 3.3, + "difficulty_rating": 3.8, + "would_take_again": 0, + "original_rmp_format": "Jackie Clark", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 6, + "tags": [ + "Lecture heavy", + "Skip class? You won't pass.", + "Gives good feedback", + "Caring", + "Test heavy" + ], + "rmp_id": "1214575", + "instructor_id": "jclark", + "overall_grade_rating": 4.79, + "total_grade_count": 331, + "course_ratings": { + "AUD7327": 4.84, + "AUD7280": 5.0, + "AUD6122": 5.0, + "AUD6311": 4.72, + "SPAU3341": 4.14, + "AUD7310": 4.96, + "AUD6352": 4.95 + } + } + ], + "chen jia": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2381049", + "quality_rating": 2, + "difficulty_rating": 2.5, + "would_take_again": 0, + "original_rmp_format": "Chen Jia", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 2, + "tags": [ + "Clear grading criteria", + "Lots of homework", + "Lecture heavy", + "Accessible outside class" + ], + "rmp_id": "2381049", + "instructor_id": "cxj160930", + "overall_grade_rating": 2.98, + "total_grade_count": 63, + "course_ratings": { + "STAT3360": 2.98 + } + } + ], + "kelli palmer": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2188563", + "quality_rating": 4.8, + "difficulty_rating": 2.2, + "would_take_again": 100, + "original_rmp_format": "Kelli Palmer", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 5, + "tags": [ + "Caring", + "Amazing lectures ", + "Skip class? You won't pass.", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2188563", + "instructor_id": "klp120030", + "overall_grade_rating": 4.61, + "total_grade_count": 151, + "course_ratings": { + "BIOL3303": 4.22, + "BIOL3520": 4.73, + "BIOL3203": 5.0 + } + } + ], + "kurt beron": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/307989", + "quality_rating": 3.4, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "Kurt Beron", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 10, + "tags": [ + "Clear grading criteria", + "EXTRA CREDIT", + "Group projects", + "Amazing lectures ", + "Would take again" + ], + "rmp_id": "307989", + "instructor_id": "kberon", + "overall_grade_rating": 3.9, + "total_grade_count": 146, + "course_ratings": { + "ECON6306": 4.02, + "ECON3315": 3.89 + } + } + ], + "steven guengerich": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2369535", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Steven Guengerich", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 2, + "tags": ["Group projects", "Gives good feedback", "Respected", "Accessible outside class"], + "rmp_id": "2369535", + "instructor_id": "sxg172931", + "overall_grade_rating": 4.08, + "total_grade_count": 153, + "course_ratings": { + "ENTP3301": 4.08 + } + } + ], + "whitney hinze": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2269676", + "quality_rating": 2.2, + "difficulty_rating": 4.1, + "would_take_again": 25, + "original_rmp_format": "Whitney Hinze", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 12, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Lots of homework", + "Gives good feedback", + "Participation matters" + ], + "rmp_id": "2269676", + "instructor_id": "wxh161930", + "overall_grade_rating": 3.68, + "total_grade_count": 83, + "course_ratings": { + "BA1100": 3.68 + } + } + ], + "ariel arguelles": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/2238842", + "quality_rating": 5, + "difficulty_rating": 3.7, + "would_take_again": 100, + "original_rmp_format": "Ariel Arguelles", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Amazing lectures ", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2238842", + "instructor_id": "axa152731", + "overall_grade_rating": 4.45, + "total_grade_count": 43, + "course_ratings": { + "PA3333": 4.29, + "PA3379": 4.65 + } + } + ], + "pavel kravetc": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2281131", + "quality_rating": 2.9, + "difficulty_rating": 3.9, + "would_take_again": 33, + "original_rmp_format": "Pavel Kravetc", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 12, + "tags": [ + "Skip class? You won't pass.", + "Lots of homework", + "Caring", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "2281131", + "instructor_id": "pxk142530", + "overall_grade_rating": 2.86, + "total_grade_count": 122, + "course_ratings": { + "MATH1326": 2.87, + "MATH2414": 2.83 + } + } + ], + "dennis walsh": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/1132293", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 33, + "original_rmp_format": "Dennis Walsh", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 6, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Gives good feedback", + "Graded by few things" + ], + "rmp_id": "1132293", + "instructor_id": "dpw031000", + "overall_grade_rating": 3.77, + "total_grade_count": 69, + "course_ratings": { + "HUMA1301": 3.57, + "LIT3323": 4.27, + "LIT1301": 4.12 + } + } + ], + "danish saifee": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2005413", + "quality_rating": 2.6, + "difficulty_rating": 3.5, + "would_take_again": 67, + "original_rmp_format": "Danish Saifee", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 8, + "tags": [ + "Tough grader", + "Lecture heavy", + "Participation matters", + "EXTRA CREDIT", + "Tests are tough" + ], + "rmp_id": "2005413", + "instructor_id": "dxs121230", + "overall_grade_rating": 4.14, + "total_grade_count": 94, + "course_ratings": { + "ITSS3311": 3.93, + "ITSS3300": 4.34 + } + } + ], + "david reid": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1931024", + "quality_rating": 4.5, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "David Reid", + "last_updated": "2025-03-14T23:13:30.175400", + "ratings_count": 13, + "tags": [ + "Caring", + "Group projects", + "Gives good feedback", + "Would take again", + "Participation matters" + ], + "rmp_id": "1931024", + "instructor_id": "dxr143530", + "overall_grade_rating": 4.94, + "total_grade_count": 111, + "course_ratings": { + "BCOM4350": 4.91, + "ACCT6388": 4.99 + } + } + ], + "stephanie davis": [ + { + "department": "Humanities", + "url": "https://www.ratemyprofessors.com/professor/2193773", + "quality_rating": 4.7, + "difficulty_rating": 1.7, + "would_take_again": 94, + "original_rmp_format": "Stephanie Davis", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 48, + "tags": [ + "EXTRA CREDIT", + "Clear grading criteria", + "Graded by few things", + "Amazing lectures ", + "Hilarious" + ], + "rmp_id": "2193773", + "instructor_id": "sxd168630", + "overall_grade_rating": 4.19, + "total_grade_count": 1502, + "course_ratings": { + "GOVT2306": 4.31, + "GOVT2305": 4.0, + "PSCI3362": 4.1 + } + } + ], + "karl krayer": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2423072", + "quality_rating": 2, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Karl Krayer", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 1, + "tags": ["Tough grader", "Participation matters", "Skip class? You won't pass."], + "rmp_id": "2423072", + "instructor_id": "kxk166030", + "overall_grade_rating": 4.44, + "total_grade_count": 44, + "course_ratings": { + "COMM1311": 4.44 + } + } + ], + "angela lee": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2003021", + "quality_rating": 4.6, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "Angela Lee", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 10, + "tags": [ + "Gives good feedback", + "Participation matters", + "Would take again", + "Caring", + "Lots of homework" + ], + "rmp_id": "2003021", + "instructor_id": "aml140530", + "overall_grade_rating": 4.53, + "total_grade_count": 97, + "course_ratings": { + "ATCM6392": 4.29, + "ATCM4380": 4.49, + "ATCM3382": 4.58, + "ATCM4386": 4.58 + } + } + ], + "austin henslee": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2242303", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Austin Henslee", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 4, + "tags": [ + "Lots of homework", + "Respected", + "Get ready to read", + "Amazing lectures ", + "Inspirational" + ], + "rmp_id": "2242303", + "instructor_id": "axh134230", + "overall_grade_rating": 4.47, + "total_grade_count": 173, + "course_ratings": { + "MIS6346": 4.51, + "BUAN6346": 4.45 + } + } + ], + "christopher roby": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2104560", + "quality_rating": 3.4, + "difficulty_rating": 2.8, + "would_take_again": 67, + "original_rmp_format": "Christopher Roby", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 11, + "tags": [ + "Lecture heavy", + "Hilarious", + "Clear grading criteria", + "Lots of homework", + "Test heavy" + ], + "rmp_id": "2104560", + "instructor_id": "cxr113330", + "overall_grade_rating": 4.09, + "total_grade_count": 22, + "course_ratings": { + "ECON6306": 4.09 + } + } + ], + "suzanne mcintosh": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2185746", + "quality_rating": 4.8, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Suzanne McIntosh", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 7, + "tags": [ + "Caring", + "EXTRA CREDIT", + "Gives good feedback", + "Skip class? You won't pass.", + "Participation matters" + ], + "rmp_id": "2185746", + "instructor_id": "skm130030", + "overall_grade_rating": 4.31, + "total_grade_count": 72, + "course_ratings": { + "RHET1302": 4.31 + } + } + ], + "jonathan harrop": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2310657", + "quality_rating": 4.7, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Jonathan Harrop", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 3, + "tags": [ + "Graded by few things", + "Skip class? You won't pass.", + "Amazing lectures ", + "Tests? Not many", + "Respected" + ], + "rmp_id": "2310657", + "instructor_id": "jjh170530", + "overall_grade_rating": 4.45, + "total_grade_count": 83, + "course_ratings": { + "MKT4334": 4.45 + } + } + ], + "shirley wilson": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2409898", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Shirley Wilson", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 1, + "tags": ["Clear grading criteria"], + "rmp_id": "2409898", + "instructor_id": "ssw130030", + "overall_grade_rating": 4.17, + "total_grade_count": 107, + "course_ratings": { + "ECS1100": 4.17 + } + } + ], + "jeff kavanaugh": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2357162", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Jeff Kavanaugh", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 1, + "tags": ["Get ready to read", "Participation matters", "Amazing lectures "], + "rmp_id": "2357162", + "instructor_id": "jlk160030", + "overall_grade_rating": 4.45, + "total_grade_count": 45, + "course_ratings": { + "MKT6342": 4.45 + } + } + ], + "xi shan": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2222399", + "quality_rating": 3.2, + "difficulty_rating": 2.2, + "would_take_again": 60, + "original_rmp_format": "Xi Shan", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 5, + "tags": [ + "EXTRA CREDIT", + "Beware of pop quizzes", + "Graded by few things", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "2222399", + "instructor_id": "xxs130630", + "overall_grade_rating": 4.54, + "total_grade_count": 131, + "course_ratings": { + "OPRE3310": 4.54 + } + } + ], + "stuart cogan": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2187268", + "quality_rating": 4.8, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Stuart Cogan", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 5, + "tags": [ + "EXTRA CREDIT", + "Respected", + "Test heavy", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "2187268", + "instructor_id": "sxc149830", + "overall_grade_rating": 4.08, + "total_grade_count": 332, + "course_ratings": { + "BMEN3315": 4.03, + "BMEN6393": 4.98 + } + } + ], + "joseph picken": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2040838", + "quality_rating": 2.5, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Joseph Picken", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 4, + "tags": [ + "Get ready to read", + "Lots of homework", + "Participation matters", + "Lecture heavy", + "Tough grader" + ], + "rmp_id": "2040838", + "instructor_id": "jcp016300", + "overall_grade_rating": 3.96, + "total_grade_count": 39, + "course_ratings": { + "ENTP6380": 4.25, + "MKT6380": 3.99, + "OB6321": 4.33, + "ENTP4360": 3.4 + } + } + ], + "jane salk": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1102837", + "quality_rating": 2.4, + "difficulty_rating": 2.9, + "would_take_again": 67, + "original_rmp_format": "Jane Salk", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 16, + "tags": [ + "Tough grader", + "Participation matters", + "Accessible outside class", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "1102837", + "instructor_id": "jes025000", + "overall_grade_rating": 3.18, + "total_grade_count": 119, + "course_ratings": { + "IMS3310": 3.18 + } + } + ], + "kent boyer": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2374006", + "quality_rating": 5, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Kent Boyer", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 3, + "tags": [ + "Caring", + "Gives good feedback", + "Hilarious", + "Clear grading criteria", + "Graded by few things" + ], + "rmp_id": "2374006", + "instructor_id": "klb140030", + "overall_grade_rating": 4.12, + "total_grade_count": 75, + "course_ratings": { + "RHET1302": 4.12 + } + } + ], + "hyuntae yoo": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2188558", + "quality_rating": 2.2, + "difficulty_rating": 3.9, + "would_take_again": 25, + "original_rmp_format": "Hyuntae Yoo", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 12, + "tags": [ + "Accessible outside class", + "Tests are tough", + "Caring", + "Test heavy", + "Tough grader" + ], + "rmp_id": "2188558", + "instructor_id": "hxy103120", + "overall_grade_rating": 3.04, + "total_grade_count": 313, + "course_ratings": { + "BIOL3161": 2.9, + "BIOL6373": 4.64, + "CHEM3361": 2.55, + "BIOL3361": 2.54, + "BIOL5410": 4.73 + } + } + ], + "michael kesden": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1913360", + "quality_rating": 4.1, + "difficulty_rating": 3.7, + "would_take_again": 100, + "original_rmp_format": "Michael Kesden", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 9, + "tags": [ + "Tough grader", + "Clear grading criteria", + "Accessible outside class", + "Amazing lectures ", + "Caring" + ], + "rmp_id": "1913360", + "instructor_id": "mhk130030", + "overall_grade_rating": 3.54, + "total_grade_count": 229, + "course_ratings": { + "PHYS5311": 4.23, + "PHYS3312": 3.05 + } + } + ], + "kara sutton": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/2188630", + "quality_rating": 4.9, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "Kara Sutton", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 13, + "tags": ["Caring", "Accessible outside class", "Inspirational", "EXTRA CREDIT", "Hilarious"], + "rmp_id": "2188630", + "instructor_id": "klt011200", + "overall_grade_rating": 4.3, + "total_grade_count": 238, + "course_ratings": { + "SOC4302": 4.49, + "SOC3305": 4.74, + "EPPS2301": 4.39, + "EPPS2302": 4.02 + } + } + ], + "asma naz": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1873980", + "quality_rating": 4, + "difficulty_rating": 2.8, + "would_take_again": 67, + "original_rmp_format": "Asma Naz", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 4, + "tags": [ + "Accessible outside class", + "Clear grading criteria", + "Gives good feedback", + "Tough grader", + "Graded by few things" + ], + "rmp_id": "1873980", + "instructor_id": "axn094120", + "overall_grade_rating": 3.88, + "total_grade_count": 203, + "course_ratings": { + "ATCM2301": 3.88 + } + } + ], + "zeyu zhang": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1965442", + "quality_rating": 4.4, + "difficulty_rating": 2.9, + "would_take_again": 88, + "original_rmp_format": "Zeyu Zhang", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 8, + "tags": [ + "EXTRA CREDIT", + "Accessible outside class", + "Skip class? You won't pass.", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "1965442", + "instructor_id": "zxz110530", + "overall_grade_rating": 3.87, + "total_grade_count": 47, + "course_ratings": { + "ECON3310": 3.67, + "ECON2302": 4.42 + } + } + ], + "mitchell meltzer": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/2154267", + "quality_rating": 4, + "difficulty_rating": 3.7, + "would_take_again": 67, + "original_rmp_format": "Mitchell Meltzer", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 3, + "tags": [ + "Graded by few things", + "Skip class? You won't pass.", + "Amazing lectures ", + "Gives good feedback", + "Hilarious" + ], + "rmp_id": "2154267", + "instructor_id": "mam089100", + "overall_grade_rating": 3.59, + "total_grade_count": 145, + "course_ratings": { + "PSY2317": 3.34, + "ACN6395": 4.15, + "PSY3361": 3.74 + } + } + ], + "ahmed ali": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2286412", + "quality_rating": 3.9, + "difficulty_rating": 3.3, + "would_take_again": 57, + "original_rmp_format": "Ahmed Ali", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 7, + "tags": [ + "Lots of homework", + "Caring", + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2286412", + "instructor_id": "axa094420", + "overall_grade_rating": 3.33, + "total_grade_count": 202, + "course_ratings": { + "MATH1325": 3.49, + "MATH1326": 3.12 + } + } + ], + "kutsal dogan": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2069012", + "quality_rating": 4.2, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Kutsal Dogan", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 7, + "tags": [ + "Respected", + "Group projects", + "Beware of pop quizzes", + "Skip class? You won't pass.", + "Gives good feedback" + ], + "rmp_id": "2069012", + "instructor_id": "kxd025000", + "overall_grade_rating": 4.17, + "total_grade_count": 294, + "course_ratings": { + "MIS6326": 4.19, + "MIS6320": 4.11, + "BUAN6320": 4.06, + "OPRE6393": 4.11 + } + } + ], + "julie parsons": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2384713", + "quality_rating": 3.7, + "difficulty_rating": 2, + "would_take_again": 67, + "original_rmp_format": "Julie Parsons", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 3, + "tags": [ + "Clear grading criteria", + "Caring", + "Accessible outside class", + "Participation matters", + "EXTRA CREDIT" + ], + "rmp_id": "2384713", + "instructor_id": "jab140230", + "overall_grade_rating": 4.03, + "total_grade_count": 85, + "course_ratings": { + "PSY3331": 4.03 + } + } + ], + "ying cao": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2382443", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Ying Cao", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 1, + "tags": ["Clear grading criteria", "Respected"], + "rmp_id": "2382443", + "instructor_id": "yxc121130", + "overall_grade_rating": 4.71, + "total_grade_count": 35, + "course_ratings": { + "OPRE3310": 4.71 + } + } + ], + "gary frazier": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1836546", + "quality_rating": 3.5, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Gary Frazier", + "last_updated": "2025-03-14T23:13:31.001565", + "ratings_count": 14, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "Amazing lectures ", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "1836546", + "instructor_id": "gaf012000", + "overall_grade_rating": 4.21, + "total_grade_count": 31, + "course_ratings": { + "PHYS3427": 4.21 + } + } + ], + "yaser ibrahim": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2022748", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Yaser Ibrahim", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["Group projects", "Clear grading criteria", "Lots of homework"], + "rmp_id": "2022748", + "instructor_id": "ymi140030", + "overall_grade_rating": 3.84, + "total_grade_count": 49, + "course_ratings": { + "ECS3361": 3.84 + } + } + ], + "zulfi ahmed": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2390217", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Zulfi Ahmed", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["Group projects", "Gives good feedback", "Respected"], + "rmp_id": "2390217", + "instructor_id": "zsa170330", + "overall_grade_rating": 4.97, + "total_grade_count": 26, + "course_ratings": { + "MIS6333": 4.97 + } + } + ], + "jennifer kraemer": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/2209092", + "quality_rating": 4.8, + "difficulty_rating": 3.8, + "would_take_again": 75, + "original_rmp_format": "Jennifer Kraemer", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 4, + "tags": [ + "Gives good feedback", + "Get ready to read", + "Caring", + "Tough grader", + "Participation matters" + ], + "rmp_id": "2209092", + "instructor_id": "jdk019100", + "overall_grade_rating": 3.23, + "total_grade_count": 24, + "course_ratings": { + "LIT2341": 3.23 + } + } + ], + "sheel dodani": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2277902", + "quality_rating": 2.4, + "difficulty_rating": 3.8, + "would_take_again": 20, + "original_rmp_format": "Sheel Dodani", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 5, + "tags": [ + "Get ready to read", + "Tough grader", + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Lecture heavy" + ], + "rmp_id": "2277902", + "instructor_id": "scd023000", + "overall_grade_rating": 3.48, + "total_grade_count": 458, + "course_ratings": { + "CHEM3341": 3.57, + "CHEM6100": 5.0, + "BIOL3161": 3.05, + "BIOL3361": 3.01, + "CHEM3361": 2.98 + } + } + ], + "xia si": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2253342", + "quality_rating": 4.5, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Xia Si", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 6, + "tags": [ + "Clear grading criteria", + "Graded by few things", + "Accessible outside class", + "Amazing lectures ", + "Get ready to read" + ], + "rmp_id": "2253342", + "instructor_id": "xxs101120", + "overall_grade_rating": 3.95, + "total_grade_count": 138, + "course_ratings": { + "ECON2301": 3.95 + } + } + ], + "zachary powell": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2288574", + "quality_rating": 2.3, + "difficulty_rating": 3.7, + "would_take_again": 33, + "original_rmp_format": "Zachary Powell", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 3, + "tags": [ + "So many papers", + "Gives good feedback", + "Lots of homework", + "Graded by few things", + "Accessible outside class" + ], + "rmp_id": "2288574", + "instructor_id": "zap130030", + "overall_grade_rating": 3.48, + "total_grade_count": 85, + "course_ratings": { + "CRIM3310": 3.28, + "CRIM3300": 3.7 + } + } + ], + "huy nguyen": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2384592", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Huy Nguyen", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["Group projects", "Caring", "Lecture heavy"], + "rmp_id": "2384592", + "instructor_id": "hxn130630", + "overall_grade_rating": 4.17, + "total_grade_count": 83, + "course_ratings": { + "BPS4305": 4.43, + "OBHR3310": 3.86 + } + } + ], + "candice chandler": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/767624", + "quality_rating": 2.3, + "difficulty_rating": 4.3, + "would_take_again": 50, + "original_rmp_format": "Candice Chandler", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 27, + "tags": [ + "Tough grader", + "So many papers", + "Lots of homework", + "Skip class? You won't pass.", + "Lecture heavy" + ], + "rmp_id": "767624", + "instructor_id": "cxc031000", + "overall_grade_rating": 3.78, + "total_grade_count": 73, + "course_ratings": { + "ED4357": 3.55, + "ED4363": 4.22 + } + } + ], + "xiaosi gu": [ + { + "department": "Neuroscience", + "url": "https://www.ratemyprofessors.com/professor/2179180", + "quality_rating": 3.4, + "difficulty_rating": 3.3, + "would_take_again": 62, + "original_rmp_format": "Xiaosi Gu", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 13, + "tags": [ + "Test heavy", + "EXTRA CREDIT", + "Graded by few things", + "Clear grading criteria", + "Get ready to read" + ], + "rmp_id": "2179180", + "instructor_id": "xxg150730", + "overall_grade_rating": 3.65, + "total_grade_count": 164, + "course_ratings": { + "NSC3361": 3.65 + } + } + ], + "brian mckay": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2079370", + "quality_rating": 5, + "difficulty_rating": 3.5, + "would_take_again": 100, + "original_rmp_format": "Brian McKay", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 4, + "tags": [ + "Skip class? You won't pass.", + "Inspirational", + "Caring", + "Respected", + "Amazing lectures " + ], + "rmp_id": "2079370", + "instructor_id": "bxm131530", + "overall_grade_rating": 3.45, + "total_grade_count": 49, + "course_ratings": { + "CRIM2317": 3.66, + "CRIM4337": 3.27 + } + } + ], + "nasir rahman": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2318094", + "quality_rating": 1, + "difficulty_rating": 3.5, + "would_take_again": 0, + "original_rmp_format": "Nasir Rahman", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 4, + "tags": ["Group projects", "Tough grader", "Get ready to read", "Participation matters"], + "rmp_id": "2318094", + "instructor_id": "nxr160930", + "overall_grade_rating": 4.26, + "total_grade_count": 74, + "course_ratings": { + "FIN6350": 4.24, + "FIN6368": 4.3 + } + } + ], + "joshua miller": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2378351", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Joshua Miller", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["Skip class? You won't pass.", "Group projects", "Gives good feedback"], + "rmp_id": "2378351", + "instructor_id": "jlm104020", + "overall_grade_rating": 4.34, + "total_grade_count": 72, + "course_ratings": { + "ATCM3365": 4.34 + } + } + ], + "james richards": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1416681", + "quality_rating": 3.9, + "difficulty_rating": 2.6, + "would_take_again": 80, + "original_rmp_format": "James Richards", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 18, + "tags": [ + "Skip class? You won't pass.", + "Clear grading criteria", + "Respected", + "Graded by few things", + "Group projects" + ], + "rmp_id": "1416681", + "instructor_id": "jrr013500", + "overall_grade_rating": 3.73, + "total_grade_count": 177, + "course_ratings": { + "FIN6311": 4.69, + "ACCT4337": 3.94, + "FIN3320": 3.33 + } + } + ], + "mine aksu": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2302483", + "quality_rating": 1.1, + "difficulty_rating": 4.7, + "would_take_again": 0, + "original_rmp_format": "Mine Aksu", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 11, + "tags": [ + "Lots of homework", + "Get ready to read", + "Tough grader", + "Test heavy", + "Skip class? You won't pass." + ], + "rmp_id": "2302483", + "instructor_id": "mha100020", + "overall_grade_rating": 2.63, + "total_grade_count": 182, + "course_ratings": { + "ACCT2301": 2.63 + } + } + ], + "wonjae choi": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2376791", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Wonjae Choi", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["Participation matters", "Skip class? You won't pass.", "Group projects"], + "rmp_id": "2376791", + "instructor_id": "wxc111930", + "overall_grade_rating": 4.82, + "total_grade_count": 223, + "course_ratings": { + "MECH3115": 4.92, + "MECH7392": 4.59, + "MECH7393": 4.51 + } + } + ], + "jamie kernohan": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2246123", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Jamie Kernohan", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Group projects", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2246123", + "instructor_id": "jpk036000", + "overall_grade_rating": 3.99, + "total_grade_count": 42, + "course_ratings": { + "MKT3300": 3.99 + } + } + ], + "carol flannery": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1308566", + "quality_rating": 3.2, + "difficulty_rating": 3.3, + "would_take_again": 46, + "original_rmp_format": "Carol Flannery", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 65, + "tags": [ + "Clear grading criteria", + "Tough grader", + "Get ready to read", + "Test heavy", + "Skip class? You won't pass." + ], + "rmp_id": "1308566", + "instructor_id": "flannery", + "overall_grade_rating": 3.91, + "total_grade_count": 570, + "course_ratings": { + "OPRE6301": 3.94, + "OPRE3360": 3.67 + } + } + ], + "richard reed": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1104613", + "quality_rating": 2.5, + "difficulty_rating": 3.2, + "would_take_again": 80, + "original_rmp_format": "Richard Reed", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 21, + "tags": [ + "Tough grader", + "Lots of homework", + "Lecture heavy", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "1104613", + "instructor_id": "rxr062000", + "overall_grade_rating": 3.49, + "total_grade_count": 145, + "course_ratings": { + "ITSS3300": 3.49 + } + } + ], + "kyle graves": [ + { + "department": "Undergraduate Studies", + "url": "https://www.ratemyprofessors.com/professor/2334240", + "quality_rating": 5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Kyle Graves", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 2, + "tags": [ + "Gives good feedback", + "Amazing lectures ", + "Inspirational", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "2334240", + "instructor_id": "kwg041000", + "overall_grade_rating": 4.64, + "total_grade_count": 38, + "course_ratings": { + "ISIS4303": 4.64 + } + } + ], + "lori brooks": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/2373400", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Lori Brooks", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["Amazing lectures ", "Clear grading criteria", "Inspirational"], + "rmp_id": "2373400", + "instructor_id": "lxb180004", + "overall_grade_rating": 4.81, + "total_grade_count": 66, + "course_ratings": { + "ED4353": 4.81 + } + } + ], + "michael zhang": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2372758", + "quality_rating": 2, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Michael Zhang", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["So many papers", "Respected", "Lecture heavy"], + "rmp_id": "2372758", + "instructor_id": "mqz091000", + "overall_grade_rating": 3.87, + "total_grade_count": 28, + "course_ratings": { + "BMEN6389": 4.64, + "BIOL6385": 3.61 + } + } + ], + "blake kimzey": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1935516", + "quality_rating": 4.5, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "Blake Kimzey", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 4, + "tags": [ + "Get ready to read", + "Gives good feedback", + "Participation matters", + "Skip class? You won't pass.", + "Clear grading criteria" + ], + "rmp_id": "1935516", + "instructor_id": "bgk140130", + "overall_grade_rating": 4.59, + "total_grade_count": 50, + "course_ratings": { + "CRWT2301": 4.59 + } + } + ], + "dennis mccuistion": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1623764", + "quality_rating": 3.3, + "difficulty_rating": 3.2, + "would_take_again": 0, + "original_rmp_format": "Dennis McCuistion", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 17, + "tags": [ + "Tough grader", + "Get ready to read", + "Participation matters", + "Group projects", + "Lecture heavy" + ], + "rmp_id": "1623764", + "instructor_id": "dxm094000", + "overall_grade_rating": 4.48, + "total_grade_count": 116, + "course_ratings": { + "ACCT6377": 4.68, + "BCOM3310": 3.75 + } + } + ], + "winston stone": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/755505", + "quality_rating": 3, + "difficulty_rating": 3.3, + "would_take_again": 44, + "original_rmp_format": "Winston Stone", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 65, + "tags": [ + "Beware of pop quizzes", + "Tough grader", + "Get ready to read", + "Group projects", + "Skip class? You won't pass." + ], + "rmp_id": "755505", + "instructor_id": "wxs034000", + "overall_grade_rating": 3.93, + "total_grade_count": 377, + "course_ratings": { + "ARTS1301": 3.93 + } + } + ], + "michael noyes": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2148661", + "quality_rating": 5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Michael Noyes", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 2, + "tags": [ + "Gives good feedback", + "Tough grader", + "Clear grading criteria", + "Caring", + "Test heavy" + ], + "rmp_id": "2148661", + "instructor_id": "mxn143130", + "overall_grade_rating": 3.46, + "total_grade_count": 51, + "course_ratings": { + "CRIM3307": 3.46 + } + } + ], + "lee bulla": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/928103", + "quality_rating": 2.7, + "difficulty_rating": 3.7, + "would_take_again": 0, + "original_rmp_format": "Lee Bulla", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 24, + "tags": [ + "Lecture heavy", + "Tough grader", + "Test heavy", + "Get ready to read", + "Graded by few things" + ], + "rmp_id": "928103", + "instructor_id": "bulla", + "overall_grade_rating": 3.16, + "total_grade_count": 119, + "course_ratings": { + "BIOL1318": 2.55, + "BIOL5375": 4.27, + "BIOL5381": 4.54 + } + } + ], + "joe marchant": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1487511", + "quality_rating": 2.6, + "difficulty_rating": 3.2, + "would_take_again": 33, + "original_rmp_format": "Joe Marchant", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 12, + "tags": [ + "Tough grader", + "Group projects", + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Lecture heavy" + ], + "rmp_id": "1487511", + "instructor_id": "jtm014200", + "overall_grade_rating": 4.22, + "total_grade_count": 49, + "course_ratings": { + "BCOM3310": 4.22 + } + } + ], + "beverly carlsen landy": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/2065007", + "quality_rating": 3.3, + "difficulty_rating": 2.3, + "would_take_again": 33, + "original_rmp_format": " Beverly Carlsen-Landy", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 3, + "tags": [ + "Get ready to read", + "Participation matters", + "Tough grader", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2065007", + "instructor_id": "blc120130", + "overall_grade_rating": 3.26, + "total_grade_count": 109, + "course_ratings": { + "SOC3331": 3.57, + "SOC1301": 3.3, + "SOC2305": 2.5 + } + } + ], + "allison case": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1950407", + "quality_rating": 3.5, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Allison Case", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 12, + "tags": [ + "Skip class? You won't pass.", + "Gives good feedback", + "Caring", + "Tough grader", + "Get ready to read" + ], + "rmp_id": "1950407", + "instructor_id": "abc130530", + "overall_grade_rating": 4.06, + "total_grade_count": 212, + "course_ratings": { + "BMEN2320": 3.45, + "BMEN3130": 4.28, + "BMEN7341": 5.0, + "BMEN7342": 5.0 + } + } + ], + "patricia michaelson": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/1494436", + "quality_rating": 4.1, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Patricia Michaelson", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 12, + "tags": [ + "Participation matters", + "Would take again", + "Inspirational", + "So many papers", + "Respected" + ], + "rmp_id": "1494436", + "instructor_id": "pmichael", + "overall_grade_rating": 3.86, + "total_grade_count": 30, + "course_ratings": { + "LIT3319": 3.86 + } + } + ], + "jiayi wu": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2187791", + "quality_rating": 2.4, + "difficulty_rating": 3, + "would_take_again": 20, + "original_rmp_format": "Jiayi Wu", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 5, + "tags": [ + "Test heavy", + "Lots of homework", + "Skip class? You won't pass.", + "Tests are tough", + "Clear grading criteria" + ], + "rmp_id": "2187791", + "instructor_id": "jxw133130", + "overall_grade_rating": 3.54, + "total_grade_count": 115, + "course_ratings": { + "STAT1342": 3.54 + } + } + ], + "bernhard ganglmair": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1669176", + "quality_rating": 3.5, + "difficulty_rating": 4.7, + "would_take_again": 100, + "original_rmp_format": "Bernhard Ganglmair", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 3, + "tags": [ + "Tough grader", + "Get ready to read", + "Lots of homework", + "Beware of pop quizzes", + "Respected" + ], + "rmp_id": "1669176", + "instructor_id": "bxg107120", + "overall_grade_rating": 3.98, + "total_grade_count": 72, + "course_ratings": { + "MECO6360": 3.96, + "MECO6303": 3.99 + } + } + ], + "farid khafizov": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1476829", + "quality_rating": 2.8, + "difficulty_rating": 3.4, + "would_take_again": 33, + "original_rmp_format": "Farid Khafizov", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 35, + "tags": [ + "Lots of homework", + "Tough grader", + "Skip class? You won't pass.", + "Participation matters", + "Tests are tough" + ], + "rmp_id": "1476829", + "instructor_id": "ftk100020", + "overall_grade_rating": 3.27, + "total_grade_count": 225, + "course_ratings": { + "MATH2417": 3.27, + "BUAN6382": 4.31, + "MATH2418": 2.59 + } + } + ], + "rashika mishra": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2280224", + "quality_rating": 2.7, + "difficulty_rating": 3.7, + "would_take_again": 43, + "original_rmp_format": "Rashika Mishra", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 7, + "tags": [ + "Get ready to read", + "Lots of homework", + "Beware of pop quizzes", + "Test heavy", + "Accessible outside class" + ], + "rmp_id": "2280224", + "instructor_id": "rxm156430", + "overall_grade_rating": 3.84, + "total_grade_count": 52, + "course_ratings": { + "CS2305": 3.84 + } + } + ], + "ye qiu": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2358000", + "quality_rating": 3, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Ye Qiu", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["Group projects", "Clear grading criteria", "Caring"], + "rmp_id": "2358000", + "instructor_id": "yxq110430", + "overall_grade_rating": 4.48, + "total_grade_count": 95, + "course_ratings": { + "MKT3300": 4.48 + } + } + ], + "john kirtzic": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1796511", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "John Kirtzic", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 3, + "tags": ["Group projects", "Clear grading criteria", "Caring"], + "rmp_id": "1796511", + "instructor_id": "jsk061000", + "overall_grade_rating": 4.12, + "total_grade_count": 66, + "course_ratings": { + "CS4332": 4.12 + } + } + ], + "chris widomski": [ + { + "department": "Arts amp Humanities", + "url": "https://www.ratemyprofessors.com/professor/2318428", + "quality_rating": 4, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Chris Widomski", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["Hilarious"], + "rmp_id": "2318428", + "instructor_id": "cxw164530", + "overall_grade_rating": 3.78, + "total_grade_count": 173, + "course_ratings": { + "MUSI1306": 3.78 + } + } + ], + "hoyoun kyung": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2199210", + "quality_rating": 5, + "difficulty_rating": 2.9, + "would_take_again": 100, + "original_rmp_format": "Hoyoun Kyung", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 10, + "tags": [ + "Caring", + "Clear grading criteria", + "EXTRA CREDIT", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2199210", + "instructor_id": "hxk130930", + "overall_grade_rating": 3.82, + "total_grade_count": 60, + "course_ratings": { + "ACCT2301": 3.82 + } + } + ], + "laura payne": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2352939", + "quality_rating": 2, + "difficulty_rating": 3, + "would_take_again": 0, + "original_rmp_format": "Laura Payne", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["Skip class? You won't pass.", "Group projects", "Lecture heavy"], + "rmp_id": "2352939", + "instructor_id": "lep170330", + "overall_grade_rating": 4.35, + "total_grade_count": 136, + "course_ratings": { + "ECS1100": 4.35 + } + } + ], + "terence egan": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/1929837", + "quality_rating": 1, + "difficulty_rating": 4.5, + "would_take_again": 0, + "original_rmp_format": "Terence Egan", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 2, + "tags": [ + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Tests are tough", + "So many papers" + ], + "rmp_id": "1929837", + "instructor_id": "tje130130", + "overall_grade_rating": 3.66, + "total_grade_count": 212, + "course_ratings": { + "OPRE4330": 4.42, + "OPRE3310": 3.15 + } + } + ], + "young joo lee": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/1736787", + "quality_rating": 4.3, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Young-Joo Lee", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 7, + "tags": [ + "Participation matters", + "Caring", + "Gives good feedback", + "Respected", + "EXTRA CREDIT" + ], + "rmp_id": "1736787", + "instructor_id": "yxl093000", + "overall_grade_rating": 4.29, + "total_grade_count": 69, + "course_ratings": { + "PA4355": 4.09, + "PA6382": 4.49 + } + } + ], + "homer montgomery": [ + { + "department": "Science", + "url": "https://www.ratemyprofessors.com/professor/183430", + "quality_rating": 3.8, + "difficulty_rating": 2.9, + "would_take_again": 67, + "original_rmp_format": "Homer Montgomery", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 19, + "tags": [ + "So many papers", + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Group projects" + ], + "rmp_id": "183430", + "instructor_id": "mont", + "overall_grade_rating": 4.16, + "total_grade_count": 92, + "course_ratings": { + "NATS4390": 3.31, + "NATS2330": 4.67, + "SMED5304": 4.48, + "GEOS2332": 4.8 + } + } + ], + "annelise heinz": [ + { + "department": "Arts Humanities", + "url": "https://www.ratemyprofessors.com/professor/2189830", + "quality_rating": 4.7, + "difficulty_rating": 3.7, + "would_take_again": 100, + "original_rmp_format": "Annelise Heinz", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 3, + "tags": [ + "Accessible outside class", + "Get ready to read", + "Participation matters", + "Amazing lectures ", + "Lots of homework" + ], + "rmp_id": "2189830", + "instructor_id": "amh150930", + "overall_grade_rating": 3.45, + "total_grade_count": 76, + "course_ratings": { + "HIST4378": 3.36, + "HIST6325": 4.03, + "HIST2384": 3.46 + } + } + ], + "qingwen hu": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1514814", + "quality_rating": 3.1, + "difficulty_rating": 2.5, + "would_take_again": 40, + "original_rmp_format": "Qingwen Hu", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 12, + "tags": [ + "Gives good feedback", + "Get ready to read", + "Clear grading criteria", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "1514814", + "instructor_id": "qxh102020", + "overall_grade_rating": 2.98, + "total_grade_count": 125, + "course_ratings": { + "MATH5301": 4.07, + "MATH2418": 2.69 + } + } + ], + "kevin crook": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2034677", + "quality_rating": 4.8, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Kevin Crook", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 17, + "tags": [ + "Caring", + "Respected", + "Would take again", + "Gives good feedback", + "Clear grading criteria" + ], + "rmp_id": "2034677", + "instructor_id": "krc150730", + "overall_grade_rating": 4.34, + "total_grade_count": 135, + "course_ratings": { + "MIS6309": 4.34, + "BUAN6340": 4.34 + } + } + ], + "paul deignan": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1970093", + "quality_rating": 3, + "difficulty_rating": 4.3, + "would_take_again": 50, + "original_rmp_format": "Paul Deignan", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 28, + "tags": [ + "Tough grader", + "Get ready to read", + "Tests are tough", + "Gives good feedback", + "Test heavy" + ], + "rmp_id": "1970093", + "instructor_id": "pbd130130", + "overall_grade_rating": 2.98, + "total_grade_count": 101, + "course_ratings": { + "ENGR3341": 3.27, + "CS3341": 2.82, + "SE3341": 2.57 + } + } + ], + "terje saar hambazaza": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1858975", + "quality_rating": 4.6, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Terje Saar-Hambazaza", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 8, + "tags": [ + "Get ready to read", + "Gives good feedback", + "Beware of pop quizzes", + "Caring", + "Tough grader" + ], + "rmp_id": "1858975", + "instructor_id": "txs018600", + "overall_grade_rating": 4.05, + "total_grade_count": 82, + "course_ratings": { + "LIT2331": 4.05 + } + } + ], + "alisha kim": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1918342", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 100, + "original_rmp_format": "Alisha Kim", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 2, + "tags": ["Participation matters", "Gives good feedback", "Hilarious", "Caring"], + "rmp_id": "1918342", + "instructor_id": "axk124331", + "overall_grade_rating": 3.94, + "total_grade_count": 129, + "course_ratings": { + "EPPS2301": 3.87, + "PSCI4307": 4.06, + "IPEC4375": 4.24 + } + } + ], + "li zhang": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1329513", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "LI Zhang", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 1, + "tags": [], + "rmp_id": "1329513", + "instructor_id": "lxz075000", + "overall_grade_rating": 4.79, + "total_grade_count": 45, + "course_ratings": { + "BIOL4330": 4.79 + } + } + ], + "sina shokoohyar": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2231995", + "quality_rating": 4.5, + "difficulty_rating": 2.1, + "would_take_again": 93, + "original_rmp_format": "Sina Shokoohyar", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 14, + "tags": [ + "EXTRA CREDIT", + "Inspirational", + "Amazing lectures ", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2231995", + "instructor_id": "sxs137430", + "overall_grade_rating": 4.97, + "total_grade_count": 59, + "course_ratings": { + "OPRE3360": 4.97 + } + } + ], + "deborah dickson": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2276929", + "quality_rating": 1, + "difficulty_rating": 1, + "would_take_again": 0, + "original_rmp_format": "Deborah Dickson", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 1, + "tags": [], + "rmp_id": "2276929", + "instructor_id": "dwd150030", + "overall_grade_rating": 4.49, + "total_grade_count": 57, + "course_ratings": { + "ECS3390": 4.49 + } + } + ], + "sheena darcy": [ + { + "department": "Biochemistry", + "url": "https://www.ratemyprofessors.com/professor/2052904", + "quality_rating": 4.5, + "difficulty_rating": 3.4, + "would_take_again": 86, + "original_rmp_format": "Sheena D'arcy", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 9, + "tags": ["Amazing lectures ", "Lecture heavy", "Gives good feedback", "Caring", "Respected"], + "rmp_id": "2052904", + "instructor_id": "sxd156730", + "overall_grade_rating": 3.43, + "total_grade_count": 538, + "course_ratings": { + "BIOL3161": 3.36, + "BIOL3361": 3.17, + "CHEM3361": 3.74, + "CHEM5361": 4.47 + } + } + ], + "keven ates": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2125385", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Keven Ates", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 1, + "tags": ["Clear grading criteria", "Would take again", "Hilarious"], + "rmp_id": "2125385", + "instructor_id": "atescomp", + "overall_grade_rating": 4.75, + "total_grade_count": 86, + "course_ratings": { + "CS6315": 4.75 + } + } + ], + "nicholas gans": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1408854", + "quality_rating": 3.6, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Nicholas Gans", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 8, + "tags": [ + "EXTRA CREDIT", + "Amazing lectures ", + "Clear grading criteria", + "Lots of homework", + "Caring" + ], + "rmp_id": "1408854", + "instructor_id": "nrg092000", + "overall_grade_rating": 3.77, + "total_grade_count": 157, + "course_ratings": { + "EE4310": 3.77 + } + } + ], + "william wilson": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1311502", + "quality_rating": 2.5, + "difficulty_rating": 4.7, + "would_take_again": 33, + "original_rmp_format": "William Wilson", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 7, + "tags": [ + "Get ready to read", + "Tough grader", + "Beware of pop quizzes", + "Test heavy", + "Graded by few things" + ], + "rmp_id": "1311502", + "instructor_id": "whw041000", + "overall_grade_rating": 3.98, + "total_grade_count": 32, + "course_ratings": { + "ACCT6354": 3.98 + } + } + ], + "kelli martin": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2324668", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Kelli Martin", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 1, + "tags": ["Get ready to read", "Clear grading criteria", "Would take again"], + "rmp_id": "2324668", + "instructor_id": "kds106020", + "overall_grade_rating": 3.99, + "total_grade_count": 76, + "course_ratings": { + "CRIM4311": 3.99 + } + } + ], + "dana bracy": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2256333", + "quality_rating": 3.5, + "difficulty_rating": 2.5, + "would_take_again": 50, + "original_rmp_format": "Dana Bracy", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 2, + "tags": ["Participation matters", "Skip class? You won't pass.", "Respected"], + "rmp_id": "2256333", + "instructor_id": "dxb016100", + "overall_grade_rating": 4.07, + "total_grade_count": 176, + "course_ratings": { + "ACCT6383": 4.07 + } + } + ], + "chenxi liao": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2313245", + "quality_rating": 4, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Chenxi Liao", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 2, + "tags": [ + "Lecture heavy", + "Group projects", + "Tests? Not many", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2313245", + "instructor_id": "cxl143730", + "overall_grade_rating": 4.4, + "total_grade_count": 43, + "course_ratings": { + "MKT3300": 4.4 + } + } + ], + "harish guda": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2247130", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Harish Guda", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 2, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Amazing lectures ", + "Would take again", + "Gives good feedback" + ], + "rmp_id": "2247130", + "instructor_id": "hxg131530", + "overall_grade_rating": 4.78, + "total_grade_count": 49, + "course_ratings": { + "OPRE3310": 4.78 + } + } + ], + "xianjun geng": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2092141", + "quality_rating": 4.3, + "difficulty_rating": 4.2, + "would_take_again": 75, + "original_rmp_format": "Xianjun Geng", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 5, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "Group projects", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2092141", + "instructor_id": "xxg091000", + "overall_grade_rating": 4.22, + "total_grade_count": 111, + "course_ratings": { + "MIS6334": 4.22 + } + } + ], + "james hilkert": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1916519", + "quality_rating": 1.7, + "difficulty_rating": 3.8, + "would_take_again": 0, + "original_rmp_format": "James Hilkert", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 5, + "tags": [ + "Lots of homework", + "Beware of pop quizzes", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "1916519", + "instructor_id": "jmh011500", + "overall_grade_rating": 3.6, + "total_grade_count": 194, + "course_ratings": { + "MECH3350": 3.7, + "EE4310": 3.3 + } + } + ], + "john wiorkowski": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/1508534", + "quality_rating": 3.5, + "difficulty_rating": 2.4, + "would_take_again": 50, + "original_rmp_format": "John Wiorkowski", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 13, + "tags": [ + "Hilarious", + "Clear grading criteria", + "Would take again", + "Tough grader", + "Amazing lectures " + ], + "rmp_id": "1508534", + "instructor_id": "wiorkow", + "overall_grade_rating": 4.43, + "total_grade_count": 225, + "course_ratings": { + "MECO7312": 4.69, + "OPRE6301": 4.41 + } + } + ], + "mark layton": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2259676", + "quality_rating": 4, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Mark Layton", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 2, + "tags": [ + "Gives good feedback", + "Skip class? You won't pass.", + "EXTRA CREDIT", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2259676", + "instructor_id": "mcl170030", + "overall_grade_rating": 4.17, + "total_grade_count": 94, + "course_ratings": { + "OPRE3310": 4.17 + } + } + ], + "shuo yang": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2251882", + "quality_rating": 4, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Shuo Yang", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 1, + "tags": ["Skip class? You won't pass.", "Clear grading criteria", "Beware of pop quizzes"], + "rmp_id": "2251882", + "instructor_id": "sxy096120", + "overall_grade_rating": 3.33, + "total_grade_count": 22, + "course_ratings": { + "ECON2302": 3.33 + } + } + ], + "merry jett": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/2190906", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Merry Jett", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 3, + "tags": [ + "Gives good feedback", + "Skip class? You won't pass.", + "Amazing lectures ", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "2190906", + "instructor_id": "mxj120530", + "overall_grade_rating": 3.88, + "total_grade_count": 57, + "course_ratings": { + "RHET1302": 3.88 + } + } + ], + "anthony champagne": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1078349", + "quality_rating": 4.9, + "difficulty_rating": 2.8, + "would_take_again": 100, + "original_rmp_format": "Anthony Champagne", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 24, + "tags": [ + "Respected", + "Skip class? You won't pass.", + "Get ready to read", + "Tough grader", + "Amazing lectures " + ], + "rmp_id": "1078349", + "instructor_id": "tchamp", + "overall_grade_rating": 3.67, + "total_grade_count": 201, + "course_ratings": { + "PSCI3322": 3.5, + "PSCI3303": 3.9 + } + } + ], + "gurvinder ahluwalia": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2135704", + "quality_rating": 1.3, + "difficulty_rating": 4.6, + "would_take_again": 0, + "original_rmp_format": "Gurvinder Ahluwalia", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 8, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Test heavy", + "Get ready to read", + "Beware of pop quizzes" + ], + "rmp_id": "2135704", + "instructor_id": "gsa021000", + "overall_grade_rating": 4.28, + "total_grade_count": 19, + "course_ratings": { + "MIS6363": 4.28 + } + } + ], + "monique duncan": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1964583", + "quality_rating": 4, + "difficulty_rating": 4.4, + "would_take_again": 100, + "original_rmp_format": "Monique Duncan", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 5, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "Amazing lectures ", + "Tests? Not many", + "Respected" + ], + "rmp_id": "1964583", + "instructor_id": "mxd127830", + "overall_grade_rating": 3.24, + "total_grade_count": 18, + "course_ratings": { + "BIOL4315": 3.24 + } + } + ], + "anup maheshwari": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2255550", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Anup Maheshwari", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 1, + "tags": ["Tough grader", "Get ready to read", "Skip class? You won't pass."], + "rmp_id": "2255550", + "instructor_id": "axm179731", + "overall_grade_rating": 3.16, + "total_grade_count": 45, + "course_ratings": { + "ITSS4340": 3.16 + } + } + ], + "michele lockhart": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1855670", + "quality_rating": 3.4, + "difficulty_rating": 3.2, + "would_take_again": 100, + "original_rmp_format": "Michele Lockhart", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 68, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "EXTRA CREDIT", + "Inspirational", + "Would take again" + ], + "rmp_id": "1855670", + "instructor_id": "mxl135930", + "overall_grade_rating": 3.71, + "total_grade_count": 20, + "course_ratings": { + "ATCM4388": 3.71 + } + } + ], + "teresa parker": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1118575", + "quality_rating": 4.4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Teresa Parker", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 4, + "tags": [ + "Respected", + "Participation matters", + "Gives good feedback", + "Caring", + "Accessible outside class" + ], + "rmp_id": "1118575", + "instructor_id": "tparker", + "overall_grade_rating": 4.96, + "total_grade_count": 102, + "course_ratings": { + "ED3342": 4.97, + "ED4361": 4.91 + } + } + ], + "xin li": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1941444", + "quality_rating": 4.4, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Xin Li", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 7, + "tags": [ + "Clear grading criteria", + "Gives good feedback", + "Lecture heavy", + "Amazing lectures ", + "Would take again" + ], + "rmp_id": "1941444", + "instructor_id": "xxl068000", + "overall_grade_rating": 3.74, + "total_grade_count": 137, + "course_ratings": { + "ECON2302": 3.68, + "ECON7301": 4.31 + } + } + ], + "steven foland": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2105709", + "quality_rating": 3.7, + "difficulty_rating": 4.7, + "would_take_again": 33, + "original_rmp_format": "Steven Foland", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 3, + "tags": [ + "Lots of homework", + "So many papers", + "Tough grader", + "Participation matters", + "Skip class? You won't pass." + ], + "rmp_id": "2105709", + "instructor_id": "sjf041000", + "overall_grade_rating": 3.57, + "total_grade_count": 52, + "course_ratings": { + "BMEN4320": 3.33, + "BMEN3350": 3.66 + } + } + ], + "richard harrison": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1791720", + "quality_rating": 4.7, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Richard Harrison", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 3, + "tags": [ + "Participation matters", + "Group projects", + "Clear grading criteria", + "Caring", + "Respected" + ], + "rmp_id": "1791720", + "instructor_id": "harrison", + "overall_grade_rating": 4.39, + "total_grade_count": 57, + "course_ratings": { + "OB6303": 4.34, + "OB6331": 4.41 + } + } + ], + "karen patton": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2100850", + "quality_rating": 4.7, + "difficulty_rating": 2.1, + "would_take_again": 100, + "original_rmp_format": "Karen Patton", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 10, + "tags": ["Gives good feedback", "Caring", "EXTRA CREDIT", "Inspirational", "Respected"], + "rmp_id": "2100850", + "instructor_id": "kxp154730", + "overall_grade_rating": 4.65, + "total_grade_count": 117, + "course_ratings": { + "BCOM4350": 4.73, + "BCOM3310": 4.47 + } + } + ], + "clay reynolds": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/1011199", + "quality_rating": 4.3, + "difficulty_rating": 4, + "would_take_again": 100, + "original_rmp_format": "Clay Reynolds", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 5, + "tags": [ + "Tough grader", + "Get ready to read", + "Amazing lectures ", + "Gives good feedback", + "Lots of homework" + ], + "rmp_id": "1011199", + "instructor_id": "clayr", + "overall_grade_rating": 4.04, + "total_grade_count": 33, + "course_ratings": { + "HUMA6300": 3.75, + "HUAS6354": 4.21, + "CRWT3307": 4.35 + } + } + ], + "sailakshmi santhanakrishnan": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2249414", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Sailakshmi Santhanakrishnan", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 1, + "tags": ["Skip class? You won't pass.", "Lots of homework", "Lecture heavy"], + "rmp_id": "2249414", + "instructor_id": "sxs171932", + "overall_grade_rating": 4.41, + "total_grade_count": 49, + "course_ratings": { + "ITSS4360": 4.41 + } + } + ], + "todd sandler": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1119170", + "quality_rating": 3.8, + "difficulty_rating": 4.7, + "would_take_again": 100, + "original_rmp_format": "Todd Sandler", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 6, + "tags": ["Tough grader", "Skip class? You won't pass.", "Respected"], + "rmp_id": "1119170", + "instructor_id": "tms063000", + "overall_grade_rating": 4.34, + "total_grade_count": 22, + "course_ratings": { + "ECON6363": 4.11, + "ECON3369": 4.45 + } + } + ], + "patrick dowling": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1782210", + "quality_rating": 5, + "difficulty_rating": 1.5, + "would_take_again": 100, + "original_rmp_format": "Patrick Dowling", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 6, + "tags": [ + "Accessible outside class", + "Amazing lectures ", + "Would take again", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "1782210", + "instructor_id": "pdd091000", + "overall_grade_rating": 4.89, + "total_grade_count": 51, + "course_ratings": { + "ATCM3350": 4.89 + } + } + ], + "fang qiu": [ + { + "department": "Geography", + "url": "https://www.ratemyprofessors.com/professor/1966619", + "quality_rating": 1, + "difficulty_rating": 5, + "would_take_again": 0, + "original_rmp_format": "Fang Qiu", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 1, + "tags": ["Tough grader", "Skip class? You won't pass."], + "rmp_id": "1966619", + "instructor_id": "ffqiu", + "overall_grade_rating": 4.58, + "total_grade_count": 216, + "course_ratings": { + "GISC4363": 3.41, + "GISC2305": 4.21, + "GISC6363": 4.77, + "GISC6325": 4.9, + "GISC6389": 5.0, + "GISC7365": 4.51, + "GISC6384": 4.44, + "GISC7366": 4.67, + "EPPS6317": 4.92 + } + } + ], + "david lary": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1642294", + "quality_rating": 3.1, + "difficulty_rating": 1.6, + "would_take_again": 100, + "original_rmp_format": "David Lary", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 17, + "tags": [ + "Lots of homework", + "Caring", + "Get ready to read", + "EXTRA CREDIT", + "Amazing lectures " + ], + "rmp_id": "1642294", + "instructor_id": "djl101000", + "overall_grade_rating": 4.92, + "total_grade_count": 114, + "course_ratings": { + "PHYS5315": 4.93, + "PHYS5336": 4.91 + } + } + ], + "heather hayenga": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2105712", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Heather Hayenga", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 2, + "tags": [ + "Tough grader", + "Get ready to read", + "EXTRA CREDIT", + "Gives good feedback", + "Respected" + ], + "rmp_id": "2105712", + "instructor_id": "hnh130330", + "overall_grade_rating": 4.81, + "total_grade_count": 13, + "course_ratings": { + "BMEN6378": 4.81 + } + } + ], + "tahar mjigal": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2105908", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Tahar Mjigal", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 1, + "tags": ["Participation matters", "Group projects", "Graded by few things"], + "rmp_id": "2105908", + "instructor_id": "txm132730", + "overall_grade_rating": 4.74, + "total_grade_count": 64, + "course_ratings": { + "FIN4340": 4.76, + "FIN3330": 4.73 + } + } + ], + "cong liu": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1867985", + "quality_rating": 3.7, + "difficulty_rating": 3.6, + "would_take_again": 100, + "original_rmp_format": "Cong Liu", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 5, + "tags": [ + "Get ready to read", + "Beware of pop quizzes", + "Tough grader", + "Participation matters", + "EXTRA CREDIT" + ], + "rmp_id": "1867985", + "instructor_id": "cxl137330", + "overall_grade_rating": 4.84, + "total_grade_count": 23, + "course_ratings": { + "EEDG6308": 4.82, + "CS6301": 4.84 + } + } + ], + "nadine connell": [ + { + "department": "Not Specified", + "url": "https://www.ratemyprofessors.com/professor/1654820", + "quality_rating": 3.7, + "difficulty_rating": 4, + "would_take_again": 67, + "original_rmp_format": "Nadine Connell", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 18, + "tags": [ + "Get ready to read", + "Tough grader", + "Amazing lectures ", + "Gives good feedback", + "Hilarious" + ], + "rmp_id": "1654820", + "instructor_id": "nmc110030", + "overall_grade_rating": 3.99, + "total_grade_count": 90, + "course_ratings": { + "CRIM3303": 3.74, + "CRIM6301": 4.01, + "HONS3199": 4.95, + "CRIM6310": 3.54 + } + } + ], + "alp muharremoglu": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1717695", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Alp Muharremoglu", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 8, + "tags": [ + "Tough grader", + "Tests are tough", + "Get ready to read", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "1717695", + "instructor_id": "axm110431", + "overall_grade_rating": 4.78, + "total_grade_count": 79, + "course_ratings": { + "OPRE6370": 4.78 + } + } + ], + "leonidas bleris": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1718800", + "quality_rating": 4, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Leonidas Bleris", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 4, + "tags": [ + "Tough grader", + "EXTRA CREDIT", + "Tests? Not many", + "Would take again", + "Beware of pop quizzes" + ], + "rmp_id": "1718800", + "instructor_id": "lxb092000", + "overall_grade_rating": 4.4, + "total_grade_count": 325, + "course_ratings": { + "BMEN6374": 4.71, + "BMEN4310": 4.2, + "BMEN6396": 4.83, + "BMEN6382": 4.59 + } + } + ], + "carlos aiken": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/1095430", + "quality_rating": 2, + "difficulty_rating": 3.3, + "would_take_again": 100, + "original_rmp_format": "Carlos Aiken", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 7, + "tags": ["Get ready to read", "Clear grading criteria", "Would take again"], + "rmp_id": "1095430", + "instructor_id": "aiken", + "overall_grade_rating": 4.93, + "total_grade_count": 11, + "course_ratings": { + "GISC5324": 4.93 + } + } + ], + "kristen cochran": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1761104", + "quality_rating": 4.3, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Kristen Cochran", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 2, + "tags": ["Skip class? You won't pass.", "Gives good feedback"], + "rmp_id": "1761104", + "instructor_id": "knc103020", + "overall_grade_rating": 4.31, + "total_grade_count": 198, + "course_ratings": { + "ARTS1316": 4.01, + "ARTS2381": 4.31, + "ARTS3368": 4.55, + "ARTS3375": 4.13, + "ARTS4366": 4.72, + "ARTS2315": 4.52, + "ARTS3340": 3.88 + } + } + ], + "orlando auciello": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2141364", + "quality_rating": 4, + "difficulty_rating": 4, + "would_take_again": -1, + "original_rmp_format": "Orlando Auciello", + "last_updated": "2025-03-14T23:13:31.006223", + "ratings_count": 1, + "tags": ["Gives good feedback", "Inspirational", "Caring"], + "rmp_id": "2141364", + "instructor_id": "oha120030", + "overall_grade_rating": 3.6, + "total_grade_count": 90, + "course_ratings": { + "MSEN3310": 4.63, + "MECH4360": 3.4, + "MSEN3302": 3.98 + } + } + ], + "jennifer holmes": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/873697", + "quality_rating": 3.6, + "difficulty_rating": 2.7, + "would_take_again": -1, + "original_rmp_format": "Jennifer Holmes", + "last_updated": "2025-03-14T23:13:31.006223", + "ratings_count": 14, + "tags": [ + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Would take again", + "Caring" + ], + "rmp_id": "873697", + "instructor_id": "jholmes", + "overall_grade_rating": 3.71, + "total_grade_count": 58, + "course_ratings": { + "PSCI4348": 3.71 + } + } + ], + "mary urquhart": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1681127", + "quality_rating": 4.3, + "difficulty_rating": 3.5, + "would_take_again": -1, + "original_rmp_format": "Mary Urquhart", + "last_updated": "2025-03-14T23:13:31.006223", + "ratings_count": 2, + "tags": [ + "Gives good feedback", + "Skip class? You won't pass.", + "Tests? Not many", + "Caring", + "Respected" + ], + "rmp_id": "1681127", + "instructor_id": "mlk023000", + "overall_grade_rating": 4.83, + "total_grade_count": 10, + "course_ratings": { + "SMED5304": 4.83 + } + } + ], + "katy jordan": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2031931", + "quality_rating": 4, + "difficulty_rating": 3.5, + "would_take_again": -1, + "original_rmp_format": "Katy Jordan", + "last_updated": "2025-03-14T23:13:31.006223", + "ratings_count": 2, + "tags": ["Group projects", "Inspirational", "Lots of homework", "Caring", "Respected"], + "rmp_id": "2031931", + "instructor_id": "kjj073000", + "overall_grade_rating": 4.59, + "total_grade_count": 101, + "course_ratings": { + "PSY1100": 4.59 + } + } + ], + "mathukumalli vidyasagar": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1967359", + "quality_rating": 2.3, + "difficulty_rating": 3, + "would_take_again": -1, + "original_rmp_format": "Mathukumalli Vidyasagar", + "last_updated": "2025-03-14T23:13:31.006223", + "ratings_count": 4, + "tags": ["Tests? Not many", "Respected"], + "rmp_id": "1967359", + "instructor_id": "mxv091000", + "overall_grade_rating": 4.53, + "total_grade_count": 28, + "course_ratings": { + "SYSM6305": 4.47, + "MECH6323": 4.58 + } + } + ], + "yves chabal": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2103870", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": -1, + "original_rmp_format": "Yves Chabal", + "last_updated": "2025-03-14T23:13:31.006223", + "ratings_count": 1, + "tags": ["Clear grading criteria", "Gives good feedback", "Caring"], + "rmp_id": "2103870", + "instructor_id": "yjc072000", + "overall_grade_rating": 3.63, + "total_grade_count": 63, + "course_ratings": { + "MECH3360": 3.63 + } + } + ], + "xiang cai": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/2048368", + "quality_rating": 1, + "difficulty_rating": 3.5, + "would_take_again": -1, + "original_rmp_format": "Xiang Cai", + "last_updated": "2025-03-14T23:13:31.007254", + "ratings_count": 2, + "tags": ["Tough grader"], + "rmp_id": "2048368", + "instructor_id": "xxc110430", + "overall_grade_rating": 2.8, + "total_grade_count": 50, + "course_ratings": { + "EPPS2302": 2.8 + } + } + ], + "doug goodman": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2036147", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": -1, + "original_rmp_format": "Doug Goodman", + "last_updated": "2025-03-14T23:13:31.007254", + "ratings_count": 2, + "tags": [ + "Would take again", + "Participation matters", + "Amazing lectures ", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "2036147", + "instructor_id": "dxg101000", + "overall_grade_rating": 4.5, + "total_grade_count": 20, + "course_ratings": { + "PA7320": 4.11, + "PA6399": 4.76 + } + } + ], + "kim knight": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1715680", + "quality_rating": 4.4, + "difficulty_rating": 3.4, + "would_take_again": -1, + "original_rmp_format": "Kim Knight", + "last_updated": "2025-03-14T23:13:31.007254", + "ratings_count": 9, + "tags": [ + "Get ready to read", + "Participation matters", + "Gives good feedback", + "Would take again", + "Respected" + ], + "rmp_id": "1715680", + "instructor_id": "kak102020", + "overall_grade_rating": 4.64, + "total_grade_count": 64, + "course_ratings": { + "ATCM6300": 4.58, + "ATCM4326": 4.71 + } + } + ], + "michelle weiner": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1178950", + "quality_rating": 4.1, + "difficulty_rating": 1.7, + "would_take_again": -1, + "original_rmp_format": "Michelle Weiner", + "last_updated": "2025-03-14T23:13:31.007254", + "ratings_count": 6, + "tags": ["Would take again"], + "rmp_id": "1178950", + "instructor_id": "mxw051000", + "overall_grade_rating": 4.67, + "total_grade_count": 63, + "course_ratings": { + "ED4345": 4.67 + } + } + ], + "robert ackerman": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/1767713", + "quality_rating": 4.3, + "difficulty_rating": 2.9, + "would_take_again": -1, + "original_rmp_format": "Robert Ackerman", + "last_updated": "2025-03-14T23:13:31.007254", + "ratings_count": 15, + "tags": [ + "Hilarious", + "Group projects", + "Would take again", + "Tough grader", + "Participation matters" + ], + "rmp_id": "1767713", + "instructor_id": "raa110030", + "overall_grade_rating": 4.58, + "total_grade_count": 199, + "course_ratings": { + "HCS6312": 4.4, + "HCS7310": 4.82, + "HCS6327": 4.97, + "PSYC6327": 4.76, + "HCS6313": 4.67 + } + } + ], + "cristina vlas": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1995741", + "quality_rating": 4.5, + "difficulty_rating": 2, + "would_take_again": -1, + "original_rmp_format": "Cristina Vlas", + "last_updated": "2025-03-14T23:13:31.007254", + "ratings_count": 1, + "tags": [], + "rmp_id": "1995741", + "instructor_id": "cov130030", + "overall_grade_rating": 3.93, + "total_grade_count": 35, + "course_ratings": { + "BPS4305": 3.93 + } + } + ], + "zhiqiang lin": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1641317", + "quality_rating": 2.9, + "difficulty_rating": 3.3, + "would_take_again": -1, + "original_rmp_format": "Zhiqiang Lin", + "last_updated": "2025-03-14T23:13:31.007254", + "ratings_count": 26, + "tags": [ + "Tough grader", + "Lecture heavy", + "Get ready to read", + "Gives good feedback", + "Caring" + ], + "rmp_id": "1641317", + "instructor_id": "zxl111930", + "overall_grade_rating": 4.66, + "total_grade_count": 17, + "course_ratings": { + "CS6332": 4.66 + } + } + ], + "gail breen": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1076842", + "quality_rating": 2.5, + "difficulty_rating": 3.6, + "would_take_again": -1, + "original_rmp_format": "Gail Breen", + "last_updated": "2025-03-14T23:13:31.008226", + "ratings_count": 11, + "tags": ["Tests? Not many", "Lecture heavy"], + "rmp_id": "1076842", + "instructor_id": "breen", + "overall_grade_rating": 4.35, + "total_grade_count": 7, + "course_ratings": { + "BIOL6384": 4.35 + } + } + ], + "stephen lapthisophon": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/1286904", + "quality_rating": 2.4, + "difficulty_rating": 2.3, + "would_take_again": -1, + "original_rmp_format": "Stephen Lapthisophon", + "last_updated": "2025-03-14T23:13:31.008226", + "ratings_count": 4, + "tags": [], + "rmp_id": "1286904", + "instructor_id": "sxl043100", + "overall_grade_rating": 4.97, + "total_grade_count": 38, + "course_ratings": { + "ARTS3368": 4.97 + } + } + ], + "jie zheng": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/1439896", + "quality_rating": 2, + "difficulty_rating": 3.7, + "would_take_again": -1, + "original_rmp_format": "Jie Zheng", + "last_updated": "2025-03-14T23:13:31.008226", + "ratings_count": 11, + "tags": [], + "rmp_id": "1439896", + "instructor_id": "jxz087000", + "overall_grade_rating": 4.46, + "total_grade_count": 44, + "course_ratings": { + "CHEM5355": 4.46 + } + } + ], + "chuanwei zhang": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1747562", + "quality_rating": 1.2, + "difficulty_rating": 4.8, + "would_take_again": -1, + "original_rmp_format": "Chuanwei Zhang", + "last_updated": "2025-03-14T23:13:31.008226", + "ratings_count": 9, + "tags": [], + "rmp_id": "1747562", + "instructor_id": "cxz124830", + "overall_grade_rating": 4.08, + "total_grade_count": 14, + "course_ratings": { + "PHYS4340": 4.08 + } + } + ], + "shelley lane": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/921694", + "quality_rating": 3, + "difficulty_rating": 4.3, + "would_take_again": -1, + "original_rmp_format": "Shelley Lane", + "last_updated": "2025-03-14T23:13:31.009254", + "ratings_count": 11, + "tags": [], + "rmp_id": "921694", + "instructor_id": "sdl063000", + "overall_grade_rating": 4.91, + "total_grade_count": 63, + "course_ratings": { + "UNIV4174": 4.91 + } + } + ], + "jainan sankalia": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1848075", + "quality_rating": 4.8, + "difficulty_rating": 3, + "would_take_again": -1, + "original_rmp_format": "Jainan Sankalia", + "last_updated": "2025-03-14T23:13:31.009254", + "ratings_count": 2, + "tags": [], + "rmp_id": "1848075", + "instructor_id": "jss051000", + "overall_grade_rating": 3.74, + "total_grade_count": 29, + "course_ratings": { + "ATCM3371": 3.74 + } + } + ], + "murray leaf": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1279276", + "quality_rating": 2, + "difficulty_rating": 3.8, + "would_take_again": -1, + "original_rmp_format": "Murray Leaf", + "last_updated": "2025-03-14T23:13:31.009254", + "ratings_count": 4, + "tags": [], + "rmp_id": "1279276", + "instructor_id": "mjleaf", + "overall_grade_rating": 4.35, + "total_grade_count": 14, + "course_ratings": { + "PPPE6329": 4.35 + } + } + ], + "steven seida": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1768350", + "quality_rating": 3, + "difficulty_rating": 2.5, + "would_take_again": -1, + "original_rmp_format": "Steven Seida", + "last_updated": "2025-03-14T23:13:31.009254", + "ratings_count": 2, + "tags": [], + "rmp_id": "1768350", + "instructor_id": "sxs091100", + "overall_grade_rating": 4.78, + "total_grade_count": 23, + "course_ratings": { + "CS6315": 4.78 + } + } + ], + "sheila rollerson": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/1221665", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": -1, + "original_rmp_format": "Sheila Rollerson", + "last_updated": "2025-03-14T23:13:31.009254", + "ratings_count": 5, + "tags": [], + "rmp_id": "1221665", + "instructor_id": "srollers", + "overall_grade_rating": 3.91, + "total_grade_count": 23, + "course_ratings": { + "EPPS1110": 3.91 + } + } + ], + "harold clarke": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1696706", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": -1, + "original_rmp_format": "Harold Clarke", + "last_updated": "2025-03-14T23:13:31.009254", + "ratings_count": 1, + "tags": [], + "rmp_id": "1696706", + "instructor_id": "hclarke", + "overall_grade_rating": 4.6, + "total_grade_count": 33, + "course_ratings": { + "EPPS7386": 4.37, + "EPPS7318": 5.0 + } + } + ], + "kyle kondas": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/1561213", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": -1, + "original_rmp_format": "Kyle Kondas", + "last_updated": "2025-03-14T23:13:31.010254", + "ratings_count": 1, + "tags": [], + "rmp_id": "1561213", + "instructor_id": "kyle304", + "overall_grade_rating": 4.49, + "total_grade_count": 72, + "course_ratings": { + "ATCM3350": 4.49 + } + } + ], + "lei zhang": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/1486582", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": -1, + "original_rmp_format": "Lei Zhang", + "last_updated": "2025-03-14T23:13:31.010254", + "ratings_count": 1, + "tags": [], + "rmp_id": "1486582", + "instructor_id": "lxz190010", + "overall_grade_rating": 4.17, + "total_grade_count": 31, + "course_ratings": { + "CHIN1311": 4.17 + } + } + ], + "patricia hutcheson": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1393712", + "quality_rating": 5, + "difficulty_rating": 4, + "would_take_again": -1, + "original_rmp_format": "Patricia Hutcheson", + "last_updated": "2025-03-14T23:13:31.010254", + "ratings_count": 2, + "tags": [], + "rmp_id": "1393712", + "instructor_id": "plh073000", + "overall_grade_rating": 4.78, + "total_grade_count": 17, + "course_ratings": { + "PA6369": 4.78 + } + } + ], + "christopher manes": [ + { + "department": "English", + "url": "https://www.ratemyprofessors.com/professor/759492", + "quality_rating": 3.5, + "difficulty_rating": 3, + "would_take_again": -1, + "original_rmp_format": "Christopher Manes", + "last_updated": "2025-03-14T23:13:31.010254", + "ratings_count": 3, + "tags": [], + "rmp_id": "759492", + "instructor_id": "clm036000", + "overall_grade_rating": 3.38, + "total_grade_count": 19, + "course_ratings": { + "RHET1302": 3.38 + } + } + ], + "j michael farmer": [ + { + "department": "History", + "url": "https://www.ratemyprofessors.com/professor/1807071", + "quality_rating": 4, + "difficulty_rating": 3.6, + "would_take_again": 67, + "original_rmp_format": "Michael Farmer", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 13, + "tags": [ + "Tough grader", + "Get ready to read", + "Gives good feedback", + "Lecture heavy", + "Respected" + ], + "rmp_id": "1807071", + "instructor_id": "jmf073000", + "overall_grade_rating": 3.45, + "total_grade_count": 613, + "course_ratings": { + "HIST3301": 3.16, + "HIST4358": 3.25, + "HIST3314": 3.69, + "HIST3312": 3.49, + "HONS3107": 4.82, + "HIST3313": 3.32, + "HONS3199": 4.69, + "HIST3316": 3.39, + "HIST2341": 3.23 + } + } + ], + "shazia ali": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/1132280", + "quality_rating": 4.6, + "difficulty_rating": 1.7, + "would_take_again": 96, + "original_rmp_format": "Ali Shazia", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 27, + "tags": [ + "Caring", + "Gives good feedback", + "Participation matters", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "1132280", + "instructor_id": "shazia", + "overall_grade_rating": 4.21, + "total_grade_count": 513, + "course_ratings": { + "HUMA1301": 4.64, + "RHET1302": 4.63, + "BCOM1300": 4.09, + "BCOM3300": 3.93, + "BCOM4300": 4.02 + } + } + ], + "eman bahjat al habashneh": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2070249", + "quality_rating": 3.9, + "difficulty_rating": 2.9, + "would_take_again": 75, + "original_rmp_format": "Eman Al-Habashneh", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 7, + "tags": [ + "Participation matters", + "Gives good feedback", + "Caring", + "Accessible outside class", + "Tough grader" + ], + "rmp_id": "2070249", + "instructor_id": "eba130130", + "overall_grade_rating": 3.76, + "total_grade_count": 134, + "course_ratings": { + "RHET1302": 3.45, + "LIT2331": 3.79, + "FILM1303": 4.71 + } + } + ], + "lorena camacho guardado": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2190439", + "quality_rating": 4.8, + "difficulty_rating": 2.1, + "would_take_again": 100, + "original_rmp_format": "Amalia Lorena Camacho-Guardardo", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 11, + "tags": [ + "Gives good feedback", + "Participation matters", + "Caring", + "Clear grading criteria", + "Group projects" + ], + "rmp_id": "2190439", + "instructor_id": "lxc163230", + "overall_grade_rating": 4.52, + "total_grade_count": 359, + "course_ratings": { + "SPAN2311": 4.19, + "SPAN2312": 4.41, + "SPAN3365": 4.58, + "SPAN4364": 4.93, + "SPAN3330": 4.53, + "SPAN3366": 4.66, + "SPAN3311": 4.57, + "SPAN3312": 4.17, + "SPAN4301": 4.66 + } + } + ], + "ming gu": [ + { + "department": "Literature", + "url": "https://www.ratemyprofessors.com/professor/1132003", + "quality_rating": 3.1, + "difficulty_rating": 3.1, + "would_take_again": 47, + "original_rmp_format": "Ming Dong Gu", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 29, + "tags": [ + "Lecture heavy", + "Tough grader", + "Participation matters", + "Graded by few things", + "Get ready to read" + ], + "rmp_id": "1132003", + "instructor_id": "mdg073000", + "overall_grade_rating": 3.68, + "total_grade_count": 289, + "course_ratings": { + "HUMA1301": 3.28, + "LIT2321": 3.35, + "LIT2350": 4.41, + "LIT2331": 4.39, + "LIT3319": 4.13, + "ARHM3342": 3.94, + "LIT6315": 3.3 + } + } + ], + "walter dowling": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/368433", + "quality_rating": 3.2, + "difficulty_rating": 3.2, + "would_take_again": 39, + "original_rmp_format": "Walter J Dowling", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 72, + "tags": ["So many papers", "Get ready to read", "Test heavy", "Caring", "Lecture heavy"], + "rmp_id": "368433", + "instructor_id": "jdowling", + "overall_grade_rating": 3.9, + "total_grade_count": 737, + "course_ratings": { + "PSY3360": 3.85, + "PSY3393": 3.79, + "ACN6334": 4.42, + "PSY4365": 4.19 + } + } + ], + "pamela rollins": [ + { + "department": "Not Specified", + "url": "https://www.ratemyprofessors.com/professor/988964", + "quality_rating": 1.7, + "difficulty_rating": 3.8, + "would_take_again": -1, + "original_rmp_format": "Pam Rollins", + "last_updated": "2025-03-14T23:13:31.009254", + "ratings_count": 5, + "tags": [], + "rmp_id": "988964", + "instructor_id": "rollins", + "overall_grade_rating": 4.86, + "total_grade_count": 189, + "course_ratings": { + "COMD7336": 4.86, + "HDCD6365": 4.86 + } + } + ], + "jackie nelson taylor": [ + { + "department": "Behavioral Sciences", + "url": "https://www.ratemyprofessors.com/professor/1645725", + "quality_rating": 4.2, + "difficulty_rating": 2.7, + "would_take_again": 75, + "original_rmp_format": "Jackie Nelson", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 52, + "tags": [ + "Amazing lectures ", + "Caring", + "Skip class? You won't pass.", + "Lecture heavy", + "Clear grading criteria" + ], + "rmp_id": "1645725", + "instructor_id": "jan110030", + "overall_grade_rating": 3.77, + "total_grade_count": 984, + "course_ratings": { + "PSY4347": 3.72, + "CLDP4347": 3.95, + "PSY3310": 3.77, + "CLDP3310": 3.54, + "HCS7311": 4.65 + } + } + ], + "gagandeep wig": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/1849758", + "quality_rating": 4, + "difficulty_rating": 3.2, + "would_take_again": 59, + "original_rmp_format": "Gagan Wig", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 30, + "tags": [ + "Get ready to read", + "Graded by few things", + "Respected", + "Test heavy", + "EXTRA CREDIT" + ], + "rmp_id": "1849758", + "instructor_id": "gsw130130", + "overall_grade_rating": 3.4, + "total_grade_count": 605, + "course_ratings": { + "PSY3361": 3.27, + "CGS3361": 3.2, + "ACN6395": 3.76, + "HCS6395": 4.39 + } + } + ], + "miguel razo razo": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1607810", + "quality_rating": 2.7, + "difficulty_rating": 3.9, + "would_take_again": 27, + "original_rmp_format": "Miguel Razo", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 71, + "tags": [ + "Tough grader", + "Lots of homework", + "Accessible outside class", + "Get ready to read", + "Skip class? You won't pass." + ], + "rmp_id": "1607810", + "instructor_id": "mrazora", + "overall_grade_rating": 4.34, + "total_grade_count": 1612, + "course_ratings": { + "CS4485": 4.7, + "CS1325": 3.34, + "CS1337": 3.19 + } + } + ], + "mehra nouroz borazjany": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1918370", + "quality_rating": 2.8, + "difficulty_rating": 3.3, + "would_take_again": 32, + "original_rmp_format": "Mehra Borazjany", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 110, + "tags": [ + "Tough grader", + "Group projects", + "Lots of homework", + "Clear grading criteria", + "Participation matters" + ], + "rmp_id": "1918370", + "instructor_id": "mxn143230", + "overall_grade_rating": 3.94, + "total_grade_count": 1628, + "course_ratings": { + "CS6359": 4.34, + "CE2336": 3.33, + "CS2336": 3.86, + "SE4351": 3.1, + "SE4367": 3.47, + "CS3354": 4.04, + "SE3354": 4.16, + "CS3162": 4.58, + "CE3354": 3.33 + } + } + ], + "ivan sudborough": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/138313", + "quality_rating": 4.1, + "difficulty_rating": 3.9, + "would_take_again": 100, + "original_rmp_format": "Hal Sudborough", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 32, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Get ready to read", + "Would take again", + "Lecture heavy" + ], + "rmp_id": "138313", + "instructor_id": "hal", + "overall_grade_rating": 3.79, + "total_grade_count": 85, + "course_ratings": { + "CS6363": 3.77, + "CS2305": 3.89, + "CS6382": 3.86, + "CS4384": 3.65 + } + } + ], + "gil lee": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1153902", + "quality_rating": 3.4, + "difficulty_rating": 2.7, + "would_take_again": 83, + "original_rmp_format": "Gill Lee", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 23, + "tags": [ + "Hilarious", + "Participation matters", + "Tough grader", + "Skip class? You won't pass.", + "Gives good feedback" + ], + "rmp_id": "1153902", + "instructor_id": "gslee", + "overall_grade_rating": 3.47, + "total_grade_count": 550, + "course_ratings": { + "CE3111": 4.13, + "EE3111": 4.23, + "EE3301": 3.45, + "CE2301": 3.37, + "CE3311": 3.72, + "EE2301": 3.57, + "EE3311": 3.33, + "EE3110": 3.55, + "CE3310": 3.75, + "EE3310": 2.8, + "CE3301": 3.38 + } + } + ], + "kenneth": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2101242", + "quality_rating": 4.2, + "difficulty_rating": 4, + "would_take_again": 75, + "original_rmp_format": "Kenneth O", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 10, + "tags": [ + "Inspirational", + "Lots of homework", + "Skip class? You won't pass.", + "Respected", + "Tough grader" + ], + "rmp_id": "2101242", + "instructor_id": "kxo091000", + "overall_grade_rating": 3.46, + "total_grade_count": 297, + "course_ratings": { + "CE3311": 2.83, + "EE3311": 3.4, + "EERF6330": 3.99 + } + } + ], + "giacomo valerio iungo": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2138217", + "quality_rating": 2, + "difficulty_rating": 4.5, + "would_take_again": 26, + "original_rmp_format": "Giacomo Iungo", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 24, + "tags": [ + "Tough grader", + "Beware of pop quizzes", + "Graded by few things", + "Skip class? You won't pass.", + "Lots of homework" + ], + "rmp_id": "2138217", + "instructor_id": "ixg140830", + "overall_grade_rating": 3.87, + "total_grade_count": 227, + "course_ratings": { + "MECH3315": 4.05, + "MECH4330": 3.64 + } + } + ], + "mohammed ali": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2567326", + "quality_rating": 4.3, + "difficulty_rating": 2.6, + "would_take_again": 89, + "original_rmp_format": "Ali Mohammed", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 35, + "tags": ["Amazing lectures ", "Caring", "Test heavy", "Participation matters", "Respected"], + "rmp_id": "2567326", + "instructor_id": "mohammed", + "overall_grade_rating": 3.98, + "total_grade_count": 1760, + "course_ratings": { + "ENGR2300": 4.02, + "ENGR3341": 3.98, + "ENGR3300": 3.9 + } + } + ], + "georgios makris": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1875357", + "quality_rating": 3.1, + "difficulty_rating": 3.5, + "would_take_again": 60, + "original_rmp_format": "Yiorgos Makris", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 8, + "tags": [ + "Skip class? You won't pass.", + "Lecture heavy", + "Tough grader", + "Group projects", + "Amazing lectures " + ], + "rmp_id": "1875357", + "instructor_id": "gxm112130", + "overall_grade_rating": 4.09, + "total_grade_count": 221, + "course_ratings": { + "EEDG6304": 4.53, + "CE6304": 4.17, + "CE4304": 4.14, + "EE4304": 3.89 + } + } + ], + "wei wu": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1530329", + "quality_rating": 3.2, + "difficulty_rating": 2.4, + "would_take_again": 33, + "original_rmp_format": "Weili Wu", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 32, + "tags": ["Group projects", "Test heavy", "Lots of homework", "Tough grader", "Respected"], + "rmp_id": "1530329", + "instructor_id": "wxw020100", + "overall_grade_rating": 4.41, + "total_grade_count": 679, + "course_ratings": { + "CS7301": 5.0, + "CS6360": 4.52, + "CS4347": 4.23, + "SE4347": 3.33 + } + } + ], + "hyunjoo nam": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2177739", + "quality_rating": 4.7, + "difficulty_rating": 3.7, + "would_take_again": 100, + "original_rmp_format": "Hyun-Joo Nam", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 3, + "tags": ["EXTRA CREDIT", "Get ready to read", "Amazing lectures ", "Caring", "Respected"], + "rmp_id": "2177739", + "instructor_id": "hjn091000", + "overall_grade_rating": 4.5, + "total_grade_count": 44, + "course_ratings": { + "BMEN6373": 4.41, + "BMEN6375": 4.66 + } + } + ], + "danieli rodrigues": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1829153", + "quality_rating": 3.7, + "difficulty_rating": 3.7, + "would_take_again": 50, + "original_rmp_format": "Danieli B.C. Rodrigues", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 3, + "tags": [ + "Skip class? You won't pass.", + "Group projects", + "Participation matters", + "Would take again", + "Gives good feedback" + ], + "rmp_id": "1829153", + "instructor_id": "dxb127430", + "overall_grade_rating": 4.57, + "total_grade_count": 333, + "course_ratings": { + "BMEN4360": 4.4, + "BMEN6342": 4.91 + } + } + ], + "alixandre minden": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/1972096", + "quality_rating": 1.9, + "difficulty_rating": 2.8, + "would_take_again": 14, + "original_rmp_format": "Minden Alixandre", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 17, + "tags": [ + "Beware of pop quizzes", + "Lots of homework", + "Participation matters", + "Group projects", + "So many papers" + ], + "rmp_id": "1972096", + "instructor_id": "arm130430", + "overall_grade_rating": 4.41, + "total_grade_count": 125, + "course_ratings": { + "MECH6337": 4.12, + "SYSM6301": 4.36, + "SYSM6304": 4.61, + "SYSM6326": 4.65, + "OPRE6335": 4.45, + "SYSM6325": 4.34 + } + } + ], + "i ling yen": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1267349", + "quality_rating": 1.8, + "difficulty_rating": 4.7, + "would_take_again": 12, + "original_rmp_format": "Yen I-Ling", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 39, + "tags": [ + "Test heavy", + "Tough grader", + "Lots of homework", + "Lecture heavy", + "Graded by few things" + ], + "rmp_id": "1267349", + "instructor_id": "ilyen", + "overall_grade_rating": 3.43, + "total_grade_count": 279, + "course_ratings": { + "CS6343": 4.11, + "CS4348": 1.98, + "SE4348": 2.79, + "CS7301": 5.0, + "CS5348": 4.06 + } + } + ], + "carlos busso recabarren": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/1570508", + "quality_rating": 2.7, + "difficulty_rating": 3.4, + "would_take_again": 26, + "original_rmp_format": "Carlos Busso", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 39, + "tags": [ + "Tough grader", + "Lots of homework", + "Get ready to read", + "Skip class? You won't pass.", + "Tests are tough" + ], + "rmp_id": "1570508", + "instructor_id": "cxb093000", + "overall_grade_rating": 3.28, + "total_grade_count": 282, + "course_ratings": { + "ENGR2300": 3.02, + "EE3302": 3.41, + "EESC6368": 4.75, + "EESC6360": 4.17 + } + } + ], + "soudeh ardestani khoubrouy": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2036762", + "quality_rating": 3.4, + "difficulty_rating": 3.7, + "would_take_again": 68, + "original_rmp_format": "Soudeh Khoubrouy", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 28, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Lots of homework", + "Caring", + "Lecture heavy" + ], + "rmp_id": "2036762", + "instructor_id": "sxa074200", + "overall_grade_rating": 3.78, + "total_grade_count": 858, + "course_ratings": { + "BMEN4110": 3.84, + "EE3302": 3.54, + "CE3302": 3.46, + "BMEN1100": 4.42, + "BMEN1208": 3.62, + "BMEN3402": 3.63, + "BMEN1300": 4.07, + "BMEN3302": 3.67, + "BMEN4310": 4.02 + } + } + ], + "mithun balakrishna": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1938990", + "quality_rating": 4.3, + "difficulty_rating": 3, + "would_take_again": 67, + "original_rmp_format": "Mithun Balakrishnan", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 16, + "tags": [ + "Respected", + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback", + "Group projects" + ], + "rmp_id": "1938990", + "instructor_id": "mxb026000", + "overall_grade_rating": 4.44, + "total_grade_count": 268, + "course_ratings": { + "CS6314": 4.47, + "CS6320": 4.43 + } + } + ], + "ding du": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/918305", + "quality_rating": 2.1, + "difficulty_rating": 2.9, + "would_take_again": 32, + "original_rmp_format": "Ding-Zhu Du", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 27, + "tags": [ + "Get ready to read", + "Clear grading criteria", + "Lots of homework", + "Tough grader", + "Beware of pop quizzes" + ], + "rmp_id": "918305", + "instructor_id": "dxd056000", + "overall_grade_rating": 4.57, + "total_grade_count": 546, + "course_ratings": { + "CS6382": 4.68, + "CS6301": 5.0, + "CS6363": 4.46, + "CS4349": 4.5 + } + } + ], + "nancy van": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/114810", + "quality_rating": 3.1, + "difficulty_rating": 3.5, + "would_take_again": 0, + "original_rmp_format": "Nancy Van Ness", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 17, + "tags": [ + "Lots of homework", + "Tough grader", + "Skip class? You won't pass.", + "Group projects", + "Tests? Not many" + ], + "rmp_id": "114810", + "instructor_id": "ncv013000", + "overall_grade_rating": 4.33, + "total_grade_count": 34, + "course_ratings": { + "ED4353": 4.21, + "AMS4300": 4.49 + } + } + ], + "jill duquaine watson": [ + { + "department": "Social Science", + "url": "https://www.ratemyprofessors.com/professor/1443211", + "quality_rating": 3.2, + "difficulty_rating": 2.9, + "would_take_again": 39, + "original_rmp_format": "Jillian Duquaine-Watson", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 47, + "tags": [ + "Tough grader", + "Participation matters", + "Skip class? You won't pass.", + "Get ready to read", + "Inspirational" + ], + "rmp_id": "1443211", + "instructor_id": "jmw087000", + "overall_grade_rating": 3.96, + "total_grade_count": 469, + "course_ratings": { + "HLTH3310": 3.96, + "GST4325": 3.93, + "AMS4324": 4.25 + } + } + ], + "huibing zhang": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2080105", + "quality_rating": 4.6, + "difficulty_rating": 2.9, + "would_take_again": 67, + "original_rmp_format": "Huibing Harold Zhang", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 7, + "tags": [ + "Gives good feedback", + "Tough grader", + "Group projects", + "Inspirational", + "Skip class? You won't pass." + ], + "rmp_id": "2080105", + "instructor_id": "hxz054000", + "overall_grade_rating": 4.42, + "total_grade_count": 296, + "course_ratings": { + "FIN6364": 4.23, + "FIN6353": 4.52, + "FIN6310": 4.4, + "FIN7330": 4.74 + } + } + ], + "naim bugra ozel": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2188694", + "quality_rating": 3.7, + "difficulty_rating": 3.6, + "would_take_again": 62, + "original_rmp_format": "Naim Ozel", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 21, + "tags": [ + "Amazing lectures ", + "Lecture heavy", + "Test heavy", + "Gives good feedback", + "Get ready to read" + ], + "rmp_id": "2188694", + "instructor_id": "nbo150030", + "overall_grade_rating": 3.82, + "total_grade_count": 654, + "course_ratings": { + "ACCT6305": 4.34, + "ACCT2301": 3.71 + } + } + ], + "ramachandran natarajan": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1666327", + "quality_rating": 3, + "difficulty_rating": 4, + "would_take_again": 47, + "original_rmp_format": "Ramachandra Natarajan", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 20, + "tags": ["Lecture heavy", "Caring", "Get ready to read", "Test heavy", "Tough grader"], + "rmp_id": "1666327", + "instructor_id": "nataraj", + "overall_grade_rating": 3.82, + "total_grade_count": 505, + "course_ratings": { + "ACCT3341": 3.75, + "ACCT6331": 4.27, + "ACCT2302": 3.41 + } + } + ], + "jihyun eun": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1126246", + "quality_rating": 3.1, + "difficulty_rating": 3.1, + "would_take_again": 56, + "original_rmp_format": "Seung-Hyun Lee", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 16, + "tags": [ + "Group projects", + "Tough grader", + "Participation matters", + "Amazing lectures ", + "Hilarious" + ], + "rmp_id": "1126246", + "instructor_id": "jxe140230", + "overall_grade_rating": 3.96, + "total_grade_count": 34, + "course_ratings": { + "BPS4305": 3.96 + } + } + ], + "anindita roy bardhan": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/1967590", + "quality_rating": 2.6, + "difficulty_rating": 4.1, + "would_take_again": 44, + "original_rmp_format": "Anindita Bardhan", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 12, + "tags": [ + "Tough grader", + "Group projects", + "Participation matters", + "Skip class? You won't pass.", + "Gives good feedback" + ], + "rmp_id": "1967590", + "instructor_id": "axb149330", + "overall_grade_rating": 3.54, + "total_grade_count": 243, + "course_ratings": { + "HMGT3311": 3.38, + "ACCT6373": 3.67 + } + } + ], + "rita egeland": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2111304", + "quality_rating": 4.9, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "Rita Bargerhuff Egeland", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 34, + "tags": [ + "Group projects", + "Gives good feedback", + "Caring", + "Amazing lectures ", + "Accessible outside class" + ], + "rmp_id": "2111304", + "instructor_id": "rxb154430", + "overall_grade_rating": 4.73, + "total_grade_count": 874, + "course_ratings": { + "MKT3300": 4.72, + "MKT4370": 4.53, + "MKT4395": 4.8 + } + } + ], + "ching chung kuo": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2153143", + "quality_rating": 2.9, + "difficulty_rating": 3.5, + "would_take_again": 53, + "original_rmp_format": "Ching Kuo", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 15, + "tags": [ + "Tough grader", + "Lots of homework", + "Skip class? You won't pass.", + "Respected", + "Participation matters" + ], + "rmp_id": "2153143", + "instructor_id": "cxk162830", + "overall_grade_rating": 3.83, + "total_grade_count": 430, + "course_ratings": { + "OPRE3320": 3.56, + "BUAN6398": 4.0, + "OPRE4340": 3.56, + "OPRE6398": 3.91 + } + } + ], + "mohammad naseri taheri": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2043340", + "quality_rating": 4.5, + "difficulty_rating": 3.6, + "would_take_again": 88, + "original_rmp_format": "Mohammad Naseri", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 41, + "tags": [ + "Accessible outside class", + "Skip class? You won't pass.", + "Hilarious", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2043340", + "instructor_id": "mxn121930", + "overall_grade_rating": 3.92, + "total_grade_count": 647, + "course_ratings": { + "OPRE3360": 3.96, + "OPRE4357": 3.79, + "OPRE3333": 3.59 + } + } + ], + "stephanie swaim": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2064802", + "quality_rating": 3.8, + "difficulty_rating": 2.9, + "would_take_again": 58, + "original_rmp_format": "Stephanie Poindexter Swaim", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 18, + "tags": [ + "Lots of homework", + "Clear grading criteria", + "Lecture heavy", + "Get ready to read", + "Skip class? You won't pass." + ], + "rmp_id": "2064802", + "instructor_id": "srp065000", + "overall_grade_rating": 2.9, + "total_grade_count": 148, + "course_ratings": { + "ACCT3341": 3.23, + "ACCT2301": 2.45, + "ACCT6301": 3.27 + } + } + ], + "sharif shekarchizadeh esfahani": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2282254", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Sharif Esfahani", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 3, + "tags": [ + "EXTRA CREDIT", + "Tests are tough", + "Amazing lectures ", + "Clear grading criteria", + "Inspirational" + ], + "rmp_id": "2282254", + "instructor_id": "sxs110431", + "overall_grade_rating": 4.35, + "total_grade_count": 73, + "course_ratings": { + "ACCT2301": 4.35 + } + } + ], + "dong shin kim": [ + { + "department": "International Business", + "url": "https://www.ratemyprofessors.com/professor/2469054", + "quality_rating": 4.5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Dong Kim", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 4, + "tags": [ + "Gives good feedback", + "Caring", + "Accessible outside class", + "EXTRA CREDIT", + "Group projects" + ], + "rmp_id": "2469054", + "instructor_id": "dxk152130", + "overall_grade_rating": 4.26, + "total_grade_count": 201, + "course_ratings": { + "BPS4305": 4.26 + } + } + ], + "britt berrett": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/1970896", + "quality_rating": 3.7, + "difficulty_rating": 3.5, + "would_take_again": 47, + "original_rmp_format": "Britt Berret", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 32, + "tags": [ + "Participation matters", + "Inspirational", + "Amazing lectures ", + "Respected", + "Tough grader" + ], + "rmp_id": "1970896", + "instructor_id": "brb051000", + "overall_grade_rating": 4.22, + "total_grade_count": 545, + "course_ratings": { + "HMGT3301": 4.29, + "HMGT3320": 3.62, + "HMGT4395": 3.62, + "HMGT6340": 4.95 + } + } + ], + "christopher hes": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2162000", + "quality_rating": 3.6, + "difficulty_rating": 3.7, + "would_take_again": 57, + "original_rmp_format": "Christopher Hess", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 14, + "tags": [ + "Get ready to read", + "Test heavy", + "EXTRA CREDIT", + "Clear grading criteria", + "Skip class? You won't pass." + ], + "rmp_id": "2162000", + "instructor_id": "cah041000", + "overall_grade_rating": 3.54, + "total_grade_count": 733, + "course_ratings": { + "ACCT2302": 3.1, + "ACCT4334": 3.52, + "ACCT6373": 4.17, + "ACCT6392": 4.11 + } + } + ], + "ronald blair": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/772983", + "quality_rating": 2.4, + "difficulty_rating": 4.6, + "would_take_again": 100, + "original_rmp_format": "Ron Blair", + "last_updated": "2025-03-14T23:13:31.003566", + "ratings_count": 7, + "tags": ["Get ready to read", "Clear grading criteria", "Tests? Not many"], + "rmp_id": "772983", + "instructor_id": "rblair", + "overall_grade_rating": 4.22, + "total_grade_count": 34, + "course_ratings": { + "ACCT6335": 4.22 + } + } + ], + "jeff manzi": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/2056825", + "quality_rating": 3.7, + "difficulty_rating": 3.5, + "would_take_again": 70, + "original_rmp_format": "Jeffrey Manzi", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 44, + "tags": [ + "Test heavy", + "Accessible outside class", + "Clear grading criteria", + "Caring", + "Get ready to read" + ], + "rmp_id": "2056825", + "instructor_id": "jxm158130", + "overall_grade_rating": 3.87, + "total_grade_count": 946, + "course_ratings": { + "FIN6314": 4.26, + "FIN4390": 4.78, + "FIN3320": 3.69, + "FIN3330": 3.89 + } + } + ], + "wen lin": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1528589", + "quality_rating": 3.1, + "difficulty_rating": 3.5, + "would_take_again": 65, + "original_rmp_format": "Wen Ju Lin", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 22, + "tags": [ + "Tough grader", + "Clear grading criteria", + "Test heavy", + "Participation matters", + "Gives good feedback" + ], + "rmp_id": "1528589", + "instructor_id": "wenju", + "overall_grade_rating": 3.95, + "total_grade_count": 1438, + "course_ratings": { + "BIOL2281": 3.95 + } + } + ], + "tae hoon kim": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2599211", + "quality_rating": 3.5, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Tae Kim", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 2, + "tags": [ + "Get ready to read", + "Group projects", + "Amazing lectures ", + "Inspirational", + "So many papers" + ], + "rmp_id": "2599211", + "instructor_id": "txk142630", + "overall_grade_rating": 4.6, + "total_grade_count": 401, + "course_ratings": { + "BIOL6252": 5.0, + "BIOL5420": 4.44, + "BIOL6315": 4.93, + "BIOL3315": 4.58, + "BIOL5381": 4.58 + } + } + ], + "manjula foley": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1500690", + "quality_rating": 4.1, + "difficulty_rating": 2.8, + "would_take_again": 72, + "original_rmp_format": "Manjula Samanmalee Foley", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 118, + "tags": [ + "Amazing lectures ", + "Lots of homework", + "Skip class? You won't pass.", + "Caring", + "Clear grading criteria" + ], + "rmp_id": "1500690", + "instructor_id": "mxf091000", + "overall_grade_rating": 3.24, + "total_grade_count": 1425, + "course_ratings": { + "MATH2419": 3.46, + "MATH2417": 3.38, + "MATH1326": 3.4, + "STAT1342": 3.55, + "MATH1325": 3.39, + "MATH2413": 2.05 + } + } + ], + "fabiano da silveira rodrigues": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1807861", + "quality_rating": 3.4, + "difficulty_rating": 3.2, + "would_take_again": 70, + "original_rmp_format": "Fabiano Rodrigues", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 44, + "tags": ["Clear grading criteria", "Hilarious", "Caring", "Amazing lectures ", "Test heavy"], + "rmp_id": "1807861", + "instructor_id": "fxd121030", + "overall_grade_rating": 3.21, + "total_grade_count": 711, + "course_ratings": { + "PHYS3330": 3.36, + "PHYS2326": 3.2 + } + } + ], + "phillip anderson": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1076189", + "quality_rating": 3, + "difficulty_rating": 3.3, + "would_take_again": 0, + "original_rmp_format": "Philip Anderson", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 9, + "tags": ["Lots of homework"], + "rmp_id": "1076189", + "instructor_id": "pca015000", + "overall_grade_rating": 3.34, + "total_grade_count": 148, + "course_ratings": { + "PHYS3380": 3.17, + "PHYS5320": 3.75 + } + } + ], + "katherine donaldson": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1988309", + "quality_rating": 3.3, + "difficulty_rating": 2.8, + "would_take_again": 0, + "original_rmp_format": "Katie Donaldson", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 4, + "tags": ["Participation matters", "Group projects", "So many papers", "Tough grader"], + "rmp_id": "1988309", + "instructor_id": "ked013100", + "overall_grade_rating": 4.36, + "total_grade_count": 109, + "course_ratings": { + "NATS1143": 4.21, + "NATS4341": 4.59 + } + } + ], + "wen yu": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/1595829", + "quality_rating": 4.6, + "difficulty_rating": 2.9, + "would_take_again": 87, + "original_rmp_format": "Wen-Ho Yu", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 25, + "tags": ["Caring", "Test heavy", "EXTRA CREDIT", "Amazing lectures ", "Respected"], + "rmp_id": "1595829", + "instructor_id": "why061000", + "overall_grade_rating": 4.16, + "total_grade_count": 668, + "course_ratings": { + "BIOL3456": 4.16 + } + } + ], + "luis felipe pereira": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2189811", + "quality_rating": 3, + "difficulty_rating": 4, + "would_take_again": 57, + "original_rmp_format": "Luis Pereira", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 23, + "tags": [ + "Tough grader", + "Skip class? You won't pass.", + "Amazing lectures ", + "Respected", + "Lecture heavy" + ], + "rmp_id": "2189811", + "instructor_id": "lfp140030", + "overall_grade_rating": 3.13, + "total_grade_count": 541, + "course_ratings": { + "MATH2418": 3.0, + "MATH6342": 4.17, + "MATH7313": 4.63 + } + } + ], + "sy han chiou": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2311084", + "quality_rating": 3.8, + "difficulty_rating": 2.8, + "would_take_again": 67, + "original_rmp_format": "Sy Han Steven Chiou", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 6, + "tags": [ + "Caring", + "EXTRA CREDIT", + "Clear grading criteria", + "Participation matters", + "Gives good feedback" + ], + "rmp_id": "2311084", + "instructor_id": "sxc172931", + "overall_grade_rating": 4.09, + "total_grade_count": 316, + "course_ratings": { + "STAT2332": 4.02, + "STAT6341": 4.09, + "STAT5353": 4.23, + "STAT4354": 4.12 + } + } + ], + "seunghyun lee": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/1126246", + "quality_rating": 3.1, + "difficulty_rating": 3.1, + "would_take_again": 56, + "original_rmp_format": "Seung-Hyun Lee", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 16, + "tags": [ + "Group projects", + "Tough grader", + "Participation matters", + "Amazing lectures ", + "Hilarious" + ], + "rmp_id": "1126246", + "instructor_id": "sxl029100", + "overall_grade_rating": 4.26, + "total_grade_count": 413, + "course_ratings": { + "IMS6310": 4.34, + "IMS7301": 4.07, + "IMS4373": 4.4, + "IMS4320": 4.15, + "MKT4320": 4.11 + } + }, + { + "instructor_id": "sxl029100", + "overall_grade_rating": 4.26, + "total_grade_count": 413, + "course_ratings": { + "IMS6310": 4.34, + "IMS7301": 4.07, + "IMS4373": 4.4, + "IMS4320": 4.15, + "MKT4320": 4.11 + } + } + ], + "omobolanle fenny": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/2252076", + "quality_rating": 1.2, + "difficulty_rating": 2.8, + "would_take_again": 0, + "original_rmp_format": "Fenny Omobolanle", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 4, + "tags": ["Graded by few things", "Tough grader", "Tests are tough"], + "rmp_id": "2252076", + "instructor_id": "oae140130", + "overall_grade_rating": 4.29, + "total_grade_count": 60, + "course_ratings": { + "CRIM3324": 4.29 + } + } + ], + "majid minary jolandan": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2152011", + "quality_rating": 4.4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Majid Minary", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 9, + "tags": [ + "Gives good feedback", + "Skip class? You won't pass.", + "Amazing lectures ", + "Clear grading criteria", + "Lecture heavy" + ], + "rmp_id": "2152011", + "instructor_id": "mxm124631", + "overall_grade_rating": 3.89, + "total_grade_count": 379, + "course_ratings": { + "MECH2320": 3.77, + "MECH3360": 3.96, + "MECH6336": 4.89 + } + } + ], + "rodrigo bernal montoya": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2246507", + "quality_rating": 4.6, + "difficulty_rating": 4.1, + "would_take_again": 92, + "original_rmp_format": "Rodrigo Bernal", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 12, + "tags": [ + "Lots of homework", + "Group projects", + "Gives good feedback", + "Respected", + "Amazing lectures " + ], + "rmp_id": "2246507", + "instructor_id": "rab160530", + "overall_grade_rating": 4.13, + "total_grade_count": 429, + "course_ratings": { + "MECH6354": 4.31, + "MECH3351": 4.08 + } + } + ], + "maribeth schlobohm": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/1999730", + "quality_rating": 3.8, + "difficulty_rating": 3, + "would_take_again": 69, + "original_rmp_format": "Maribeth (Betsy) Schlobohm", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 41, + "tags": [ + "Gives good feedback", + "Group projects", + "Tough grader", + "Clear grading criteria", + "EXTRA CREDIT" + ], + "rmp_id": "1999730", + "instructor_id": "mls077000", + "overall_grade_rating": 4.31, + "total_grade_count": 625, + "course_ratings": { + "COMM3342": 4.1, + "ECS3390": 4.39, + "VPAS4310": 3.9, + "ECS2390": 4.54, + "COMM4340": 4.7, + "COMM3340": 4.29, + "COMM4305": 4.18 + } + } + ], + "trang hoang": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2720674", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Thanh Hoang", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 3, + "tags": [ + "Gives good feedback", + "Clear grading criteria", + "Get ready to read", + "Participation matters", + "Inspirational" + ], + "rmp_id": "2720674", + "instructor_id": "tth130030", + "overall_grade_rating": 4.34, + "total_grade_count": 47, + "course_ratings": { + "PA3378": 4.41, + "PA3333": 4.23 + } + }, + { + "instructor_id": "tth130030", + "overall_grade_rating": 4.34, + "total_grade_count": 47, + "course_ratings": { + "PA3378": 4.41, + "PA3333": 4.23 + } + } + ], + "kenneth smith": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1796780", + "quality_rating": 1.8, + "difficulty_rating": 4, + "would_take_again": 25, + "original_rmp_format": "Ken Smith", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 6, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "Get ready to read", + "EXTRA CREDIT", + "Beware of pop quizzes" + ], + "rmp_id": "1796780", + "instructor_id": "kls110030", + "overall_grade_rating": 4.15, + "total_grade_count": 65, + "course_ratings": { + "FIN6301": 4.3, + "FIN3350": 4.05 + } + } + ], + "harold fitzgerald": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2302784", + "quality_rating": 4.4, + "difficulty_rating": 2.8, + "would_take_again": 78, + "original_rmp_format": "Hal Fitzgerald", + "last_updated": "2025-03-14T23:13:30.160396", + "ratings_count": 9, + "tags": ["Respected", "Caring", "Amazing lectures ", "Inspirational", "Lots of homework"], + "rmp_id": "2302784", + "instructor_id": "hxf170830", + "overall_grade_rating": 3.68, + "total_grade_count": 504, + "course_ratings": { + "ATCM2345": 3.66, + "ATCM3372": 3.52, + "ATCM4319": 5.0 + } + } + ], + "kristin drogos": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2343518", + "quality_rating": 2.4, + "difficulty_rating": 4.2, + "would_take_again": 40, + "original_rmp_format": "Kristen Drogos", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 5, + "tags": [ + "Tough grader", + "Get ready to read", + "Skip class? You won't pass.", + "Group projects", + "Participation matters" + ], + "rmp_id": "2343518", + "instructor_id": "kld140230", + "overall_grade_rating": 3.98, + "total_grade_count": 35, + "course_ratings": { + "ATCM3385": 3.81, + "ATCM6391": 5.0 + } + } + ], + "kenneth starzer": [ + { + "department": "Arts Technology", + "url": "https://www.ratemyprofessors.com/professor/2020945", + "quality_rating": 4.7, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Ken Starzer", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 3, + "tags": [ + "Hilarious", + "Amazing lectures ", + "Clear grading criteria", + "Inspirational", + "Lots of homework" + ], + "rmp_id": "2020945", + "instructor_id": "kws042000", + "overall_grade_rating": 3.65, + "total_grade_count": 274, + "course_ratings": { + "ATCM3335": 3.84, + "ATCM2335": 3.5, + "ATCM3337": 3.94 + } + } + ], + "hong an wu": [ + { + "department": "Arts amp Technology", + "url": "https://www.ratemyprofessors.com/professor/2311465", + "quality_rating": 5, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Hong Wu", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 3, + "tags": [ + "Get ready to read", + "Gives good feedback", + "Inspirational", + "Participation matters", + "Caring" + ], + "rmp_id": "2311465", + "instructor_id": "hxw173930", + "overall_grade_rating": 4.53, + "total_grade_count": 278, + "course_ratings": { + "ATCM3366": 4.39, + "ATCM2322": 4.58, + "ATCM6336": 4.88, + "ATCM6375": 4.84, + "ANGM3366": 4.51, + "ATCM6376": 4.94 + } + } + ], + "agustin palao mendizabal": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2337098", + "quality_rating": 4, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Agustin Mendizabal", + "last_updated": "2025-03-14T23:13:31.002568", + "ratings_count": 1, + "tags": ["EXTRA CREDIT", "Group projects", "Lecture heavy"], + "rmp_id": "2337098", + "instructor_id": "axp121731", + "overall_grade_rating": 4.24, + "total_grade_count": 64, + "course_ratings": { + "IPEC3349": 4.01, + "EPPS6313": 4.27, + "PSCI4396": 4.1, + "PPPE6392": 4.9 + } + } + ], + "juan llamas rodriguez": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2373556", + "quality_rating": 5, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Juan Rodriguez", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 3, + "tags": ["Get ready to read", "Caring", "Amazing lectures ", "Gives good feedback"], + "rmp_id": "2373556", + "instructor_id": "jal171330", + "overall_grade_rating": 3.77, + "total_grade_count": 196, + "course_ratings": { + "ATCM3395": 3.48, + "ATCM3321": 3.66, + "ATCM3325": 3.65, + "ATCM4334": 3.47, + "ATCM3320": 4.57, + "ATCM6384": 4.88 + } + } + ], + "zachary stallbohm": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2397500", + "quality_rating": 4.2, + "difficulty_rating": 2.3, + "would_take_again": 86, + "original_rmp_format": "Zach Stallbohm", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 22, + "tags": [ + "Accessible outside class", + "Gives good feedback", + "Caring", + "Amazing lectures ", + "Clear grading criteria" + ], + "rmp_id": "2397500", + "instructor_id": "zxs110030", + "overall_grade_rating": 4.03, + "total_grade_count": 381, + "course_ratings": { + "CS4384": 4.08, + "CS2336": 3.7 + } + } + ], + "venu madhav tatiparti": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2610311", + "quality_rating": 5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Venu Tatiparti", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 2, + "tags": ["Caring", "Accessible outside class", "Respected", "Test heavy"], + "rmp_id": "2610311", + "instructor_id": "vxt161930", + "overall_grade_rating": 3.66, + "total_grade_count": 50, + "course_ratings": { + "ACCT2301": 3.66 + } + } + ], + "ali asgar alibhai": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2588823", + "quality_rating": 4.4, + "difficulty_rating": 2.3, + "would_take_again": 84, + "original_rmp_format": "Ali Alibhai", + "last_updated": "2025-03-14T23:13:28.905647", + "ratings_count": 43, + "tags": [ + "EXTRA CREDIT", + "Caring", + "Amazing lectures ", + "Get ready to read", + "Gives good feedback" + ], + "rmp_id": "2588823", + "instructor_id": "aha180002", + "overall_grade_rating": 4.13, + "total_grade_count": 676, + "course_ratings": { + "AHST1304": 4.47, + "AHST3320": 4.06, + "AHST2331": 3.58, + "AHST1303": 4.03, + "AHST3313": 4.39 + } + } + ], + "catalina alzate mora": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2639437", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Catalina Alzate", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 1, + "tags": ["Participation matters", "Caring", "Accessible outside class"], + "rmp_id": "2639437", + "instructor_id": "cxa170830", + "overall_grade_rating": 4.37, + "total_grade_count": 54, + "course_ratings": { + "ATCM2302": 4.37 + } + } + ], + "norman cox": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2698475", + "quality_rating": 4.9, + "difficulty_rating": 1.9, + "would_take_again": 100, + "original_rmp_format": "Norm Cox", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 16, + "tags": ["Amazing lectures ", "Inspirational", "Caring", "Gives good feedback", "Hilarious"], + "rmp_id": "2698475", + "instructor_id": "nlc200001", + "overall_grade_rating": 4.42, + "total_grade_count": 876, + "course_ratings": { + "ATCM3340": 4.42, + "ATCM2360": 4.43 + } + } + ], + "b murthi": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/1922722", + "quality_rating": 4.2, + "difficulty_rating": 4.3, + "would_take_again": 80, + "original_rmp_format": "B.P. Murthi", + "last_updated": "2025-03-14T23:13:28.910526", + "ratings_count": 38, + "tags": [ + "Amazing lectures ", + "Respected", + "Lots of homework", + "Get ready to read", + "Group projects" + ], + "rmp_id": "1922722", + "instructor_id": "murthi", + "overall_grade_rating": 4.37, + "total_grade_count": 578, + "course_ratings": { + "BUAN6337": 4.37, + "MKT6309": 4.43, + "MKT6337": 4.38, + "MKT6345": 4.4 + } + } + ], + "amir taghavi nasrabadi": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2517524", + "quality_rating": 3.3, + "difficulty_rating": 1.7, + "would_take_again": 67, + "original_rmp_format": "Amir Taghavi", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 3, + "tags": [ + "Skip class? You won't pass.", + "Hilarious", + "Beware of pop quizzes", + "Caring", + "Respected" + ], + "rmp_id": "2517524", + "instructor_id": "axt128930", + "overall_grade_rating": 3.8, + "total_grade_count": 182, + "course_ratings": { + "CHEM1111": 3.38, + "CHEM1112": 4.67 + } + } + ], + "john hoffmann": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/1290080", + "quality_rating": 3.6, + "difficulty_rating": 3.5, + "would_take_again": 100, + "original_rmp_format": "John Hoffman", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 10, + "tags": [ + "Tough grader", + "Tests? Not many", + "Respected", + "Inspirational", + "Beware of pop quizzes" + ], + "rmp_id": "1290080", + "instructor_id": "jxh200016", + "overall_grade_rating": 3.82, + "total_grade_count": 36, + "course_ratings": { + "COMM1311": 3.82 + } + } + ], + "david sims": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2529041", + "quality_rating": 2.3, + "difficulty_rating": 4.3, + "would_take_again": 17, + "original_rmp_format": "Dave Sims", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 18, + "tags": [ + "Tough grader", + "Get ready to read", + "Lots of homework", + "Beware of pop quizzes", + "Lecture heavy" + ], + "rmp_id": "2529041", + "instructor_id": "dxs190044", + "overall_grade_rating": 3.7, + "total_grade_count": 195, + "course_ratings": { + "CS2336": 3.7 + } + } + ], + "bhadrachalam chitturi": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2516353", + "quality_rating": 3.1, + "difficulty_rating": 3.5, + "would_take_again": 51, + "original_rmp_format": "Chitturi Bhadrachalam", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 67, + "tags": [ + "Lecture heavy", + "Test heavy", + "Graded by few things", + "Skip class? You won't pass.", + "Get ready to read" + ], + "rmp_id": "2516353", + "instructor_id": "chalam", + "overall_grade_rating": 3.86, + "total_grade_count": 1655, + "course_ratings": { + "CS3305": 3.91, + "CS6363": 4.31, + "CS3149": 4.1, + "CS4349": 3.77, + "SE3306": 3.51, + "CS4384": 3.13, + "CS3345": 4.16, + "SE3345": 4.1, + "CS2305": 3.84 + } + } + ], + "jin kim": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2681393", + "quality_rating": 4, + "difficulty_rating": 2.9, + "would_take_again": 67, + "original_rmp_format": "Jin Ryong Kim", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 15, + "tags": [ + "Group projects", + "Participation matters", + "Gives good feedback", + "Lots of homework", + "Tough grader" + ], + "rmp_id": "2681393", + "instructor_id": "jrk200002", + "overall_grade_rating": 4.48, + "total_grade_count": 463, + "course_ratings": { + "CS6334": 4.59, + "CS6326": 4.6, + "CS4352": 4.25, + "CGS4352": 3.9 + } + } + ], + "anna ewert pittman": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2512125", + "quality_rating": 2, + "difficulty_rating": 2, + "would_take_again": 0, + "original_rmp_format": "Anna Pittman", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 1, + "tags": ["Participation matters", "Skip class? You won't pass.", "Lots of homework"], + "rmp_id": "2512125", + "instructor_id": "ame190001", + "overall_grade_rating": 4.37, + "total_grade_count": 126, + "course_ratings": { + "DANC1310": 4.31, + "DANC2332": 4.82 + } + } + ], + "donald hicks": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/807655", + "quality_rating": 1.7, + "difficulty_rating": 4.8, + "would_take_again": 8, + "original_rmp_format": "Don Hicks", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 20, + "tags": [ + "Tough grader", + "Test heavy", + "Skip class? You won't pass.", + "Get ready to read", + "Lecture heavy" + ], + "rmp_id": "807655", + "instructor_id": "dahicks", + "overall_grade_rating": 3.4, + "total_grade_count": 60, + "course_ratings": { + "ECON4348": 2.88, + "PPPE6365": 4.53, + "PPPE6342": 3.25, + "IPEC4305": 3.06 + } + } + ], + "maria morales leon": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2638268", + "quality_rating": 3, + "difficulty_rating": 4, + "would_take_again": 25, + "original_rmp_format": "Camila Morales Leon", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 4, + "tags": [ + "Tough grader", + "Participation matters", + "Lecture heavy", + "Get ready to read", + "Clear grading criteria" + ], + "rmp_id": "2638268", + "instructor_id": "mcm200006", + "overall_grade_rating": 3.71, + "total_grade_count": 51, + "course_ratings": { + "ECON4362": 3.44, + "ECON6331": 4.09, + "ECON6332": 4.08 + } + } + ], + "alexandria saulnier mckinin": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2543028", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Alex McKinin", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 3, + "tags": [ + "Amazing lectures ", + "Inspirational", + "Caring", + "Participation matters", + "Clear grading criteria" + ], + "rmp_id": "2543028", + "instructor_id": "axs190162", + "overall_grade_rating": 4.4, + "total_grade_count": 67, + "course_ratings": { + "ECS1100": 4.4 + } + } + ], + "laurie pollock": [ + { + "department": "Education", + "url": "https://www.ratemyprofessors.com/professor/1012910", + "quality_rating": 5, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Laurie Youngblood Pollock", + "last_updated": "2025-03-14T23:13:31.004218", + "ratings_count": 4, + "tags": [ + "Inspirational", + "Amazing lectures ", + "Would take again", + "Gives good feedback", + "Respected" + ], + "rmp_id": "1012910", + "instructor_id": "lly062000", + "overall_grade_rating": 4.99, + "total_grade_count": 36, + "course_ratings": { + "ED4361": 4.99 + } + } + ], + "jake smith": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1796780", + "quality_rating": 1.8, + "difficulty_rating": 4, + "would_take_again": 25, + "original_rmp_format": "Ken Smith", + "last_updated": "2025-03-14T23:13:30.170400", + "ratings_count": 6, + "tags": [ + "Skip class? You won't pass.", + "Tough grader", + "Get ready to read", + "EXTRA CREDIT", + "Beware of pop quizzes" + ], + "rmp_id": "1796780", + "instructor_id": "jas171530", + "overall_grade_rating": 3.29, + "total_grade_count": 65, + "course_ratings": { + "FIN4310": 3.29 + } + }, + { + "instructor_id": "jas171530", + "overall_grade_rating": 3.29, + "total_grade_count": 65, + "course_ratings": { + "FIN4310": 3.29 + } + } + ], + "christa rodriguez": [ + { + "department": "Science", + "url": "https://www.ratemyprofessors.com/professor/930188", + "quality_rating": 4.5, + "difficulty_rating": 2.9, + "would_take_again": 78, + "original_rmp_format": "Christa McIntyre Rodriguez", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 15, + "tags": [ + "Get ready to read", + "Test heavy", + "Amazing lectures ", + "Inspirational", + "Accessible outside class" + ], + "rmp_id": "930188", + "instructor_id": "cmr067000", + "overall_grade_rating": 4.36, + "total_grade_count": 281, + "course_ratings": { + "HCS6343": 4.64, + "NSC3361": 4.59, + "ACN6345": 4.2, + "NSC4357": 4.13, + "HCS7121": 5.0 + } + } + ], + "dicle yagmur ozdemir": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2666501", + "quality_rating": 4.6, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Dicle Ozdemir", + "last_updated": "2025-03-14T23:13:30.163395", + "ratings_count": 5, + "tags": [ + "Gives good feedback", + "Accessible outside class", + "EXTRA CREDIT", + "Inspirational", + "Hilarious" + ], + "rmp_id": "2666501", + "instructor_id": "dxo170430", + "overall_grade_rating": 3.99, + "total_grade_count": 244, + "course_ratings": { + "ITSS3311": 4.07, + "ITSS3312": 3.71 + } + } + ], + "davis smith brecheisen": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2648245", + "quality_rating": 4.3, + "difficulty_rating": 2.7, + "would_take_again": 100, + "original_rmp_format": "Davis Brecheisen", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 3, + "tags": [ + "Clear grading criteria", + "Get ready to read", + "Participation matters", + "Group projects", + "Gives good feedback" + ], + "rmp_id": "2648245", + "instructor_id": "dxs200022", + "overall_grade_rating": 3.39, + "total_grade_count": 72, + "course_ratings": { + "LIT2350": 3.39, + "LIT3338": 2.64, + "LIT6308": 3.6, + "PHIL3338": 4.0 + } + } + ], + "anani komla adabrah": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2538574", + "quality_rating": 3.7, + "difficulty_rating": 3.2, + "would_take_again": 59, + "original_rmp_format": "Anani Adabrah", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 29, + "tags": [ + "Lots of homework", + "Lecture heavy", + "Accessible outside class", + "Caring", + "Skip class? You won't pass." + ], + "rmp_id": "2538574", + "instructor_id": "aaa130530", + "overall_grade_rating": 3.31, + "total_grade_count": 1463, + "course_ratings": { + "MATH1314": 2.78, + "MATH1325": 3.8, + "MATH2418": 3.01, + "MATH4332": 4.41 + } + } + ], + "ata jameei osgouei": [ + { + "department": "Marketing", + "url": "https://www.ratemyprofessors.com/professor/2839979", + "quality_rating": 4.9, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Ata Osgouei", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 10, + "tags": [ + "Group projects", + "Clear grading criteria", + "Caring", + "Graded by few things", + "Amazing lectures " + ], + "rmp_id": "2839979", + "instructor_id": "axj174330", + "overall_grade_rating": 4.48, + "total_grade_count": 457, + "course_ratings": { + "MKT3300": 4.48 + } + } + ], + "nili riemer bueckert": [ + { + "department": "Music", + "url": "https://www.ratemyprofessors.com/professor/2550387", + "quality_rating": 4.8, + "difficulty_rating": 1.4, + "would_take_again": 100, + "original_rmp_format": "Nili Bueckert", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 5, + "tags": [ + "Caring", + "Participation matters", + "Gives good feedback", + "Respected", + "Accessible outside class" + ], + "rmp_id": "2550387", + "instructor_id": "nxr190013", + "overall_grade_rating": 4.8, + "total_grade_count": 202, + "course_ratings": { + "MUSI2325": 4.82, + "MUSI3382": 4.73 + } + } + ], + "fariba farajbakhsh mamaghani": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2416356", + "quality_rating": 3.6, + "difficulty_rating": 3, + "would_take_again": 58, + "original_rmp_format": "Fariba Mamaghani", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 12, + "tags": [ + "Gives good feedback", + "Caring", + "Accessible outside class", + "Skip class? You won't pass.", + "Get ready to read" + ], + "rmp_id": "2416356", + "instructor_id": "fxf150430", + "overall_grade_rating": 4.0, + "total_grade_count": 173, + "course_ratings": { + "OPRE3360": 4.0 + } + } + ], + "syeda nadia hasan": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2598952", + "quality_rating": 4.3, + "difficulty_rating": 1.2, + "would_take_again": 100, + "original_rmp_format": "Syeda Hasan", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 6, + "tags": [ + "Caring", + "Participation matters", + "Gives good feedback", + "Respected", + "Get ready to read" + ], + "rmp_id": "2598952", + "instructor_id": "sxh190004", + "overall_grade_rating": 4.16, + "total_grade_count": 200, + "course_ratings": { + "RHET1302": 4.2, + "LIT2331": 4.07 + } + } + ], + "cristian carlo suller": [ + { + "department": "Rhetoric", + "url": "https://www.ratemyprofessors.com/professor/2790619", + "quality_rating": 2.3, + "difficulty_rating": 4, + "would_take_again": 33, + "original_rmp_format": "Cristian Suller", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 24, + "tags": [ + "Tough grader", + "Participation matters", + "Get ready to read", + "Group projects", + "Lots of homework" + ], + "rmp_id": "2790619", + "instructor_id": "cls180002", + "overall_grade_rating": 3.5, + "total_grade_count": 178, + "course_ratings": { + "RHET1302": 3.54, + "LIT2331": 3.27 + } + } + ], + "kimberley hooge": [ + { + "department": "Psychology", + "url": "https://www.ratemyprofessors.com/professor/2362424", + "quality_rating": 4.9, + "difficulty_rating": 2.1, + "would_take_again": 100, + "original_rmp_format": "Kimberley Orsten Hooge", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 16, + "tags": [ + "Amazing lectures ", + "Accessible outside class", + "Gives good feedback", + "Participation matters", + "Caring" + ], + "rmp_id": "2362424", + "instructor_id": "koh170030", + "overall_grade_rating": 4.43, + "total_grade_count": 756, + "course_ratings": { + "ACN6395": 4.86, + "ACN6330": 4.85, + "PSY2301": 4.25, + "CGS2301": 4.25, + "CGS3361": 4.67, + "PSY3361": 4.53 + } + } + ], + "tatia jacobson jordan": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2858484", + "quality_rating": 4.8, + "difficulty_rating": 1.3, + "would_take_again": 100, + "original_rmp_format": "Tatia Jordan", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 4, + "tags": [ + "Clear grading criteria", + "Caring", + "Participation matters", + "Group projects", + "Gives good feedback" + ], + "rmp_id": "2858484", + "instructor_id": "txj210006", + "overall_grade_rating": 4.41, + "total_grade_count": 233, + "course_ratings": { + "BCOM3300": 4.41 + } + } + ], + "hossein kamalzadeh": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2840233", + "quality_rating": 1.3, + "difficulty_rating": 2, + "would_take_again": 0, + "original_rmp_format": "Hossein Kamlazadeh", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 4, + "tags": ["Graded by few things", "Tough grader", "Group projects"], + "rmp_id": "2840233", + "instructor_id": "hxk210085", + "overall_grade_rating": 4.61, + "total_grade_count": 675, + "course_ratings": { + "BUAN6320": 4.72, + "BUAN6346": 4.68, + "MIS6346": 4.63, + "ITSS3311": 3.89 + } + } + ], + "hedieh torabifard": [ + { + "department": "Chemistry", + "url": "https://www.ratemyprofessors.com/professor/2749778", + "quality_rating": 2.7, + "difficulty_rating": 4.7, + "would_take_again": 67, + "original_rmp_format": "Hedieh Torabiford", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 6, + "tags": [ + "Test heavy", + "Lots of homework", + "Tough grader", + "Lecture heavy", + "Participation matters" + ], + "rmp_id": "2749778", + "instructor_id": "hxt200006", + "overall_grade_rating": 3.92, + "total_grade_count": 305, + "course_ratings": { + "CHEM3321": 3.4, + "CHEM6100": 4.95 + } + } + ], + "toni munoz hunt": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2775262", + "quality_rating": 2.7, + "difficulty_rating": 2.5, + "would_take_again": 30, + "original_rmp_format": "Toni Munoz", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 20, + "tags": [ + "Get ready to read", + "Lecture heavy", + "Participation matters", + "So many papers", + "Graded by few things" + ], + "rmp_id": "2775262", + "instructor_id": "txm109120", + "overall_grade_rating": 4.69, + "total_grade_count": 60, + "course_ratings": { + "CRWT3306": 4.63, + "CRWT2301": 4.84 + } + } + ], + "ka yaw teo": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2756964", + "quality_rating": 4.1, + "difficulty_rating": 4.3, + "would_take_again": 80, + "original_rmp_format": "Ka Teo", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 10, + "tags": [ + "EXTRA CREDIT", + "Caring", + "Test heavy", + "Accessible outside class", + "Graded by few things" + ], + "rmp_id": "2756964", + "instructor_id": "kyt140130", + "overall_grade_rating": 3.33, + "total_grade_count": 141, + "course_ratings": { + "CS2305": 3.33 + } + } + ], + "chung hwan kim": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2746229", + "quality_rating": 3.6, + "difficulty_rating": 3.3, + "would_take_again": 67, + "original_rmp_format": "Chung Kim", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 9, + "tags": [ + "EXTRA CREDIT", + "Graded by few things", + "Tough grader", + "Group projects", + "Clear grading criteria" + ], + "rmp_id": "2746229", + "instructor_id": "cxk200010", + "overall_grade_rating": 3.97, + "total_grade_count": 409, + "course_ratings": { + "CS4348": 3.94, + "SE4348": 3.71, + "CS6324": 4.01 + } + } + ], + "marquita de jesus": [ + { + "department": "Fine Arts", + "url": "https://www.ratemyprofessors.com/professor/2985976", + "quality_rating": 3.8, + "difficulty_rating": 2.8, + "would_take_again": 75, + "original_rmp_format": "Marquita Jesus", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 4, + "tags": [ + "Tough grader", + "Participation matters", + "So many papers", + "Caring", + "Graded by few things" + ], + "rmp_id": "2985976", + "instructor_id": "msd053000", + "overall_grade_rating": 4.32, + "total_grade_count": 239, + "course_ratings": { + "DANC1310": 4.32 + } + } + ], + "roxana melendez de la hoz": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2787048", + "quality_rating": 1.2, + "difficulty_rating": 3.8, + "would_take_again": 0, + "original_rmp_format": "Rosana Melendez", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 5, + "tags": [ + "Tough grader", + "Graded by few things", + "Lecture heavy", + "Test heavy", + "Get ready to read" + ], + "rmp_id": "2787048", + "instructor_id": "rmm210007", + "overall_grade_rating": 2.87, + "total_grade_count": 68, + "course_ratings": { + "EE4310": 2.87 + } + } + ], + "emily rose baker": [ + { + "department": "Film", + "url": "https://www.ratemyprofessors.com/professor/2749116", + "quality_rating": 4.5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Emily Baker", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 2, + "tags": [ + "Participation matters", + "Get ready to read", + "Group projects", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2749116", + "instructor_id": "exb210012", + "overall_grade_rating": 3.64, + "total_grade_count": 84, + "course_ratings": { + "FILM1303": 3.68, + "FILM3321": 4.0, + "FILM2332": 3.04 + } + } + ], + "andres ricardo sanchez de la rosa": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2768635", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Andres Sanchez", + "last_updated": "2025-03-14T23:13:28.909557", + "ratings_count": 2, + "tags": ["Caring", "Lecture heavy", "Participation matters"], + "rmp_id": "2768635", + "instructor_id": "axs180146", + "overall_grade_rating": 4.26, + "total_grade_count": 190, + "course_ratings": { + "IPEC4302": 4.03, + "EPPS2301": 3.71, + "PSCI4347": 4.96, + "GOVT2305": 3.96, + "PSCI4357": 4.54 + } + } + ], + "diarisoa mihaja andriamanisa rakotomalala": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2296257", + "quality_rating": 4.6, + "difficulty_rating": 2.4, + "would_take_again": 94, + "original_rmp_format": "Diarisoa Rakotomalala", + "last_updated": "2025-03-14T23:13:28.900646", + "ratings_count": 33, + "tags": [ + "Amazing lectures ", + "Lots of homework", + "Accessible outside class", + "Gives good feedback", + "Caring" + ], + "rmp_id": "2296257", + "instructor_id": "dmr150130", + "overall_grade_rating": 3.22, + "total_grade_count": 905, + "course_ratings": { + "MATH1325": 3.15, + "MATH2333": 3.18, + "MATH2417": 3.34, + "MATH1326": 3.48, + "MATH2413": 2.95 + } + } + ], + "sushmita sinha roy": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/2760331", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Sushmita Roy", + "last_updated": "2025-03-14T23:13:30.164396", + "ratings_count": 3, + "tags": [ + "Accessible outside class", + "Amazing lectures ", + "Clear grading criteria", + "Gives good feedback" + ], + "rmp_id": "2760331", + "instructor_id": "sxs170121", + "overall_grade_rating": 2.41, + "total_grade_count": 115, + "course_ratings": { + "MATH2418": 2.88, + "MATH2417": 1.95 + } + } + ], + "oghenekome egukawhore": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2939984", + "quality_rating": 2, + "difficulty_rating": 4, + "would_take_again": 0, + "original_rmp_format": "Oghenekomee Egukawhore", + "last_updated": "2025-03-14T23:13:30.161397", + "ratings_count": 1, + "tags": ["Participation matters", "Graded by few things"], + "rmp_id": "2939984", + "instructor_id": "oxe190001", + "overall_grade_rating": 3.84, + "total_grade_count": 42, + "course_ratings": { + "PA4345": 3.84 + } + } + ], + "jessica hanson defusco": [ + { + "department": "Public Policy", + "url": "https://www.ratemyprofessors.com/professor/2740522", + "quality_rating": 5, + "difficulty_rating": 3.5, + "would_take_again": 100, + "original_rmp_format": "Jessi Defusco", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 2, + "tags": [ + "Accessible outside class", + "Get ready to read", + "Amazing lectures ", + "Inspirational", + "Caring" + ], + "rmp_id": "2740522", + "instructor_id": "jxh210011", + "overall_grade_rating": 4.79, + "total_grade_count": 94, + "course_ratings": { + "PPPE6329": 4.89, + "PPOL4396": 4.66, + "PPPE6343": 4.71, + "IPEC4396": 4.89 + } + } + ], + "brenda gambol gavigan": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/2752423", + "quality_rating": 4, + "difficulty_rating": 2, + "would_take_again": 62, + "original_rmp_format": "Brenda Gambol", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 8, + "tags": [ + "Participation matters", + "Caring", + "Lecture heavy", + "Skip class? You won't pass.", + "EXTRA CREDIT" + ], + "rmp_id": "2752423", + "instructor_id": "bxg210008", + "overall_grade_rating": 4.21, + "total_grade_count": 45, + "course_ratings": { + "SOC1301": 4.21 + } + } + ], + "laura kim": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/2715196", + "quality_rating": 2.9, + "difficulty_rating": 2.6, + "would_take_again": 44, + "original_rmp_format": "Laura Hyunjee Kim", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 9, + "tags": [ + "Gives good feedback", + "Accessible outside class", + "Participation matters", + "Amazing lectures ", + "Inspirational" + ], + "rmp_id": "2715196", + "instructor_id": "lxh210006", + "overall_grade_rating": 4.72, + "total_grade_count": 87, + "course_ratings": { + "VPAS3300": 4.61, + "VPAS6394": 4.65, + "VPAS6348": 4.58, + "ARTS3376": 4.64, + "VPAS6393": 4.81, + "VPAS6391": 4.96 + } + } + ], + "joy woods bennett": [ + { + "department": "Business Communications", + "url": "https://www.ratemyprofessors.com/professor/2960701", + "quality_rating": 5, + "difficulty_rating": 1, + "would_take_again": 100, + "original_rmp_format": "Joy Melody Bennett", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 3, + "tags": ["Group projects", "Amazing lectures ", "EXTRA CREDIT", "Hilarious", "Caring"], + "rmp_id": "2960701", + "instructor_id": "jmb230008", + "overall_grade_rating": 4.47, + "total_grade_count": 194, + "course_ratings": { + "BCOM3300": 4.47 + } + } + ], + "xintong dong": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/3056163", + "quality_rating": 3, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Xintong Xintong Dong,", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 2, + "tags": [ + "Lecture heavy", + "Get ready to read", + "Lots of homework", + "Caring", + "Accessible outside class" + ], + "rmp_id": "3056163", + "instructor_id": "xxd220000", + "overall_grade_rating": 4.35, + "total_grade_count": 294, + "course_ratings": { + "BIOL6351": 4.73, + "BIOL3401": 4.27 + } + } + ], + "you li": [ + { + "department": "Engineering", + "url": "https://www.ratemyprofessors.com/professor/2013550", + "quality_rating": 2.9, + "difficulty_rating": 4, + "would_take_again": 38, + "original_rmp_format": "Yaoyu Li", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 13, + "tags": [ + "Lots of homework", + "Tough grader", + "Test heavy", + "Clear grading criteria", + "Participation matters" + ], + "rmp_id": "2013550", + "instructor_id": "yxl230040", + "overall_grade_rating": 4.57, + "total_grade_count": 123, + "course_ratings": { + "BMEN4310": 4.57 + } + }, + { + "instructor_id": "yxl230040", + "overall_grade_rating": 4.57, + "total_grade_count": 123, + "course_ratings": { + "BMEN4310": 4.57 + } + } + ], + "meghana spurthi maadugundu": [ + { + "department": "Computer Science", + "url": "https://www.ratemyprofessors.com/professor/2519346", + "quality_rating": 3.3, + "difficulty_rating": 2.7, + "would_take_again": 62, + "original_rmp_format": "Meghana Satpute", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 82, + "tags": [ + "Caring", + "Lecture heavy", + "Beware of pop quizzes", + "Accessible outside class", + "Clear grading criteria" + ], + "rmp_id": "2519346", + "instructor_id": "mxm210057", + "overall_grade_rating": 4.95, + "total_grade_count": 106, + "course_ratings": { + "CS6314": 4.95 + } + }, + { + "instructor_id": "mxm210057", + "overall_grade_rating": 4.95, + "total_grade_count": 106, + "course_ratings": { + "CS6314": 4.95 + } + } + ], + "joseph nedbal": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/2927345", + "quality_rating": 4, + "difficulty_rating": 3.1, + "would_take_again": 79, + "original_rmp_format": "Joe Nedbal", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 14, + "tags": [ + "EXTRA CREDIT", + "Group projects", + "Gives good feedback", + "Respected", + "Get ready to read" + ], + "rmp_id": "2927345", + "instructor_id": "jan160230", + "overall_grade_rating": 4.01, + "total_grade_count": 149, + "course_ratings": { + "HMGT4321": 4.01 + } + } + ], + "marco elias cisneros tersitsch": [ + { + "department": "Economics", + "url": "https://www.ratemyprofessors.com/professor/2967019", + "quality_rating": 4, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Elias Cisneros", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 1, + "tags": ["Get ready to read", "Participation matters", "Clear grading criteria"], + "rmp_id": "2967019", + "instructor_id": "mxc230040", + "overall_grade_rating": 4.06, + "total_grade_count": 89, + "course_ratings": { + "IPEC3349": 3.89, + "PPPE6301": 4.36, + "PPPE6367": 4.31 + } + } + ], + "mengxin wang": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/3048125", + "quality_rating": 3.5, + "difficulty_rating": 2.5, + "would_take_again": 50, + "original_rmp_format": "menxing wang", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 2, + "tags": [ + "Amazing lectures ", + "Inspirational", + "Lecture heavy", + "Graded by few things", + "Accessible outside class" + ], + "rmp_id": "3048125", + "instructor_id": "mxw230006", + "overall_grade_rating": 4.06, + "total_grade_count": 254, + "course_ratings": { + "OPRE3310": 4.01, + "OPRE6304": 4.21 + } + } + ], + "galen dickey": [ + { + "department": "Sociology", + "url": "https://www.ratemyprofessors.com/professor/2616049", + "quality_rating": 4.3, + "difficulty_rating": 1.7, + "would_take_again": 83, + "original_rmp_format": "Galen Dickey-Laprocido", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 23, + "tags": [ + "Group projects", + "Caring", + "Graded by few things", + "Accessible outside class", + "Gives good feedback" + ], + "rmp_id": "2616049", + "instructor_id": "gld190001", + "overall_grade_rating": 4.79, + "total_grade_count": 1089, + "course_ratings": { + "SOC4369": 4.71, + "SOC4372": 4.84, + "SOC4384": 4.81, + "SOC4385": 4.84, + "SOC1301": 4.63, + "SOC4371": 4.81, + "SOC3392": 5.0, + "SOC4396": 5.0 + } + } + ], + "diego alins breda": [ + { + "department": "Arts & Humanities", + "url": "https://www.ratemyprofessors.com/professor/3010459", + "quality_rating": 5, + "difficulty_rating": 1.7, + "would_take_again": 100, + "original_rmp_format": "Diego Breda", + "last_updated": "2025-03-14T23:13:28.907422", + "ratings_count": 3, + "tags": ["Participation matters", "EXTRA CREDIT", "Caring", "Accessible outside class"], + "rmp_id": "3010459", + "instructor_id": "dxa230040", + "overall_grade_rating": 4.12, + "total_grade_count": 147, + "course_ratings": { + "SPAN1311": 3.55, + "SPAN1312": 4.02, + "SPAN2311": 3.87, + "SPAN3316": 4.7, + "SPAN3350": 4.69 + } + } + ], + "mv shivaani": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/3038632", + "quality_rating": 5, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "MV Shivanni", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 4, + "tags": [ + "Lecture heavy", + "Participation matters", + "EXTRA CREDIT", + "Amazing lectures ", + "Gives good feedback" + ], + "rmp_id": "3038632", + "instructor_id": "fxm200017", + "overall_grade_rating": 3.97, + "total_grade_count": 77, + "course_ratings": { + "ACCT2301": 3.97 + } + } + ], + "tae wook kim": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/3037195", + "quality_rating": 4.5, + "difficulty_rating": 2.5, + "would_take_again": 100, + "original_rmp_format": "Tae Kim", + "last_updated": "2025-03-14T23:13:28.904645", + "ratings_count": 2, + "tags": ["Clear grading criteria", "Caring", "Respected"], + "rmp_id": "3037195", + "instructor_id": "txk230025", + "overall_grade_rating": 4.26, + "total_grade_count": 222, + "course_ratings": { + "ACCT2302": 3.98, + "ACCT3331": 4.34, + "ACCT6305": 4.63 + } + } + ], + "amy jo gomez": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/3013602", + "quality_rating": 4.1, + "difficulty_rating": 2.4, + "would_take_again": 71, + "original_rmp_format": "Amy MacBey Gomez", + "last_updated": "2025-03-14T23:13:28.902644", + "ratings_count": 7, + "tags": [ + "Get ready to read", + "Clear grading criteria", + "Group projects", + "Caring", + "Tough grader" + ], + "rmp_id": "3013602", + "instructor_id": "amh240001", + "overall_grade_rating": 4.0, + "total_grade_count": 500, + "course_ratings": { + "BIOL2111": 3.64, + "BIOL2311": 3.58, + "BIOL3203": 4.7, + "BIOL4380": 4.51, + "BIOL3318": 4.8 + } + } + ], + "haifa abulaiha": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/3038330", + "quality_rating": 3, + "difficulty_rating": 2.5, + "would_take_again": 53, + "original_rmp_format": "Haifa Abdulaiha", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 15, + "tags": [ + "Participation matters", + "Tough grader", + "Lots of homework", + "Lecture heavy", + "Get ready to read" + ], + "rmp_id": "3038330", + "instructor_id": "dal859024", + "overall_grade_rating": 3.75, + "total_grade_count": 264, + "course_ratings": { + "CE1202": 3.53, + "CE2310": 3.52, + "EE1202": 4.12, + "EE2310": 3.76 + } + } + ], + "gregory mccown": [ + { + "department": "Communication", + "url": "https://www.ratemyprofessors.com/professor/2107008", + "quality_rating": 4.9, + "difficulty_rating": 1.9, + "would_take_again": 91, + "original_rmp_format": "Mona Gregory", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 13, + "tags": [ + "Gives good feedback", + "EXTRA CREDIT", + "Clear grading criteria", + "Caring", + "Accessible outside class" + ], + "rmp_id": "2107008", + "instructor_id": "dal165786", + "overall_grade_rating": 4.76, + "total_grade_count": 23, + "course_ratings": { + "COMM1311": 4.76 + } + }, + { + "instructor_id": "dal165786", + "overall_grade_rating": 4.76, + "total_grade_count": 23, + "course_ratings": { + "COMM1311": 4.76 + } + } + ], + "aparna shrivastava": [ + { + "department": "Information Science", + "url": "https://www.ratemyprofessors.com/professor/2591707", + "quality_rating": 2.4, + "difficulty_rating": 3.5, + "would_take_again": 30, + "original_rmp_format": "Prakash Shrivastava", + "last_updated": "2025-03-14T23:13:28.903644", + "ratings_count": 53, + "tags": [ + "Tough grader", + "Lecture heavy", + "Lots of homework", + "Clear grading criteria", + "Get ready to read" + ], + "rmp_id": "2591707", + "instructor_id": "axs123832", + "overall_grade_rating": 4.7, + "total_grade_count": 48, + "course_ratings": { + "ITSS3312": 4.7 + } + }, + { + "instructor_id": "axs123832", + "overall_grade_rating": 4.7, + "total_grade_count": 48, + "course_ratings": { + "ITSS3312": 4.7 + } + } + ], + "mohammad hassan murad": [ + { + "department": "Mathematics", + "url": "https://www.ratemyprofessors.com/professor/1880840", + "quality_rating": 3.3, + "difficulty_rating": 3.4, + "would_take_again": 62, + "original_rmp_format": "Mohammad Ahsan", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 63, + "tags": [ + "Lots of homework", + "Skip class? You won't pass.", + "Lecture heavy", + "Tough grader", + "Accessible outside class" + ], + "rmp_id": "1880840", + "instructor_id": "mxm190101", + "overall_grade_rating": 3.05, + "total_grade_count": 35, + "course_ratings": { + "MATH1314": 3.05 + } + }, + { + "instructor_id": "mxm190101", + "overall_grade_rating": 3.05, + "total_grade_count": 35, + "course_ratings": { + "MATH1314": 3.05 + } + } + ], + "wesley durow": [ + { + "department": "Business", + "url": "https://www.ratemyprofessors.com/professor/3057926", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Wesley Durrow", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 1, + "tags": ["Participation matters", "Group projects", "Caring"], + "rmp_id": "3057926", + "instructor_id": "wxd240005", + "overall_grade_rating": 4.51, + "total_grade_count": 69, + "course_ratings": { + "MKT4333": 4.6, + "MKT4336": 4.39, + "OPRE4345": 4.54 + } + } + ], + "like bu": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/3012914", + "quality_rating": 4.3, + "difficulty_rating": 2, + "would_take_again": 100, + "original_rmp_format": "Bu Like ", + "last_updated": "2025-03-14T23:13:28.901645", + "ratings_count": 3, + "tags": [ + "Hilarious", + "Caring", + "Lecture heavy", + "Clear grading criteria", + "Accessible outside class" + ], + "rmp_id": "3012914", + "instructor_id": "lxb190003", + "overall_grade_rating": 3.37, + "total_grade_count": 139, + "course_ratings": { + "OPRE3360": 3.37 + } + } + ], + "yan sun": [ + { + "department": "Accounting", + "url": "https://www.ratemyprofessors.com/professor/2170488", + "quality_rating": 4.9, + "difficulty_rating": 2.3, + "would_take_again": 100, + "original_rmp_format": "Yan (Tricia) Sun", + "last_updated": "2025-03-14T23:13:31.005224", + "ratings_count": 9, + "tags": [ + "Caring", + "Accessible outside class", + "Amazing lectures ", + "Gives good feedback", + "Inspirational" + ], + "rmp_id": "2170488", + "instructor_id": "yxs121130", + "overall_grade_rating": 3.48, + "total_grade_count": 64, + "course_ratings": { + "ACCT2301": 3.48 + } + } + ], + "livia markoczi": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1117552", + "quality_rating": 3.5, + "difficulty_rating": 2, + "would_take_again": 62, + "original_rmp_format": "Livia Markoczy", + "last_updated": "2025-03-14T23:13:30.165395", + "ratings_count": 25, + "tags": [ + "Participation matters", + "Skip class? You won't pass.", + "Gives good feedback", + "Graded by few things", + "Group projects" + ], + "rmp_id": "1117552", + "instructor_id": "lxm055000", + "overall_grade_rating": 4.08, + "total_grade_count": 296, + "course_ratings": { + "BPS4305": 4.08 + } + } + ], + "han (victor) xia": [ + { + "department": "Finance", + "url": "https://www.ratemyprofessors.com/professor/1902915", + "quality_rating": 4.7, + "difficulty_rating": 3.6, + "would_take_again": 88, + "original_rmp_format": "Han Xia", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 13, + "tags": [ + "Group projects", + "Amazing lectures ", + "Inspirational", + "Test heavy", + "Tough grader" + ], + "rmp_id": "1902915", + "instructor_id": "hxx110930", + "overall_grade_rating": 4.1, + "total_grade_count": 110, + "course_ratings": { + "FIN3350": 3.77, + "FIN6325": 4.65 + } + } + ], + "jae mo park": [ + { + "department": "Electrical Engineering", + "url": "https://www.ratemyprofessors.com/professor/2463584", + "quality_rating": 3.8, + "difficulty_rating": 4, + "would_take_again": 83, + "original_rmp_format": "Jae Park", + "last_updated": "2025-03-14T23:13:30.168400", + "ratings_count": 6, + "tags": [ + "Accessible outside class", + "Skip class? You won't pass.", + "Clear grading criteria", + "Gives good feedback", + "Test heavy" + ], + "rmp_id": "2463584", + "instructor_id": "jxp170001", + "overall_grade_rating": 3.45, + "total_grade_count": 95, + "course_ratings": { + "CE3302": 3.06, + "EE3302": 3.55 + } + } + ], + "nicole leeper piquero": [ + { + "department": "Criminal Justice", + "url": "https://www.ratemyprofessors.com/professor/1933425", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Nicole Piquero", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 2, + "tags": ["Amazing lectures ", "Inspirational", "Participation matters", "Respected"], + "rmp_id": "1933425", + "instructor_id": "nxl112230", + "overall_grade_rating": 4.3, + "total_grade_count": 6, + "course_ratings": { + "CRIM7315": 4.3 + } + } + ], + "randy battaglio": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/1608614", + "quality_rating": 4.6, + "difficulty_rating": 1.6, + "would_take_again": -1, + "original_rmp_format": "R. Paul Battaglio, Jr.", + "last_updated": "2025-03-14T23:13:31.006223", + "ratings_count": 7, + "tags": [ + "Amazing lectures ", + "Would take again", + "Hilarious", + "Tests? Not many", + "Gives good feedback" + ], + "rmp_id": "1608614", + "instructor_id": "rpb071000", + "overall_grade_rating": 4.93, + "total_grade_count": 31, + "course_ratings": { + "PA7350": 5.0, + "PA6370": 4.81 + } + } + ], + "jung whan kim": [ + { + "department": "Biology", + "url": "https://www.ratemyprofessors.com/professor/2044762", + "quality_rating": 3.5, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Jung-Whan (Jay) Kim", + "last_updated": "2025-03-14T23:13:30.174402", + "ratings_count": 2, + "tags": [ + "Graded by few things", + "Skip class? You won't pass.", + "Amazing lectures ", + "Beware of pop quizzes", + "Lecture heavy" + ], + "rmp_id": "2044762", + "instructor_id": "jxk132330", + "overall_grade_rating": 3.96, + "total_grade_count": 33, + "course_ratings": { + "BIOL5440": 3.96 + } + } + ], + "mary li": [ + { + "department": "Arts & Technology", + "url": "https://www.ratemyprofessors.com/professor/2484977", + "quality_rating": 4, + "difficulty_rating": 3.5, + "would_take_again": 50, + "original_rmp_format": "Mary Effler Li", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 2, + "tags": ["Gives good feedback", "Lots of homework", "Tough grader", "Caring"], + "rmp_id": "2484977", + "instructor_id": "mae057000", + "overall_grade_rating": 3.87, + "total_grade_count": 27, + "course_ratings": { + "ATCM2301": 3.87 + } + } + ], + "robert finkelman": [ + { + "department": "Geology", + "url": "https://www.ratemyprofessors.com/professor/1138292", + "quality_rating": 2.6, + "difficulty_rating": 4.3, + "would_take_again": 100, + "original_rmp_format": "Robert Finkleman", + "last_updated": "2025-03-14T23:13:30.169399", + "ratings_count": 11, + "tags": ["Amazing lectures ", "Respected", "Graded by few things"], + "rmp_id": "1138292", + "instructor_id": "rbf051000", + "overall_grade_rating": 3.26, + "total_grade_count": 12, + "course_ratings": { + "GEOS3124": 3.26 + } + } + ], + "milad armaghan": [ + { + "department": "Operations Management", + "url": "https://www.ratemyprofessors.com/professor/2915329", + "quality_rating": 4.5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Armaghan Milad ", + "last_updated": "2025-03-14T23:13:30.162396", + "ratings_count": 2, + "tags": ["Graded by few things", "Clear grading criteria", "Test heavy"], + "rmp_id": "2915329", + "instructor_id": "mxa135230", + "overall_grade_rating": 4.05, + "total_grade_count": 188, + "course_ratings": { + "OPRE3310": 4.05 + } + } + ], + "ning li": [ + { + "department": "Management", + "url": "https://www.ratemyprofessors.com/professor/2998424", + "quality_rating": 3.1, + "difficulty_rating": 3.8, + "would_take_again": 54, + "original_rmp_format": "Ning (Alex) Li", + "last_updated": "2025-03-14T23:13:28.906647", + "ratings_count": 13, + "tags": [ + "Get ready to read", + "Lots of homework", + "Tough grader", + "Participation matters", + "Group projects" + ], + "rmp_id": "2998424", + "instructor_id": "anl230000", + "overall_grade_rating": 3.11, + "total_grade_count": 174, + "course_ratings": { + "OBHR3310": 3.11 + } + } + ], + "saeed rahmanian koshkaki": [ + { + "department": "Physics", + "url": "https://www.ratemyprofessors.com/professor/3008560", + "quality_rating": 2.5, + "difficulty_rating": 3, + "would_take_again": 0, + "original_rmp_format": "Saheed Koshkaki", + "last_updated": "2025-03-14T23:13:28.908558", + "ratings_count": 2, + "tags": ["Get ready to read", "Participation matters", "EXTRA CREDIT"], + "rmp_id": "3008560", + "instructor_id": "sxr176930", + "overall_grade_rating": 3.94, + "total_grade_count": 72, + "course_ratings": { + "PHYS1302": 4.04, + "PHYS4350": 3.29 + } + } + ], + "carlos daniel gutierrez mannix": [ + { + "department": "Political Science", + "url": "https://www.ratemyprofessors.com/professor/2627964", + "quality_rating": 4.8, + "difficulty_rating": 3.1, + "would_take_again": 90, + "original_rmp_format": "Carlos Gutierrez Mannix", + "last_updated": "2025-03-14T23:13:30.166402", + "ratings_count": 20, + "tags": [ + "Respected", + "Gives good feedback", + "Get ready to read", + "Clear grading criteria", + "Caring" + ], + "rmp_id": "2627964", + "instructor_id": "cxg172030", + "overall_grade_rating": 4.43, + "total_grade_count": 213, + "course_ratings": { + "GOVT2306": 4.57, + "GOVT2305": 3.9 + } + } + ], + "candice pattisapu": [ + { + "department": "Statistics", + "url": "https://www.ratemyprofessors.com/professor/2712965", + "quality_rating": 5, + "difficulty_rating": 3, + "would_take_again": 100, + "original_rmp_format": "Candice Pattisapu Fox", + "last_updated": "2025-03-14T23:13:30.167400", + "ratings_count": 1, + "tags": ["Gives good feedback", "Caring", "Test heavy"], + "rmp_id": "2712965", + "instructor_id": "cnp140230", + "overall_grade_rating": 3.94, + "total_grade_count": 20, + "course_ratings": { + "PSY2317": 3.94 + } + } + ], + "chen wang": [ + { + "instructor_id": "cxw133830", + "overall_grade_rating": 4.15, + "total_grade_count": 23, + "course_ratings": { + "CHIN1311": 4.15 + } + } + ], + "gina bennett": [ + { + "instructor_id": "ggb170030", + "overall_grade_rating": 2.51, + "total_grade_count": 44, + "course_ratings": { + "HIST1301": 2.51 + } + } + ], + "shamim hunt": [ + { + "instructor_id": "sxh034100", + "overall_grade_rating": 3.59, + "total_grade_count": 60, + "course_ratings": { + "LIT2331": 3.59 + } + } + ], + "esther howard cuadros": [ + { + "instructor_id": "exh022000", + "overall_grade_rating": 4.56, + "total_grade_count": 84, + "course_ratings": { + "RHET1302": 4.56 + } + } + ], + "joycelyn bell": [ + { + "instructor_id": "jxb120631", + "overall_grade_rating": 4.5, + "total_grade_count": 68, + "course_ratings": { + "RHET1302": 4.5 + } + } + ], + "terin tehan": [ + { + "instructor_id": "txt125430", + "overall_grade_rating": 4.71, + "total_grade_count": 56, + "course_ratings": { + "RHET1302": 4.71 + } + } + ], + "patricia stout": [ + { + "instructor_id": "pjs140230", + "overall_grade_rating": 3.9, + "total_grade_count": 72, + "course_ratings": { + "RHET1302": 3.9 + } + } + ], + "alex binkowski": [ + { + "instructor_id": "axb172531", + "overall_grade_rating": 4.58, + "total_grade_count": 22, + "course_ratings": { + "SPAN1311": 4.58 + } + } + ], + "john healy": [ + { + "instructor_id": "jxh048000", + "overall_grade_rating": 4.58, + "total_grade_count": 15, + "course_ratings": { + "MUSI2315": 4.58 + } + } + ], + "rebecca carter": [ + { + "instructor_id": "rsc150030", + "overall_grade_rating": 4.0, + "total_grade_count": 50, + "course_ratings": { + "ARTS2380": 3.75, + "ARTS3381": 4.53 + } + } + ], + "stephanie durant": [ + { + "instructor_id": "ddm043000", + "overall_grade_rating": 4.25, + "total_grade_count": 224, + "course_ratings": { + "ARTS3371": 4.15, + "ARTS4308": 4.31, + "ARTS3379": 4.47, + "ARTS3340": 3.83, + "ARTS3374": 4.88 + } + } + ], + "cristina gonzalez": [ + { + "instructor_id": "cxg042000", + "overall_grade_rating": 4.87, + "total_grade_count": 41, + "course_ratings": { + "SPAN2341": 4.87 + } + } + ], + "betty wiesepape": [ + { + "instructor_id": "bet", + "overall_grade_rating": 4.49, + "total_grade_count": 13, + "course_ratings": { + "CRWT3307": 4.49 + } + } + ], + "gregory hustis": [ + { + "instructor_id": "gjh120030", + "overall_grade_rating": 4.84, + "total_grade_count": 101, + "course_ratings": { + "MUSI3120": 4.8, + "MUSI4120": 4.9 + } + } + ], + "nandini krishnaswamy": [ + { + "instructor_id": "nxk176230", + "overall_grade_rating": 4.35, + "total_grade_count": 71, + "course_ratings": { + "COMM1311": 4.35 + } + } + ], + "susan norman": [ + { + "instructor_id": "smw011400", + "overall_grade_rating": 4.93, + "total_grade_count": 28, + "course_ratings": { + "CRWT3307": 4.93 + } + } + ], + "jeffrey martin": [ + { + "instructor_id": "jsm016600", + "overall_grade_rating": 4.01, + "total_grade_count": 119, + "course_ratings": { + "SPAU3341": 3.79, + "AUD7310": 5.0, + "AUD7353": 4.75 + } + } + ], + "colleen le prell": [ + { + "instructor_id": "cgl150030", + "overall_grade_rating": 4.62, + "total_grade_count": 80, + "course_ratings": { + "AUD6305": 4.86, + "AUD7205": 4.43, + "AUD7228": 4.58 + } + } + ], + "ross roeser": [ + { + "instructor_id": "roeser", + "overall_grade_rating": 4.93, + "total_grade_count": 148, + "course_ratings": { + "AUD6310": 4.73, + "AUD6113": 5.0, + "AUD7240": 5.0, + "AUD6311": 4.73 + } + } + ], + "edward lobarinas": [ + { + "instructor_id": "exl152130", + "overall_grade_rating": 4.69, + "total_grade_count": 196, + "course_ratings": { + "AUD7327": 4.61, + "AUD6303": 4.6, + "AUD7321": 4.73, + "AUD7110": 4.7, + "AUD7220": 4.81 + } + } + ], + "janice lougeay": [ + { + "instructor_id": "lougeay", + "overall_grade_rating": 4.99, + "total_grade_count": 613, + "course_ratings": { + "COMD6221": 4.98, + "COMD6222": 4.99 + } + } + ], + "helen kenedi": [ + { + "instructor_id": "kenedi", + "overall_grade_rating": 4.92, + "total_grade_count": 351, + "course_ratings": { + "COMD6377": 4.91, + "COMD7207": 4.97 + } + } + ], + "lucinda dean": [ + { + "instructor_id": "lxl018300", + "overall_grade_rating": 4.89, + "total_grade_count": 1258, + "course_ratings": { + "COMD6378": 4.94, + "COMD7301": 5.0, + "COMD6101": 5.0, + "COMD7303": 4.83 + } + } + ], + "robert stillman": [ + { + "instructor_id": "stillman", + "overall_grade_rating": 5.0, + "total_grade_count": 157, + "course_ratings": { + "HCS6302": 5.0 + } + } + ], + "catherine boatman": [ + { + "instructor_id": "cab018010", + "overall_grade_rating": 5.0, + "total_grade_count": 7, + "course_ratings": { + "HDCD6395": 5.0 + } + } + ], + "julie cook": [ + { + "instructor_id": "jdc151030", + "overall_grade_rating": 4.92, + "total_grade_count": 196, + "course_ratings": { + "COMD7204": 4.92 + } + } + ], + "donna ewing": [ + { + "instructor_id": "dme061000", + "overall_grade_rating": 4.73, + "total_grade_count": 188, + "course_ratings": { + "HDCD6315": 4.95, + "HDCD6312": 4.89, + "HDCD6316": 4.57, + "HDCD6390": 4.51, + "HDCD6370": 4.7, + "HDCD6351": 4.69 + } + } + ], + "john hart": [ + { + "instructor_id": "jxh057100", + "overall_grade_rating": 4.66, + "total_grade_count": 90, + "course_ratings": { + "COMD7309": 4.65, + "HCS7309": 4.71 + } + } + ], + "nicolas herrera": [ + { + "instructor_id": "nsh100020", + "overall_grade_rating": 3.99, + "total_grade_count": 71, + "course_ratings": { + "CGS4352": 3.12, + "CS4352": 4.13 + } + } + ], + "carol anderson": [ + { + "instructor_id": "caa010400", + "overall_grade_rating": 4.77, + "total_grade_count": 22, + "course_ratings": { + "HDCD6360": 4.77 + } + } + ], + "jessica carter": [ + { + "instructor_id": "jar032000", + "overall_grade_rating": 4.9, + "total_grade_count": 400, + "course_ratings": { + "COMD7221": 4.9, + "COMD6320": 4.91 + } + } + ], + "christine dollaghan": [ + { + "instructor_id": "cxd062000", + "overall_grade_rating": 4.69, + "total_grade_count": 94, + "course_ratings": { + "COMD6308": 4.66, + "COMD7392": 4.84 + } + } + ], + "carol cokely": [ + { + "instructor_id": "cgc016200", + "overall_grade_rating": 4.88, + "total_grade_count": 290, + "course_ratings": { + "AUD7338": 4.63, + "AUD6113": 5.0, + "AUD7182": 5.0, + "AUD7282": 5.0, + "AUD7250": 5.0, + "AUD6316": 4.79, + "AUD6216": 4.87 + } + } + ], + "jiyoung kim": [ + { + "instructor_id": "jxk041000", + "overall_grade_rating": 4.65, + "total_grade_count": 33, + "course_ratings": { + "MSEN5300": 4.5, + "MECH5300": 4.72, + "MSEN6383": 4.7 + } + } + ], + "qing gu": [ + { + "instructor_id": "qxg160030", + "overall_grade_rating": 3.61, + "total_grade_count": 74, + "course_ratings": { + "EEGR6316": 4.18, + "EE4301": 2.62 + } + } + ], + "iii ryu": [ + { + "instructor_id": "ixr161130", + "overall_grade_rating": 4.01, + "total_grade_count": 260, + "course_ratings": { + "MECH2320": 3.98, + "MECH4301": 3.95, + "MECH6356": 4.26, + "MECH3360": 4.29 + } + } + ], + "robert helms": [ + { + "instructor_id": "rxh033000", + "overall_grade_rating": 3.03, + "total_grade_count": 123, + "course_ratings": { + "CE3301": 3.05, + "EE3301": 3.02 + } + } + ], + "james coleman": [ + { + "instructor_id": "jjc130530", + "overall_grade_rating": 3.96, + "total_grade_count": 49, + "course_ratings": { + "MSEN6320": 4.95, + "EE3310": 3.98, + "CE3310": 3.44 + } + } + ], + "joe pacheco": [ + { + "instructor_id": "jxp142030", + "overall_grade_rating": 4.24, + "total_grade_count": 108, + "course_ratings": { + "BMEN4110": 3.79, + "BMEN4388": 4.47, + "BMEN3150": 4.36, + "BMEN4389": 4.48 + } + } + ], + "mario romero ortega": [ + { + "instructor_id": "mir140030", + "overall_grade_rating": 4.53, + "total_grade_count": 54, + "course_ratings": { + "BMEN7188": 4.64, + "BMEN6393": 4.17, + "BMEN7189": 4.6 + } + } + ], + "crystal favors": [ + { + "instructor_id": "cnf150030", + "overall_grade_rating": 4.03, + "total_grade_count": 327, + "course_ratings": { + "ECS1100": 4.03 + } + } + ], + "brenda freeman": [ + { + "instructor_id": "brf160230", + "overall_grade_rating": 4.15, + "total_grade_count": 158, + "course_ratings": { + "ECS1100": 4.15 + } + } + ], + "racine lewis": [ + { + "instructor_id": "rnr130230", + "overall_grade_rating": 4.55, + "total_grade_count": 109, + "course_ratings": { + "ECS1100": 4.55 + } + } + ], + "joshua brown": [ + { + "instructor_id": "jxb165130", + "overall_grade_rating": 4.21, + "total_grade_count": 137, + "course_ratings": { + "ECS1100": 4.21 + } + } + ], + "mary stewart": [ + { + "instructor_id": "mas051000", + "overall_grade_rating": 4.21, + "total_grade_count": 50, + "course_ratings": { + "ECS1100": 4.21 + } + } + ], + "jun wang": [ + { + "instructor_id": "jxw130130", + "overall_grade_rating": 4.17, + "total_grade_count": 24, + "course_ratings": { + "BMEN3325": 4.17 + } + } + ], + "amanda coleman": [ + { + "instructor_id": "axc173630", + "overall_grade_rating": 4.28, + "total_grade_count": 144, + "course_ratings": { + "ECS3390": 4.28 + } + } + ], + "michael howell": [ + { + "instructor_id": "mjh047000", + "overall_grade_rating": 3.73, + "total_grade_count": 74, + "course_ratings": { + "CS2335": 3.73 + } + } + ], + "lowell kiel": [ + { + "instructor_id": "dkiel", + "overall_grade_rating": 4.17, + "total_grade_count": 134, + "course_ratings": { + "PA6313": 4.1, + "PA4370": 4.06, + "PA7305": 4.22, + "PA4340": 4.08, + "PA6326": 4.29, + "PA4390": 4.69 + } + } + ], + "yongwan chun": [ + { + "instructor_id": "yxc070300", + "overall_grade_rating": 4.07, + "total_grade_count": 133, + "course_ratings": { + "GISC6381": 4.11, + "GEOS6381": 4.79, + "GISC4326": 3.72, + "GISC4382": 3.52, + "GISC6388": 4.78 + } + } + ], + "michelle chin": [ + { + "instructor_id": "mlc140530", + "overall_grade_rating": 4.94, + "total_grade_count": 554, + "course_ratings": { + "PSCI4370": 4.97, + "PSCI4373": 4.97, + "PA8331": 4.79, + "PA8332": 4.91 + } + } + ], + "john daly": [ + { + "instructor_id": "jad105020", + "overall_grade_rating": 4.99, + "total_grade_count": 426, + "course_ratings": { + "PSCI4372": 4.99 + } + } + ], + "joel swerdlow": [ + { + "instructor_id": "jls059000", + "overall_grade_rating": 4.98, + "total_grade_count": 192, + "course_ratings": { + "PSCI4373": 4.98 + } + } + ], + "asli leblebicioglu": [ + { + "instructor_id": "axl128330", + "overall_grade_rating": 3.62, + "total_grade_count": 113, + "course_ratings": { + "ECON6302": 4.01, + "ECON4362": 3.64, + "ECON3311": 3.43, + "ECON4382": 3.65 + } + } + ], + "barry seldon": [ + { + "instructor_id": "seldon", + "overall_grade_rating": 4.81, + "total_grade_count": 13, + "course_ratings": { + "ECON5321": 4.81 + } + } + ], + "hyeongmo koo": [ + { + "instructor_id": "hxk134230", + "overall_grade_rating": 4.5, + "total_grade_count": 10, + "course_ratings": { + "GISC4326": 4.5 + } + } + ], + "monghyeon lee": [ + { + "instructor_id": "mxl120631", + "overall_grade_rating": 4.37, + "total_grade_count": 37, + "course_ratings": { + "GISC3304": 4.78, + "GEOG3304": 4.17, + "GEOS3304": 4.14 + } + } + ], + "soojin min": [ + { + "instructor_id": "sxm123731", + "overall_grade_rating": 3.89, + "total_grade_count": 30, + "course_ratings": { + "EPPS2302": 3.89 + } + } + ], + "ji won suh": [ + { + "instructor_id": "jxs145530", + "overall_grade_rating": 4.23, + "total_grade_count": 59, + "course_ratings": { + "PA3306": 4.46, + "PSCI3310": 4.22, + "PA3310": 4.04 + } + } + ], + "alexis piquero": [ + { + "instructor_id": "axp116030", + "overall_grade_rating": 4.26, + "total_grade_count": 9, + "course_ratings": { + "CRIM7300": 4.26 + } + } + ], + "andrew wheeler": [ + { + "instructor_id": "axw161530", + "overall_grade_rating": 4.77, + "total_grade_count": 39, + "course_ratings": { + "CRIM7301": 5.0, + "CRIM4323": 4.74, + "CRIM7381": 4.58 + } + } + ], + "kwang soo kim": [ + { + "instructor_id": "kxk124930", + "overall_grade_rating": 4.05, + "total_grade_count": 50, + "course_ratings": { + "ECON2301": 4.05 + } + } + ], + "karen de olivares": [ + { + "instructor_id": "kxd124130", + "overall_grade_rating": 4.99, + "total_grade_count": 37, + "course_ratings": { + "SOC3315": 4.98, + "HONS3199": 5.0 + } + } + ], + "may yuan": [ + { + "instructor_id": "mxy141230", + "overall_grade_rating": 4.28, + "total_grade_count": 23, + "course_ratings": { + "GISC4380": 4.17, + "GISC6385": 4.36 + } + } + ], + "rodolfo hernandez guerrero": [ + { + "instructor_id": "rfo", + "overall_grade_rating": 3.47, + "total_grade_count": 30, + "course_ratings": { + "PSCI4331": 3.47 + } + } + ], + "julia haun": [ + { + "instructor_id": "jlb018300", + "overall_grade_rating": 3.97, + "total_grade_count": 117, + "course_ratings": { + "ED3340": 3.61, + "ED4345": 4.73 + } + } + ], + "angela mcnulty": [ + { + "instructor_id": "mcnulty", + "overall_grade_rating": 4.08, + "total_grade_count": 296, + "course_ratings": { + "ED3345": 4.14, + "ED4352": 4.09, + "ED3339": 3.97 + } + } + ], + "meredith friedman": [ + { + "instructor_id": "mxk116530", + "overall_grade_rating": 4.85, + "total_grade_count": 100, + "course_ratings": { + "ED4343": 4.87, + "ED4361": 4.82 + } + } + ], + "rebekah nix": [ + { + "instructor_id": "rnix", + "overall_grade_rating": 4.45, + "total_grade_count": 80, + "course_ratings": { + "ED4372": 4.45 + } + } + ], + "anthony rainey": [ + { + "instructor_id": "doyen", + "overall_grade_rating": 4.79, + "total_grade_count": 331, + "course_ratings": { + "HLTH4108": 4.79 + } + } + ], + "james mcallister": [ + { + "instructor_id": "jtm140230", + "overall_grade_rating": 3.24, + "total_grade_count": 22, + "course_ratings": { + "BIS3190": 3.24 + } + } + ], + "stephanie isham": [ + { + "instructor_id": "sisham", + "overall_grade_rating": 3.6, + "total_grade_count": 139, + "course_ratings": { + "HLTH4380": 3.6 + } + } + ], + "alyssa ross": [ + { + "instructor_id": "anr161130", + "overall_grade_rating": 4.34, + "total_grade_count": 151, + "course_ratings": { + "ED4363": 4.61, + "AMS4300": 4.23 + } + } + ], + "eric kildebeck": [ + { + "instructor_id": "ejk018000", + "overall_grade_rating": 4.98, + "total_grade_count": 62, + "course_ratings": { + "HONS3199": 4.98 + } + } + ], + "varghese jacob": [ + { + "instructor_id": "vjacob", + "overall_grade_rating": 4.98, + "total_grade_count": 24, + "course_ratings": { + "MIS7220": 4.98 + } + } + ], + "qi chen": [ + { + "instructor_id": "qxc171130", + "overall_grade_rating": 4.37, + "total_grade_count": 76, + "course_ratings": { + "OPRE6371": 4.37 + } + } + ], + "mohammad mahdi fahimi": [ + { + "instructor_id": "mxf130830", + "overall_grade_rating": 3.67, + "total_grade_count": 86, + "course_ratings": { + "FIN3320": 3.67 + } + } + ], + "congying wang": [ + { + "instructor_id": "cxw141430", + "overall_grade_rating": 4.07, + "total_grade_count": 48, + "course_ratings": { + "IMS3310": 4.07 + } + } + ], + "xiujuan li": [ + { + "instructor_id": "xxl133730", + "overall_grade_rating": 4.27, + "total_grade_count": 93, + "course_ratings": { + "IMS3310": 4.27 + } + } + ], + "benjamin pettigrew": [ + { + "instructor_id": "bxp171930", + "overall_grade_rating": 3.95, + "total_grade_count": 48, + "course_ratings": { + "IMS3310": 3.95 + } + } + ], + "ki lai": [ + { + "instructor_id": "kxl173830", + "overall_grade_rating": 4.83, + "total_grade_count": 29, + "course_ratings": { + "HMGT6334": 4.83 + } + } + ], + "stephen peabody": [ + { + "instructor_id": "sdp093020", + "overall_grade_rating": 3.89, + "total_grade_count": 797, + "course_ratings": { + "FIN3320": 3.71, + "FIN6301": 4.53, + "FIN3330": 4.97 + } + } + ], + "kirk kirksey": [ + { + "instructor_id": "kak130030", + "overall_grade_rating": 4.73, + "total_grade_count": 110, + "course_ratings": { + "HMGT4321": 4.63, + "HMGT6323": 4.93, + "MIS6317": 4.45 + } + } + ], + "chenzhang bao": [ + { + "instructor_id": "cxb121930", + "overall_grade_rating": 4.63, + "total_grade_count": 48, + "course_ratings": { + "ITSS3300": 4.63 + } + } + ], + "michaella walton": [ + { + "instructor_id": "mrw170730", + "overall_grade_rating": 3.84, + "total_grade_count": 687, + "course_ratings": { + "BCOM3310": 3.83, + "MKT3200": 3.86, + "BCOM3300": 3.3, + "BCOM1300": 4.03, + "BCOM3200": 4.13, + "ACCT3200": 4.18, + "FIN3200": 3.85, + "BCOM4300": 3.68 + } + } + ], + "jeffrey ayres": [ + { + "instructor_id": "jaa014500", + "overall_grade_rating": 4.46, + "total_grade_count": 68, + "course_ratings": { + "FIN4345": 4.5, + "EPPS6323": 4.32 + } + } + ], + "mingwen yang": [ + { + "instructor_id": "mxy131030", + "overall_grade_rating": 4.78, + "total_grade_count": 76, + "course_ratings": { + "ITSS3312": 4.78 + } + } + ], + "arosha karunathilake": [ + { + "instructor_id": "axk113330", + "overall_grade_rating": 4.2, + "total_grade_count": 549, + "course_ratings": { + "CHEM1111": 4.1, + "CHEM1112": 4.18, + "CHEM2125": 4.78 + } + } + ], + "yu huang": [ + { + "instructor_id": "yxh091220", + "overall_grade_rating": 3.36, + "total_grade_count": 3318, + "course_ratings": { + "CHEM1111": 4.19, + "CHEM1311": 3.21, + "CHEM1112": 4.06, + "CHEM1312": 3.0, + "CHEM4473": 4.53 + } + } + ], + "lawrence reitzer": [ + { + "instructor_id": "reitzer", + "overall_grade_rating": 3.76, + "total_grade_count": 1173, + "course_ratings": { + "BIOL3335": 3.98, + "BIOL3162": 3.54 + } + } + ], + "zhenyu xuan": [ + { + "instructor_id": "zxx091000", + "overall_grade_rating": 4.2, + "total_grade_count": 381, + "course_ratings": { + "BIOL5376": 3.84, + "BIOL6193": 5.0, + "BIOL5460": 3.97 + } + } + ], + "john ferguson": [ + { + "instructor_id": "ferguson", + "overall_grade_rating": 4.44, + "total_grade_count": 73, + "course_ratings": { + "GEOS4320": 4.42, + "GEOS5381": 4.64, + "GEOS5387": 4.44, + "GEOS5306": 4.31 + } + } + ], + "george mcmechan": [ + { + "instructor_id": "mcmec", + "overall_grade_rating": 4.67, + "total_grade_count": 15, + "course_ratings": { + "GEOS7190": 5.0, + "GEOS5384": 4.28 + } + } + ], + "david lewis": [ + { + "instructor_id": "dlewis", + "overall_grade_rating": 2.95, + "total_grade_count": 430, + "course_ratings": { + "MATH2414": 2.97, + "MATH2413": 2.68, + "MATH2419": 3.08 + } + } + ], + "roderick heelis": [ + { + "instructor_id": "heelis", + "overall_grade_rating": 4.5, + "total_grade_count": 20, + "course_ratings": { + "PHYS5322": 4.46, + "PHYS6383": 4.58 + } + } + ], + "billy gammons jr": [ + { + "instructor_id": "bgg021000", + "overall_grade_rating": 4.63, + "total_grade_count": 36, + "course_ratings": { + "NATS4141": 4.63 + } + } + ], + "vladimir dragovic": [ + { + "instructor_id": "vxd123630", + "overall_grade_rating": 4.08, + "total_grade_count": 55, + "course_ratings": { + "MATH6303": 3.96, + "MATH3397": 4.58 + } + } + ], + "hailey king": [ + { + "instructor_id": "hlk111000", + "overall_grade_rating": 4.59, + "total_grade_count": 37, + "course_ratings": { + "NATS1101": 4.59 + } + } + ], + "haven aldrich": [ + { + "instructor_id": "hsa051000", + "overall_grade_rating": 4.7, + "total_grade_count": 63, + "course_ratings": { + "NATS1101": 4.7 + } + } + ], + "natasha horner": [ + { + "instructor_id": "nxh171630", + "overall_grade_rating": 4.84, + "total_grade_count": 66, + "course_ratings": { + "NATS1101": 4.84 + } + } + ], + "eric welgehausen": [ + { + "instructor_id": "ericw", + "overall_grade_rating": 4.2, + "total_grade_count": 108, + "course_ratings": { + "UNIV1100": 4.2 + } + } + ], + "raal roos": [ + { + "instructor_id": "rxr177530", + "overall_grade_rating": 3.4, + "total_grade_count": 33, + "course_ratings": { + "BLAW3301": 3.4 + } + } + ], + "susan brookshire": [ + { + "instructor_id": "sxb170130", + "overall_grade_rating": 4.91, + "total_grade_count": 271, + "course_ratings": { + "MAS6102": 4.91 + } + } + ], + "neil johnson": [ + { + "instructor_id": "nxj121730", + "overall_grade_rating": 4.95, + "total_grade_count": 464, + "course_ratings": { + "MAS6102": 4.95 + } + } + ], + "judith umali": [ + { + "instructor_id": "jumali", + "overall_grade_rating": 5.0, + "total_grade_count": 186, + "course_ratings": { + "MAS6102": 5.0 + } + } + ], + "sherri cook": [ + { + "instructor_id": "stc140430", + "overall_grade_rating": 5.0, + "total_grade_count": 123, + "course_ratings": { + "MAS6102": 5.0 + } + } + ], + "leah nall": [ + { + "instructor_id": "lnall", + "overall_grade_rating": 4.57, + "total_grade_count": 79, + "course_ratings": { + "PSY1100": 4.57 + } + } + ], + "marcos chavez": [ + { + "instructor_id": "mxc061200", + "overall_grade_rating": 4.73, + "total_grade_count": 32, + "course_ratings": { + "PSY1100": 4.73 + } + } + ], + "lindsey boeshans": [ + { + "instructor_id": "leb140130", + "overall_grade_rating": 4.43, + "total_grade_count": 27, + "course_ratings": { + "PSY1100": 4.43 + } + } + ], + "kerry flores": [ + { + "instructor_id": "kmd023000", + "overall_grade_rating": 4.33, + "total_grade_count": 39, + "course_ratings": { + "PSY1100": 4.33 + } + } + ], + "chad meacham": [ + { + "instructor_id": "cxm173730", + "overall_grade_rating": 3.64, + "total_grade_count": 11, + "course_ratings": { + "CRIM2308": 3.64 + } + } + ], + "moon kim": [ + { + "instructor_id": "mjk034000", + "overall_grade_rating": 4.49, + "total_grade_count": 70, + "course_ratings": { + "MSEN6340": 4.22, + "MSEN6362": 4.77 + } + } + ], + "amy walker": [ + { + "instructor_id": "axw092000", + "overall_grade_rating": 4.46, + "total_grade_count": 219, + "course_ratings": { + "MSEN5361": 3.77, + "ECS1100": 4.74, + "MSEN5360": 3.79 + } + } + ], + "wayne gearey": [ + { + "instructor_id": "wxg130930", + "overall_grade_rating": 4.69, + "total_grade_count": 19, + "course_ratings": { + "GISC6382": 4.95, + "GISC4385": 4.51 + } + } + ], + "giraud polite": [ + { + "instructor_id": "gpolite", + "overall_grade_rating": 4.48, + "total_grade_count": 38, + "course_ratings": { + "ARTS3372": 4.48 + } + } + ], + "john pomara": [ + { + "instructor_id": "pomara", + "overall_grade_rating": 4.95, + "total_grade_count": 249, + "course_ratings": { + "ARTS4368": 4.93, + "HUAS6339": 5.0, + "VPAS6339": 4.95 + } + } + ], + "kristan foust": [ + { + "instructor_id": "kef170230", + "overall_grade_rating": 3.21, + "total_grade_count": 87, + "course_ratings": { + "HIST3387": 2.29, + "HIST1302": 3.96 + } + } + ], + "emily akins": [ + { + "instructor_id": "exa160630", + "overall_grade_rating": 3.65, + "total_grade_count": 12, + "course_ratings": { + "ARHM1100": 3.65 + } + } + ], + "haemin park": [ + { + "instructor_id": "hxp174230", + "overall_grade_rating": 3.86, + "total_grade_count": 223, + "course_ratings": { + "BPS7307": 4.54, + "ENTP6378": 4.57, + "ENTP6390": 4.17, + "ENTP3360": 3.51, + "FIN3360": 3.74 + } + } + ], + "edward hooton": [ + { + "instructor_id": "exh121730", + "overall_grade_rating": 2.42, + "total_grade_count": 46, + "course_ratings": { + "MATH1325": 2.42 + } + } + ], + "austin higgins": [ + { + "instructor_id": "amh099020", + "overall_grade_rating": 5.0, + "total_grade_count": 26, + "course_ratings": { + "FIN4390": 5.0 + } + } + ], + "dale macdonald": [ + { + "instructor_id": "dwm160130", + "overall_grade_rating": 4.62, + "total_grade_count": 38, + "course_ratings": { + "ATCM6304": 5.0, + "ATCM4340": 4.51 + } + } + ], + "roger malina": [ + { + "instructor_id": "rxm116130", + "overall_grade_rating": 4.29, + "total_grade_count": 46, + "course_ratings": { + "ATCM6325": 4.48, + "ARHM6310": 3.99, + "ATCM6327": 4.58 + } + } + ], + "lindsey joyce": [ + { + "instructor_id": "lxj132030", + "overall_grade_rating": 4.45, + "total_grade_count": 199, + "course_ratings": { + "ATCM3301": 4.52, + "ATCM3366": 4.04 + } + } + ], + "kevin taylor": [ + { + "instructor_id": "krt052000", + "overall_grade_rating": 1.31, + "total_grade_count": 20, + "course_ratings": { + "ATCM3306": 1.31 + } + } + ], + "chelsea maxwell": [ + { + "instructor_id": "clg093020", + "overall_grade_rating": 3.92, + "total_grade_count": 17, + "course_ratings": { + "ATCM3337": 3.92 + } + } + ], + "michael stephens": [ + { + "instructor_id": "mhs083000", + "overall_grade_rating": 4.76, + "total_grade_count": 46, + "course_ratings": { + "ATCM3350": 4.76 + } + } + ], + "cenk koknar": [ + { + "instructor_id": "cxk151530", + "overall_grade_rating": 2.68, + "total_grade_count": 44, + "course_ratings": { + "ATCM3368": 2.68 + } + } + ], + "midori kitagawa": [ + { + "instructor_id": "mxk047100", + "overall_grade_rating": 4.01, + "total_grade_count": 78, + "course_ratings": { + "ATCM4310": 4.55, + "ATCM3310": 3.47 + } + } + ], + "jacob naasz": [ + { + "instructor_id": "jcn042000", + "overall_grade_rating": 4.29, + "total_grade_count": 17, + "course_ratings": { + "ATCM4365": 4.29 + } + } + ], + "ann majewicz fey": [ + { + "instructor_id": "axm141231", + "overall_grade_rating": 3.81, + "total_grade_count": 31, + "course_ratings": { + "MECH2340": 3.81 + } + } + ], + "joshua friedman": [ + { + "instructor_id": "jxf172130", + "overall_grade_rating": 4.28, + "total_grade_count": 75, + "course_ratings": { + "MKT6352": 4.28 + } + } + ], + "natalie roetzel": [ + { + "instructor_id": "njr120030", + "overall_grade_rating": 4.87, + "total_grade_count": 85, + "course_ratings": { + "PSCI4396": 4.87 + } + } + ], + "michael cave": [ + { + "instructor_id": "mxc176530", + "overall_grade_rating": 4.72, + "total_grade_count": 83, + "course_ratings": { + "BUAN6340": 4.72 + } + } + ], + "betty stapp": [ + { + "instructor_id": "bcs102020", + "overall_grade_rating": 4.9, + "total_grade_count": 26, + "course_ratings": { + "BIS1100": 4.9 + } + } + ], + "kenneth hoyt": [ + { + "instructor_id": "klh150530", + "overall_grade_rating": 4.54, + "total_grade_count": 61, + "course_ratings": { + "BMEN6365": 4.63, + "BMEN4370": 4.27 + } + } + ], + "nathan lindsey": [ + { + "instructor_id": "nxl170530", + "overall_grade_rating": 4.06, + "total_grade_count": 93, + "course_ratings": { + "ATCM3388": 4.06 + } + } + ], + "halimur khan": [ + { + "instructor_id": "hxk174130", + "overall_grade_rating": 4.06, + "total_grade_count": 60, + "course_ratings": { + "ARHM2344": 4.06 + } + } + ], + "michael mazurek": [ + { + "instructor_id": "mrm141130", + "overall_grade_rating": 4.01, + "total_grade_count": 57, + "course_ratings": { + "ARTS1316": 4.01 + } + } + ], + "aarthi reddy": [ + { + "instructor_id": "axr173631", + "overall_grade_rating": 4.7, + "total_grade_count": 62, + "course_ratings": { + "BUAN6357": 4.67, + "MIS6357": 4.86 + } + } + ], + "jennifer tidwell": [ + { + "instructor_id": "jkt094020", + "overall_grade_rating": 4.39, + "total_grade_count": 15, + "course_ratings": { + "ATCM3365": 4.39 + } + } + ], + "dean terry": [ + { + "instructor_id": "dxt023000", + "overall_grade_rating": 4.93, + "total_grade_count": 207, + "course_ratings": { + "ATCM6322": 4.98, + "ATCM3345": 4.83, + "ATCM4364": 5.0, + "ATCM4345": 5.0, + "ATCM4397": 4.87, + "ATCM3395": 4.98, + "ATCM6301": 4.88, + "ATCM6001": 5.0, + "ATCM6326": 5.0 + } + } + ], + "brad ford": [ + { + "instructor_id": "bxf170730", + "overall_grade_rating": 4.05, + "total_grade_count": 113, + "course_ratings": { + "BUAN6346": 4.1, + "MIS6346": 4.0 + } + } + ], + "valerie brunell": [ + { + "instructor_id": "vab061000", + "overall_grade_rating": 4.74, + "total_grade_count": 98, + "course_ratings": { + "HONS3199": 4.79, + "HONS3109": 4.68 + } + } + ], + "colleen lin": [ + { + "instructor_id": "cbl061000", + "overall_grade_rating": 4.13, + "total_grade_count": 148, + "course_ratings": { + "ATCM3395": 4.06, + "ATCM3337": 4.19 + } + } + ], + "yingyuan zhang": [ + { + "instructor_id": "yxz094020", + "overall_grade_rating": 2.98, + "total_grade_count": 13, + "course_ratings": { + "EPPS2302": 2.98 + } + } + ], + "diana easton": [ + { + "instructor_id": "dse150030", + "overall_grade_rating": 4.43, + "total_grade_count": 46, + "course_ratings": { + "BMEN6331": 4.43 + } + } + ], + "mihai nadin": [ + { + "instructor_id": "mxn044000", + "overall_grade_rating": 4.8, + "total_grade_count": 65, + "course_ratings": { + "ATCM6395": 4.46, + "ATCM6000": 4.9, + "ATCM6301": 4.86 + } + } + ], + "maureen johnson": [ + { + "instructor_id": "mxj174130", + "overall_grade_rating": 4.02, + "total_grade_count": 82, + "course_ratings": { + "ATCM3301": 3.88, + "ATCM2320": 4.39 + } + } + ], + "gurvinder sandhu": [ + { + "instructor_id": "gxs162530", + "overall_grade_rating": 4.12, + "total_grade_count": 67, + "course_ratings": { + "ACCT2301": 4.07, + "ACCT3341": 4.29 + } + } + ], + "kathryn overzet": [ + { + "instructor_id": "kmo053000", + "overall_grade_rating": 4.8, + "total_grade_count": 57, + "course_ratings": { + "ACN6373": 4.8 + } + } + ], + "michael thomas": [ + { + "instructor_id": "mxt190021", + "overall_grade_rating": 3.57, + "total_grade_count": 74, + "course_ratings": { + "AHST4342": 3.57 + } + } + ], + "audrey travis": [ + { + "instructor_id": "axt190092", + "overall_grade_rating": 4.14, + "total_grade_count": 105, + "course_ratings": { + "ARTS1316": 4.04, + "ARTS4366": 4.61 + } + } + ], + "rebecca booker": [ + { + "instructor_id": "pdb041000", + "overall_grade_rating": 3.66, + "total_grade_count": 44, + "course_ratings": { + "ARTS1316": 3.66 + } + } + ], + "alejandra gutierrez": [ + { + "instructor_id": "axg173831", + "overall_grade_rating": 4.26, + "total_grade_count": 198, + "course_ratings": { + "ATCM1100": 4.11, + "EPPS1110": 4.54 + } + } + ], + "victor enam": [ + { + "instructor_id": "vje170000", + "overall_grade_rating": 4.38, + "total_grade_count": 60, + "course_ratings": { + "ATCM2301": 4.38 + } + } + ], + "maedeh asgharpour": [ + { + "instructor_id": "mxa180053", + "overall_grade_rating": 4.06, + "total_grade_count": 52, + "course_ratings": { + "ATCM2302": 4.06 + } + } + ], + "carlin flores": [ + { + "instructor_id": "cef140030", + "overall_grade_rating": 3.57, + "total_grade_count": 54, + "course_ratings": { + "ATCM2302": 3.57 + } + } + ], + "murilo paiva homsi": [ + { + "instructor_id": "mxp166130", + "overall_grade_rating": 3.94, + "total_grade_count": 111, + "course_ratings": { + "ATCM2302": 3.74, + "ATCM2350": 4.5 + } + } + ], + "scott griffiths": [ + { + "instructor_id": "skg180000", + "overall_grade_rating": 4.79, + "total_grade_count": 156, + "course_ratings": { + "AUD7253": 4.75, + "AUD7351": 4.89, + "AUD7240": 4.76 + } + } + ], + "alan knox": [ + { + "instructor_id": "alan1", + "overall_grade_rating": 5.0, + "total_grade_count": 15, + "course_ratings": { + "BA4101": 5.0 + } + } + ], + "anna hamilton": [ + { + "instructor_id": "alh200000", + "overall_grade_rating": 4.52, + "total_grade_count": 164, + "course_ratings": { + "BBSU1100": 4.52 + } + } + ], + "robert balusek": [ + { + "instructor_id": "rsb190004", + "overall_grade_rating": 4.58, + "total_grade_count": 49, + "course_ratings": { + "BBSU1100": 4.58 + } + } + ], + "leslie grimmer": [ + { + "instructor_id": "lag190011", + "overall_grade_rating": 4.63, + "total_grade_count": 288, + "course_ratings": { + "BBSU1100": 4.63 + } + } + ], + "kathleen ritchie": [ + { + "instructor_id": "kxr180017", + "overall_grade_rating": 4.53, + "total_grade_count": 79, + "course_ratings": { + "BBSU1100": 4.53 + } + } + ], + "ryan brown": [ + { + "instructor_id": "rxb200033", + "overall_grade_rating": 4.09, + "total_grade_count": 114, + "course_ratings": { + "BCOM3100": 3.86, + "BCOM3200": 4.4 + } + } + ], + "hyun jung kim": [ + { + "instructor_id": "hxk190024", + "overall_grade_rating": 3.99, + "total_grade_count": 117, + "course_ratings": { + "BCOM3310": 3.99 + } + } + ], + "jessica guire": [ + { + "instructor_id": "jxg200030", + "overall_grade_rating": 4.2, + "total_grade_count": 85, + "course_ratings": { + "BCOM3310": 4.2 + } + } + ], + "brian hemsworth": [ + { + "instructor_id": "bxh200005", + "overall_grade_rating": 4.6, + "total_grade_count": 50, + "course_ratings": { + "BCOM4350": 4.6 + } + } + ], + "jyoti misra": [ + { + "instructor_id": "jrm190003", + "overall_grade_rating": 4.2, + "total_grade_count": 96, + "course_ratings": { + "BIOL3102": 4.2 + } + } + ], + "alonso morcos gonzalez": [ + { + "instructor_id": "afg150230", + "overall_grade_rating": 4.15, + "total_grade_count": 148, + "course_ratings": { + "BIOL3312": 3.99, + "BIOL5312": 4.32, + "BIOL5385": 4.47 + } + } + ], + "zhuoru wu": [ + { + "instructor_id": "zxw190014", + "overall_grade_rating": 3.63, + "total_grade_count": 1390, + "course_ratings": { + "BIOL3357": 4.55, + "BIOL3370": 3.92, + "BIOL3455": 3.44, + "BIOL2112": 3.49, + "BIOL2312": 3.49 + } + } + ], + "caitlin maynard": [ + { + "instructor_id": "cmb170830", + "overall_grade_rating": 3.9, + "total_grade_count": 462, + "course_ratings": { + "BIOL3380": 3.82, + "BIOL4308": 4.11, + "BIOL4380": 3.91, + "BIOL3203": 4.39 + } + } + ], + "li liu": [ + { + "instructor_id": "lliu", + "overall_grade_rating": 4.4, + "total_grade_count": 34, + "course_ratings": { + "BIOL5375": 4.4 + } + } + ], + "girgis obaid": [ + { + "instructor_id": "gxo190002", + "overall_grade_rating": 4.36, + "total_grade_count": 162, + "course_ratings": { + "BMEN4360": 4.33, + "BMEN6345": 4.92 + } + } + ], + "baowei fei": [ + { + "instructor_id": "bxf180002", + "overall_grade_rating": 4.51, + "total_grade_count": 43, + "course_ratings": { + "BMEN4370": 4.33, + "BMEN6367": 4.63 + } + } + ], + "fang bian": [ + { + "instructor_id": "fxb180003", + "overall_grade_rating": 4.65, + "total_grade_count": 202, + "course_ratings": { + "BMEN6373": 4.71, + "BMEN7340": 4.57 + } + } + ], + "tongil kim": [ + { + "instructor_id": "txk200012", + "overall_grade_rating": 4.55, + "total_grade_count": 437, + "course_ratings": { + "BUAN6337": 4.55, + "MKT6337": 4.57 + } + } + ], + "kahawatte gedara gunawardhana": [ + { + "instructor_id": "kxg141730", + "overall_grade_rating": 4.23, + "total_grade_count": 153, + "course_ratings": { + "CHEM1111": 4.25, + "CHEM1112": 3.63, + "CHEM2125": 4.78, + "CHEM2123": 4.47 + } + } + ], + "neelam jaggi": [ + { + "instructor_id": "nxj190013", + "overall_grade_rating": 4.27, + "total_grade_count": 336, + "course_ratings": { + "CHEM2123": 4.34, + "CHEM2125": 4.28, + "CHEM1111": 4.18 + } + } + ], + "john ferraris": [ + { + "instructor_id": "ferraris", + "overall_grade_rating": 3.81, + "total_grade_count": 78, + "course_ratings": { + "CHEM3471": 3.77, + "CHEM5334": 4.39, + "CHEM4335": 3.66 + } + } + ], + "eric welin": [ + { + "instructor_id": "erw190002", + "overall_grade_rating": 4.28, + "total_grade_count": 29, + "course_ratings": { + "CHEM5331": 4.28 + } + } + ], + "adrianna shembel": [ + { + "instructor_id": "acs200005", + "overall_grade_rating": 4.73, + "total_grade_count": 349, + "course_ratings": { + "COMD6221": 4.75, + "SPAU3344": 4.13 + } + } + ], + "judith rich": [ + { + "instructor_id": "jbm014600", + "overall_grade_rating": 4.93, + "total_grade_count": 527, + "course_ratings": { + "COMD6308": 4.95, + "COMD7301": 4.98, + "SPAU3301": 4.46 + } + } + ], + "michelle nash": [ + { + "instructor_id": "man200000", + "overall_grade_rating": 3.88, + "total_grade_count": 101, + "course_ratings": { + "COMM1311": 3.88 + } + } + ], + "varaidzo nyamandi": [ + { + "instructor_id": "vxn200023", + "overall_grade_rating": 4.6, + "total_grade_count": 91, + "course_ratings": { + "COMM1311": 4.6 + } + } + ], + "haneul yim": [ + { + "instructor_id": "hxy170530", + "overall_grade_rating": 4.02, + "total_grade_count": 131, + "course_ratings": { + "CRIM4311": 3.85, + "CRIM1307": 4.16, + "CRIM3301": 3.88 + } + } + ], + "erick skorupa parolin": [ + { + "instructor_id": "exs172930", + "overall_grade_rating": 3.86, + "total_grade_count": 176, + "course_ratings": { + "CS4371": 4.22, + "CS4375": 3.49 + } + } + ], + "michele hanlon": [ + { + "instructor_id": "mhanlon", + "overall_grade_rating": 4.51, + "total_grade_count": 54, + "course_ratings": { + "DANC3340": 4.02, + "DANC2321": 4.68 + } + } + ], + "jinglun zhang": [ + { + "instructor_id": "jxz174930", + "overall_grade_rating": 4.55, + "total_grade_count": 126, + "course_ratings": { + "ECON2302": 4.55 + } + } + ], + "luis fernando colunga ramos": [ + { + "instructor_id": "lfc160030", + "overall_grade_rating": 4.35, + "total_grade_count": 68, + "course_ratings": { + "ECON3311": 4.35 + } + } + ], + "licheng zhang": [ + { + "instructor_id": "lxz172030", + "overall_grade_rating": 4.07, + "total_grade_count": 132, + "course_ratings": { + "ECON3330": 4.07 + } + } + ], + "stacey moran": [ + { + "instructor_id": "sxm180115", + "overall_grade_rating": 4.68, + "total_grade_count": 241, + "course_ratings": { + "ECS1100": 4.68 + } + } + ], + "tanisha edwards": [ + { + "instructor_id": "txe120530", + "overall_grade_rating": 4.18, + "total_grade_count": 113, + "course_ratings": { + "ECS1100": 4.18 + } + } + ], + "whitney sharman": [ + { + "instructor_id": "wxs180011", + "overall_grade_rating": 4.43, + "total_grade_count": 171, + "course_ratings": { + "ECS1100": 4.6, + "EPPS1110": 4.28 + } + } + ], + "khaila flores": [ + { + "instructor_id": "kxf190005", + "overall_grade_rating": 4.72, + "total_grade_count": 82, + "course_ratings": { + "ECS1100": 4.72 + } + } + ], + "kaysi hendley": [ + { + "instructor_id": "kxh190012", + "overall_grade_rating": 4.15, + "total_grade_count": 115, + "course_ratings": { + "ECS1100": 4.15 + } + } + ], + "alexandria anderson": [ + { + "instructor_id": "ana120130", + "overall_grade_rating": 4.53, + "total_grade_count": 100, + "course_ratings": { + "ECS1100": 4.53 + } + } + ], + "marissa tornakian": [ + { + "instructor_id": "mat190002", + "overall_grade_rating": 4.22, + "total_grade_count": 80, + "course_ratings": { + "ECS1100": 4.22 + } + } + ], + "nasreen hasan": [ + { + "instructor_id": "nxh080100", + "overall_grade_rating": 4.29, + "total_grade_count": 200, + "course_ratings": { + "ECS1100": 4.35, + "AHTC1100": 4.14 + } + } + ], + "emelia ahmed": [ + { + "instructor_id": "eea190000", + "overall_grade_rating": 4.26, + "total_grade_count": 30, + "course_ratings": { + "ED4353": 4.26 + } + } + ], + "ramy mahmoud": [ + { + "instructor_id": "mahmoudr", + "overall_grade_rating": 4.61, + "total_grade_count": 120, + "course_ratings": { + "ED4372": 4.61 + } + } + ], + "rhonda christensen": [ + { + "instructor_id": "rxc180023", + "overall_grade_rating": 4.41, + "total_grade_count": 94, + "course_ratings": { + "ED4372": 4.41 + } + } + ], + "paul peck": [ + { + "instructor_id": "psp012100", + "overall_grade_rating": 4.22, + "total_grade_count": 70, + "course_ratings": { + "ENTP3320": 4.3, + "ENTP4320": 4.18 + } + } + ], + "yongjun park": [ + { + "instructor_id": "yxp171730", + "overall_grade_rating": 3.9, + "total_grade_count": 39, + "course_ratings": { + "EPPS2301": 3.9 + } + } + ], + "iftekhairul islam": [ + { + "instructor_id": "ixi102020", + "overall_grade_rating": 3.77, + "total_grade_count": 36, + "course_ratings": { + "EPPS2302": 3.77 + } + } + ], + "jiadi xu": [ + { + "instructor_id": "jxx170330", + "overall_grade_rating": 3.88, + "total_grade_count": 40, + "course_ratings": { + "FIN3320": 3.88 + } + } + ], + "nicholas mueller": [ + { + "instructor_id": "njm043000", + "overall_grade_rating": 3.79, + "total_grade_count": 64, + "course_ratings": { + "GEOS2306": 3.78, + "GEOS1303": 3.86 + } + } + ], + "hejun zhu": [ + { + "instructor_id": "hxz154830", + "overall_grade_rating": 4.63, + "total_grade_count": 30, + "course_ratings": { + "GEOS4320": 4.63 + } + } + ], + "yogita karale": [ + { + "instructor_id": "yyk160030", + "overall_grade_rating": 3.63, + "total_grade_count": 18, + "course_ratings": { + "GISC4381": 3.63 + } + } + ], + "jasmine latiolais": [ + { + "instructor_id": "jrl170030", + "overall_grade_rating": 4.61, + "total_grade_count": 48, + "course_ratings": { + "GOVT2305": 4.61 + } + } + ], + "margaret owen": [ + { + "instructor_id": "mowen", + "overall_grade_rating": 4.63, + "total_grade_count": 38, + "course_ratings": { + "HCS6350": 4.48, + "PSYC6350": 4.9 + } + } + ], + "pedro jose gonzalez corona": [ + { + "instructor_id": "pjg130230", + "overall_grade_rating": 4.27, + "total_grade_count": 82, + "course_ratings": { + "HIST2350": 4.28, + "HIST4359": 4.19, + "HIST3306": 4.39 + } + } + ], + "jacqueline chao": [ + { + "instructor_id": "jjc161030", + "overall_grade_rating": 4.55, + "total_grade_count": 33, + "course_ratings": { + "HONS3199": 4.43, + "AHST2331": 4.6 + } + } + ], + "caryn voskuil": [ + { + "instructor_id": "cmv150230", + "overall_grade_rating": 4.76, + "total_grade_count": 14, + "course_ratings": { + "HONS3199": 4.76 + } + } + ], + "zhiang lin": [ + { + "instructor_id": "zlin", + "overall_grade_rating": 4.15, + "total_grade_count": 459, + "course_ratings": { + "IMS3310": 3.63, + "BPS6310": 4.52, + "OB7312": 4.72, + "ENTP6310": 4.63 + } + } + ], + "imran nasir": [ + { + "instructor_id": "ixn093020", + "overall_grade_rating": 4.74, + "total_grade_count": 137, + "course_ratings": { + "ITSS4352": 4.74 + } + } + ], + "jiajun bracewell": [ + { + "instructor_id": "jxb120630", + "overall_grade_rating": 4.86, + "total_grade_count": 29, + "course_ratings": { + "JAPN1311": 4.86 + } + } + ], + "royce jones": [ + { + "instructor_id": "rxj111030", + "overall_grade_rating": 4.97, + "total_grade_count": 138, + "course_ratings": { + "MAS6102": 4.97 + } + } + ], + "fiona hunter": [ + { + "instructor_id": "fxh140630", + "overall_grade_rating": 4.96, + "total_grade_count": 116, + "course_ratings": { + "MAS6102": 4.96 + } + } + ], + "justin koeln": [ + { + "instructor_id": "jpk170130", + "overall_grade_rating": 4.23, + "total_grade_count": 726, + "course_ratings": { + "MECH4110": 4.23, + "MECH3340": 4.17, + "MECH6326": 4.38 + } + } + ], + "keyvan kasaian": [ + { + "instructor_id": "kxk153830", + "overall_grade_rating": 4.33, + "total_grade_count": 276, + "course_ratings": { + "MKT3300": 4.33 + } + } + ], + "jennifer meedel": [ + { + "instructor_id": "jxm168030", + "overall_grade_rating": 4.44, + "total_grade_count": 301, + "course_ratings": { + "NATS1101": 4.44 + } + } + ], + "linda elgin": [ + { + "instructor_id": "lxe120930", + "overall_grade_rating": 4.7, + "total_grade_count": 307, + "course_ratings": { + "NATS1101": 4.7 + } + } + ], + "donald treter": [ + { + "instructor_id": "drt150530", + "overall_grade_rating": 4.19, + "total_grade_count": 257, + "course_ratings": { + "NATS1101": 4.19 + } + } + ], + "victoria hill": [ + { + "instructor_id": "vxh190004", + "overall_grade_rating": 4.74, + "total_grade_count": 80, + "course_ratings": { + "NATS1101": 4.74 + } + } + ], + "jacob biedebach": [ + { + "instructor_id": "jxb190024", + "overall_grade_rating": 4.62, + "total_grade_count": 76, + "course_ratings": { + "NATS1101": 4.62 + } + } + ], + "linda cook": [ + { + "instructor_id": "lac043000", + "overall_grade_rating": 4.09, + "total_grade_count": 70, + "course_ratings": { + "NATS3341": 4.09 + } + } + ], + "benedict kolber": [ + { + "instructor_id": "bjk200001", + "overall_grade_rating": 4.41, + "total_grade_count": 92, + "course_ratings": { + "NSC4358": 3.63, + "HCS7121": 5.0, + "ACN6372": 4.5, + "HCS6315": 4.82 + } + } + ], + "suresh sethi": [ + { + "instructor_id": "sethi", + "overall_grade_rating": 5.0, + "total_grade_count": 108, + "course_ratings": { + "OPRE7051": 5.0, + "OPRE7351": 5.0 + } + } + ], + "shahrin upoma": [ + { + "instructor_id": "ssu170230", + "overall_grade_rating": 4.1, + "total_grade_count": 73, + "course_ratings": { + "PA3379": 4.2, + "SOC3379": 4.23, + "PA4355": 3.95 + } + } + ], + "katherine davies": [ + { + "instructor_id": "kxd180013", + "overall_grade_rating": 3.67, + "total_grade_count": 375, + "course_ratings": { + "PHIL3357": 4.39, + "PHIL7332": 4.62, + "PHIL1306": 3.34, + "HONS3199": 4.41, + "PHIL4333": 4.13, + "PHIL6325": 4.62, + "PHIL4322": 3.56 + } + } + ], + "hans klein": [ + { + "instructor_id": "hsk140230", + "overall_grade_rating": 4.79, + "total_grade_count": 69, + "course_ratings": { + "PSY3333": 4.79 + } + } + ], + "sarah snyder": [ + { + "instructor_id": "sxs162031", + "overall_grade_rating": 3.3, + "total_grade_count": 50, + "course_ratings": { + "RHET1302": 3.3 + } + } + ], + "patrick laskey": [ + { + "instructor_id": "pjl190000", + "overall_grade_rating": 3.57, + "total_grade_count": 127, + "course_ratings": { + "RHET1302": 3.57 + } + } + ], + "maria malouf": [ + { + "instructor_id": "mxm180084", + "overall_grade_rating": 4.4, + "total_grade_count": 64, + "course_ratings": { + "SPAN2312": 4.14, + "SPAN3350": 4.98 + } + } + ], + "samuel reynolds": [ + { + "instructor_id": "ser180002", + "overall_grade_rating": 4.85, + "total_grade_count": 169, + "course_ratings": { + "SYSM6301": 4.87, + "MECH6337": 4.68, + "SYSM6327": 4.93 + } + } + ], + "dongdi gu": [ + { + "instructor_id": "dxg180001", + "overall_grade_rating": 3.74, + "total_grade_count": 119, + "course_ratings": { + "ACCT2301": 3.74 + } + } + ], + "liang hong": [ + { + "instructor_id": "lxh019000", + "overall_grade_rating": 4.61, + "total_grade_count": 93, + "course_ratings": { + "ACTS4307": 4.54, + "ACTS6307": 4.86, + "ACTS4310": 4.68 + } + } + ], + "tara lyon": [ + { + "instructor_id": "tll190000", + "overall_grade_rating": 3.81, + "total_grade_count": 62, + "course_ratings": { + "ARTS2350": 3.81 + } + } + ], + "thomas williams": [ + { + "instructor_id": "tew210002", + "overall_grade_rating": 4.91, + "total_grade_count": 147, + "course_ratings": { + "ARTS3364": 4.98, + "ARTS3383": 4.86, + "ARTS2348": 4.85 + } + } + ], + "jazzmyn roberts": [ + { + "instructor_id": "jcr210003", + "overall_grade_rating": 3.76, + "total_grade_count": 214, + "course_ratings": { + "ATCM1100": 3.83, + "AHTC1100": 3.71 + } + } + ], + "cansu nur simsek": [ + { + "instructor_id": "cxs180044", + "overall_grade_rating": 4.33, + "total_grade_count": 58, + "course_ratings": { + "ATCM2301": 4.33 + } + } + ], + "evan fladager": [ + { + "instructor_id": "ejf140030", + "overall_grade_rating": 4.29, + "total_grade_count": 60, + "course_ratings": { + "ATCM2301": 4.29 + } + } + ], + "emily banditrat": [ + { + "instructor_id": "exb200008", + "overall_grade_rating": 4.45, + "total_grade_count": 59, + "course_ratings": { + "ATCM2301": 4.45 + } + } + ], + "erika jaeggli": [ + { + "instructor_id": "exj220008", + "overall_grade_rating": 4.33, + "total_grade_count": 135, + "course_ratings": { + "ATCM2301": 4.32, + "ARTS3383": 4.39 + } + } + ], + "sara mcclanahan": [ + { + "instructor_id": "sxm180148", + "overall_grade_rating": 4.1, + "total_grade_count": 59, + "course_ratings": { + "ATCM2302": 4.1 + } + } + ], + "dora valkanova": [ + { + "instructor_id": "dxv220021", + "overall_grade_rating": 3.54, + "total_grade_count": 404, + "course_ratings": { + "ATCM2321": 3.91, + "ATCM2322": 3.51, + "ATCM3325": 3.74, + "ATCM3320": 3.2, + "ATCM3321": 3.55, + "ATCM4334": 3.67 + } + } + ], + "mohammed mizanur rashid": [ + { + "instructor_id": "mxr170004", + "overall_grade_rating": 4.26, + "total_grade_count": 62, + "course_ratings": { + "ATCM3301": 4.48, + "ATCM2321": 4.16 + } + } + ], + "atanur andic": [ + { + "instructor_id": "axa180034", + "overall_grade_rating": 4.03, + "total_grade_count": 63, + "course_ratings": { + "ATCM3301": 3.87, + "ATCM3331": 4.22 + } + } + ], + "jeff price": [ + { + "instructor_id": "jxp220037", + "overall_grade_rating": 4.19, + "total_grade_count": 79, + "course_ratings": { + "ATCM3338": 3.74, + "ATCM3367": 4.31, + "ATCM4379": 4.72 + } + } + ], + "cameron irby": [ + { + "instructor_id": "cli170000", + "overall_grade_rating": 4.32, + "total_grade_count": 181, + "course_ratings": { + "ATCM3366": 4.25, + "ANGM3366": 4.39 + } + } + ], + "adam buxkamper": [ + { + "instructor_id": "amb047000", + "overall_grade_rating": 4.42, + "total_grade_count": 148, + "course_ratings": { + "ATCM4310": 4.05, + "ANGM4310": 4.67 + } + } + ], + "kelly jahn": [ + { + "instructor_id": "kxj210014", + "overall_grade_rating": 4.41, + "total_grade_count": 98, + "course_ratings": { + "AUD6305": 4.45, + "SPAU3341": 4.24, + "AUD7220": 4.7 + } + } + ], + "andrea gohmert": [ + { + "instructor_id": "akg170530", + "overall_grade_rating": 4.8, + "total_grade_count": 59, + "course_ratings": { + "AUD7352": 4.92, + "SPAU3341": 4.58 + } + } + ], + "jacob crabtree": [ + { + "instructor_id": "jdc210005", + "overall_grade_rating": 4.24, + "total_grade_count": 134, + "course_ratings": { + "BBSU1100": 4.28, + "AHTC1100": 4.2 + } + } + ], + "rachel berglund": [ + { + "instructor_id": "rxb141930", + "overall_grade_rating": 4.62, + "total_grade_count": 74, + "course_ratings": { + "BBSU1100": 4.62 + } + } + ], + "regina burns": [ + { + "instructor_id": "rxb220073", + "overall_grade_rating": 3.24, + "total_grade_count": 39, + "course_ratings": { + "BCOM4300": 3.24 + } + } + ], + "kevin minchey": [ + { + "instructor_id": "kxm220058", + "overall_grade_rating": 3.98, + "total_grade_count": 144, + "course_ratings": { + "BLAW3301": 3.98 + } + } + ], + "katherine brown": [ + { + "instructor_id": "kgb170130", + "overall_grade_rating": 4.09, + "total_grade_count": 160, + "course_ratings": { + "BMEN3325": 4.0, + "BMEN3350": 4.0, + "BMEN4370": 4.3 + } + } + ], + "you xiang song": [ + { + "instructor_id": "yxs190035", + "overall_grade_rating": 4.63, + "total_grade_count": 125, + "course_ratings": { + "BPS4305": 4.63 + } + } + ], + "shu deng": [ + { + "instructor_id": "sxd170004", + "overall_grade_rating": 4.42, + "total_grade_count": 83, + "course_ratings": { + "BPS4305": 4.42 + } + } + ], + "k srikanth": [ + { + "instructor_id": "kxs018700", + "overall_grade_rating": 4.46, + "total_grade_count": 171, + "course_ratings": { + "BUAN6320": 4.46 + } + } + ], + "velda james": [ + { + "instructor_id": "vxj220020", + "overall_grade_rating": 4.77, + "total_grade_count": 264, + "course_ratings": { + "BUAN6320": 4.86, + "ITSS4300": 4.17, + "MIS6326": 4.96 + } + } + ], + "ahed saleh": [ + { + "instructor_id": "axs220309", + "overall_grade_rating": 4.37, + "total_grade_count": 131, + "course_ratings": { + "BUAN6320": 4.37 + } + } + ], + "vijay koju": [ + { + "instructor_id": "vxk220074", + "overall_grade_rating": 4.45, + "total_grade_count": 277, + "course_ratings": { + "BUAN6356": 4.8, + "BUAN6392": 4.37, + "MIS6392": 4.39, + "BUAN6341": 4.32 + } + } + ], + "rajin koonjbearry": [ + { + "instructor_id": "rkk220002", + "overall_grade_rating": 4.36, + "total_grade_count": 86, + "course_ratings": { + "BUAN6368": 4.51, + "MIS6368": 4.51, + "MIS6382": 4.29 + } + } + ], + "mark tinker": [ + { + "instructor_id": "mtinker", + "overall_grade_rating": 3.85, + "total_grade_count": 155, + "course_ratings": { + "CE3310": 3.17, + "EE3310": 3.77, + "EE4371": 3.72, + "MECH4370": 4.11, + "EE3110": 4.62 + } + } + ], + "lijing ye": [ + { + "instructor_id": "lxy200006", + "overall_grade_rating": 3.82, + "total_grade_count": 68, + "course_ratings": { + "CHIN1312": 3.91, + "CHIN1311": 3.74 + } + } + ], + "lisa goffman": [ + { + "instructor_id": "lag160930", + "overall_grade_rating": 4.57, + "total_grade_count": 62, + "course_ratings": { + "COMD7320": 4.58, + "COMD6308": 4.56 + } + } + ], + "diana rodriguez": [ + { + "instructor_id": "dcr200002", + "overall_grade_rating": 4.27, + "total_grade_count": 189, + "course_ratings": { + "CRIM2306": 4.38, + "CRIM2317": 4.25, + "CRIM3302": 4.14 + } + } + ], + "yeungjeom lee": [ + { + "instructor_id": "yxl210021", + "overall_grade_rating": 4.17, + "total_grade_count": 270, + "course_ratings": { + "CRIM6301": 4.6, + "CRIM3302": 4.0, + "CRIM7315": 4.96 + } + } + ], + "ramana ramachandran": [ + { + "instructor_id": "ramana", + "overall_grade_rating": 2.9, + "total_grade_count": 133, + "course_ratings": { + "CS1336": 3.22, + "CS2336": 2.5 + } + } + ], + "yuanchen bing": [ + { + "instructor_id": "yxb190006", + "overall_grade_rating": 3.4, + "total_grade_count": 151, + "course_ratings": { + "ECON2301": 3.4 + } + } + ], + "yundi lu": [ + { + "instructor_id": "yxl190042", + "overall_grade_rating": 3.96, + "total_grade_count": 287, + "course_ratings": { + "ECON2302": 3.96 + } + } + ], + "nan fu": [ + { + "instructor_id": "nxf190002", + "overall_grade_rating": 3.51, + "total_grade_count": 36, + "course_ratings": { + "ECON3311": 3.51 + } + } + ], + "camilo granados": [ + { + "instructor_id": "cxg220001", + "overall_grade_rating": 3.41, + "total_grade_count": 117, + "course_ratings": { + "ECON4382": 3.36, + "ECON6356": 3.56, + "ECON3311": 3.31, + "ECON5322": 3.75 + } + } + ], + "laura gelles": [ + { + "instructor_id": "lag200004", + "overall_grade_rating": 4.37, + "total_grade_count": 108, + "course_ratings": { + "ECS1100": 4.37 + } + } + ], + "tashala webster": [ + { + "instructor_id": "txw220011", + "overall_grade_rating": 4.51, + "total_grade_count": 119, + "course_ratings": { + "ECS1100": 4.51 + } + } + ], + "kanika thompson": [ + { + "instructor_id": "kxt210043", + "overall_grade_rating": 4.3, + "total_grade_count": 89, + "course_ratings": { + "ECS1100": 4.3 + } + } + ], + "brenda le": [ + { + "instructor_id": "bxl075000", + "overall_grade_rating": 4.37, + "total_grade_count": 77, + "course_ratings": { + "ED3340": 4.37 + } + } + ], + "john adler": [ + { + "instructor_id": "jxa220002", + "overall_grade_rating": 3.88, + "total_grade_count": 58, + "course_ratings": { + "ENTP3301": 3.88 + } + } + ], + "bryan chambers": [ + { + "instructor_id": "bdc160330", + "overall_grade_rating": 4.15, + "total_grade_count": 31, + "course_ratings": { + "ENTP4395": 3.84, + "ENTP4398": 4.07, + "ENTP6360": 4.58 + } + } + ], + "wen si": [ + { + "instructor_id": "wxs190004", + "overall_grade_rating": 3.35, + "total_grade_count": 22, + "course_ratings": { + "EPPS2301": 3.35 + } + } + ], + "seongdeok oh": [ + { + "instructor_id": "sxo210002", + "overall_grade_rating": 4.31, + "total_grade_count": 72, + "course_ratings": { + "EPPS2302": 4.3, + "PA3380": 4.31 + } + } + ], + "amal shafek": [ + { + "instructor_id": "ass106020", + "overall_grade_rating": 4.68, + "total_grade_count": 252, + "course_ratings": { + "FILM1303": 4.68, + "FILM3326": 4.79 + } + } + ], + "hirofumi nishi": [ + { + "instructor_id": "hxn210016", + "overall_grade_rating": 3.69, + "total_grade_count": 796, + "course_ratings": { + "FIN6301": 3.78, + "FIN3390": 3.37 + } + } + ], + "miranda davenport": [ + { + "instructor_id": "mjd140030", + "overall_grade_rating": 3.61, + "total_grade_count": 130, + "course_ratings": { + "GEOG2303": 3.61 + } + } + ], + "lowell waite": [ + { + "instructor_id": "lxw180012", + "overall_grade_rating": 5.0, + "total_grade_count": 56, + "course_ratings": { + "GEOS5305": 5.0, + "GEOS5315": 5.0, + "GEOS5309": 5.0 + } + } + ], + "pinde fu": [ + { + "instructor_id": "pxf160230", + "overall_grade_rating": 3.54, + "total_grade_count": 16, + "course_ratings": { + "GISC4363": 3.54 + } + } + ], + "mohammadreza sardari": [ + { + "instructor_id": "mxs120030", + "overall_grade_rating": 3.91, + "total_grade_count": 26, + "course_ratings": { + "GISC4381": 3.91 + } + } + ], + "ang li": [ + { + "instructor_id": "axl032100", + "overall_grade_rating": 3.49, + "total_grade_count": 49, + "course_ratings": { + "HIST1302": 3.49 + } + } + ], + "natalia lamberova": [ + { + "instructor_id": "nxl210021", + "overall_grade_rating": 3.95, + "total_grade_count": 70, + "course_ratings": { + "IPEC4305": 3.99, + "PSCI4396": 3.94, + "PPPE6342": 3.86 + } + } + ], + "richard edwards": [ + { + "instructor_id": "rxe200003", + "overall_grade_rating": 3.58, + "total_grade_count": 60, + "course_ratings": { + "ITSS3300": 3.58 + } + } + ], + "kai sun": [ + { + "instructor_id": "kxs180088", + "overall_grade_rating": 4.46, + "total_grade_count": 187, + "course_ratings": { + "ITSS3311": 4.46 + } + } + ], + "talukdar asgar": [ + { + "instructor_id": "tsa200000", + "overall_grade_rating": 3.95, + "total_grade_count": 86, + "course_ratings": { + "ITSS3312": 2.84, + "MIS6382": 4.49 + } + } + ], + "mandar samant": [ + { + "instructor_id": "mss190002", + "overall_grade_rating": 4.35, + "total_grade_count": 492, + "course_ratings": { + "ITSS4330": 4.14, + "BUAN6335": 4.4, + "MIS6349": 4.46 + } + } + ], + "leonard evans": [ + { + "instructor_id": "lwe210000", + "overall_grade_rating": 4.31, + "total_grade_count": 107, + "course_ratings": { + "JAPN1312": 4.37, + "JAPN3311": 4.47, + "JAPN1311": 4.14 + } + } + ], + "chan kim": [ + { + "instructor_id": "cxk220025", + "overall_grade_rating": 4.68, + "total_grade_count": 13, + "course_ratings": { + "KORE1312": 4.68 + } + } + ], + "hwaja bang": [ + { + "instructor_id": "hxb220034", + "overall_grade_rating": 3.92, + "total_grade_count": 71, + "course_ratings": { + "KORE2311": 4.66, + "KORE1312": 3.59 + } + } + ], + "maurine ogbaa": [ + { + "instructor_id": "mxo210004", + "overall_grade_rating": 4.55, + "total_grade_count": 111, + "course_ratings": { + "LIT2322": 4.34, + "CRWT3306": 4.48, + "LIT4390": 4.64, + "CRWT4307": 4.92, + "LIT6321": 4.66 + } + } + ], + "abdulaziz almuthaybiri": [ + { + "instructor_id": "axa174232", + "overall_grade_rating": 4.52, + "total_grade_count": 70, + "course_ratings": { + "LIT2331": 4.52 + } + } + ], + "ali razvi": [ + { + "instructor_id": "axr130231", + "overall_grade_rating": 4.86, + "total_grade_count": 487, + "course_ratings": { + "MAS6102": 4.86 + } + } + ], + "vaidhehi balaraman": [ + { + "instructor_id": "vxb093020", + "overall_grade_rating": 4.86, + "total_grade_count": 141, + "course_ratings": { + "MAS6102": 4.86 + } + } + ], + "jon stewart": [ + { + "instructor_id": "jxs220080", + "overall_grade_rating": 4.75, + "total_grade_count": 154, + "course_ratings": { + "MAS6102": 4.75 + } + } + ], + "cassandra wilkerson": [ + { + "instructor_id": "cxw170000", + "overall_grade_rating": 4.84, + "total_grade_count": 658, + "course_ratings": { + "MAS6102": 4.84 + } + } + ], + "keith herl": [ + { + "instructor_id": "kah130330", + "overall_grade_rating": 4.81, + "total_grade_count": 224, + "course_ratings": { + "MAS6102": 4.81 + } + } + ], + "richard buquet": [ + { + "instructor_id": "rlb140930", + "overall_grade_rating": 4.88, + "total_grade_count": 202, + "course_ratings": { + "MAS6102": 4.88 + } + } + ], + "diane holmes": [ + { + "instructor_id": "dxh220014", + "overall_grade_rating": 4.58, + "total_grade_count": 269, + "course_ratings": { + "MAS6102": 4.58 + } + } + ], + "tiffany chen": [ + { + "instructor_id": "txc180006", + "overall_grade_rating": 4.8, + "total_grade_count": 98, + "course_ratings": { + "MAS6102": 4.8 + } + } + ], + "brett webb": [ + { + "instructor_id": "bcw012000", + "overall_grade_rating": 4.87, + "total_grade_count": 250, + "course_ratings": { + "MAS6102": 4.87 + } + } + ], + "ikechi nwabah": [ + { + "instructor_id": "ixn042000", + "overall_grade_rating": 4.93, + "total_grade_count": 141, + "course_ratings": { + "MAS6102": 4.93 + } + } + ], + "matthew babbitt": [ + { + "instructor_id": "mwb180002", + "overall_grade_rating": 2.38, + "total_grade_count": 50, + "course_ratings": { + "MATH1326": 1.93, + "MATH2306": 4.21 + } + } + ], + "yue zhou": [ + { + "instructor_id": "yxz220024", + "overall_grade_rating": 4.22, + "total_grade_count": 182, + "course_ratings": { + "MECH2320": 4.22 + } + } + ], + "wei li": [ + { + "instructor_id": "wxl190014", + "overall_grade_rating": 4.41, + "total_grade_count": 230, + "course_ratings": { + "MECH3381": 4.45, + "MECH2320": 4.17 + } + } + ], + "jesus caraveo frescas": [ + { + "instructor_id": "jxa180015", + "overall_grade_rating": 4.16, + "total_grade_count": 56, + "course_ratings": { + "MECH4360": 4.31, + "BMEN3318": 3.75 + } + } + ], + "shuang cui": [ + { + "instructor_id": "sxc200064", + "overall_grade_rating": 4.44, + "total_grade_count": 59, + "course_ratings": { + "MECH6374": 4.74, + "MECH3320": 4.33 + } + } + ], + "venkat swamy": [ + { + "instructor_id": "vxs220061", + "overall_grade_rating": 4.61, + "total_grade_count": 124, + "course_ratings": { + "MIS6308": 4.61 + } + } + ], + "byron purdy": [ + { + "instructor_id": "bap130130", + "overall_grade_rating": 4.3, + "total_grade_count": 85, + "course_ratings": { + "MIS6308": 4.3 + } + } + ], + "jackson wixom": [ + { + "instructor_id": "jsw220001", + "overall_grade_rating": 3.6, + "total_grade_count": 34, + "course_ratings": { + "MKT3330": 3.6 + } + } + ], + "steven reese": [ + { + "instructor_id": "sxr220125", + "overall_grade_rating": 4.28, + "total_grade_count": 34, + "course_ratings": { + "MKT3330": 4.28 + } + } + ], + "thyagarajan subramanian": [ + { + "instructor_id": "sxt180029", + "overall_grade_rating": 4.58, + "total_grade_count": 21, + "course_ratings": { + "MKT4337": 4.58 + } + } + ], + "cormac toher": [ + { + "instructor_id": "cxt210037", + "overall_grade_rating": 4.08, + "total_grade_count": 55, + "course_ratings": { + "MSEN5310": 4.11, + "CHEM5310": 3.98 + } + } + ], + "robert lapinski": [ + { + "instructor_id": "rml180002", + "overall_grade_rating": 4.72, + "total_grade_count": 437, + "course_ratings": { + "MUSI1306": 4.54, + "MUSI3120": 4.97, + "MUSI4120": 4.94 + } + } + ], + "enric madriguera": [ + { + "instructor_id": "efm011000", + "overall_grade_rating": 4.62, + "total_grade_count": 40, + "course_ratings": { + "MUSI3322": 4.22, + "MUSI4316": 4.84, + "MUSI4116": 5.0 + } + } + ], + "dijana zmiro": [ + { + "instructor_id": "dxz140330", + "overall_grade_rating": 4.89, + "total_grade_count": 149, + "course_ratings": { + "NATS1101": 4.89 + } + } + ], + "jose polio": [ + { + "instructor_id": "jjp210005", + "overall_grade_rating": 4.36, + "total_grade_count": 227, + "course_ratings": { + "NATS1101": 4.36 + } + } + ], + "erica kenney": [ + { + "instructor_id": "exk210007", + "overall_grade_rating": 4.7, + "total_grade_count": 245, + "course_ratings": { + "NATS1101": 4.7 + } + } + ], + "meredith permenter": [ + { + "instructor_id": "mlp210005", + "overall_grade_rating": 4.05, + "total_grade_count": 232, + "course_ratings": { + "NATS1101": 4.05 + } + } + ], + "denise gregory": [ + { + "instructor_id": "dxg200019", + "overall_grade_rating": 4.43, + "total_grade_count": 105, + "course_ratings": { + "NATS3343": 4.48, + "NATS1142": 4.29, + "NATS1143": 4.54 + } + } + ], + "gretchen gabbert": [ + { + "instructor_id": "gabbert", + "overall_grade_rating": 3.22, + "total_grade_count": 78, + "course_ratings": { + "NSC3344": 3.28, + "SPAU3344": 3.19 + } + } + ], + "vanessa shirazi": [ + { + "instructor_id": "vxs210044", + "overall_grade_rating": 4.13, + "total_grade_count": 102, + "course_ratings": { + "NSC4360": 4.05, + "ACN7372": 4.5, + "NSC4361": 4.12 + } + } + ], + "lori mcgraw baker": [ + { + "instructor_id": "lam012200", + "overall_grade_rating": 4.12, + "total_grade_count": 43, + "course_ratings": { + "OBHR4331": 4.12 + } + } + ], + "alain bensoussan": [ + { + "instructor_id": "axb046100", + "overall_grade_rating": 4.46, + "total_grade_count": 55, + "course_ratings": { + "OPRE6335": 4.47, + "SYSM6304": 4.83, + "MATH6335": 4.31 + } + } + ], + "joe vicario": [ + { + "instructor_id": "jav170030", + "overall_grade_rating": 4.73, + "total_grade_count": 28, + "course_ratings": { + "OPRE6382": 4.73 + } + } + ], + "abraham benavides": [ + { + "instructor_id": "axb220062", + "overall_grade_rating": 4.59, + "total_grade_count": 141, + "course_ratings": { + "PA7305": 4.5, + "PA2325": 4.17, + "PA6311": 4.85, + "PA6345": 4.84, + "PA6386": 4.9 + } + } + ], + "justin bensinger": [ + { + "instructor_id": "jfb170000", + "overall_grade_rating": 4.34, + "total_grade_count": 40, + "course_ratings": { + "PHIL1307": 4.34 + } + } + ], + "songyao ren": [ + { + "instructor_id": "sxr210065", + "overall_grade_rating": 4.21, + "total_grade_count": 289, + "course_ratings": { + "PHIL3321": 4.6, + "PHIL6390": 4.92, + "PHIL1306": 3.96, + "PHIL4322": 4.76, + "PHIL4380": 4.62, + "PHIL4323": 4.58, + "PHIL6312": 5.0 + } + } + ], + "lauren pinson": [ + { + "instructor_id": "lxp210009", + "overall_grade_rating": 4.53, + "total_grade_count": 81, + "course_ratings": { + "PPPE6301": 4.55, + "PSCI6319": 4.85, + "PSCI4318": 4.38 + } + } + ], + "paul krawietz": [ + { + "instructor_id": "pxk210042", + "overall_grade_rating": 4.9, + "total_grade_count": 40, + "course_ratings": { + "PSY3100": 4.83, + "NATS5100": 5.0 + } + } + ], + "rifat siddiqui": [ + { + "instructor_id": "rrs210003", + "overall_grade_rating": 3.3, + "total_grade_count": 172, + "course_ratings": { + "RHET1302": 3.3 + } + } + ], + "george morgan": [ + { + "instructor_id": "gdm190002", + "overall_grade_rating": 4.37, + "total_grade_count": 138, + "course_ratings": { + "RHET1302": 4.37 + } + } + ], + "manzar feiz": [ + { + "instructor_id": "mxf220012", + "overall_grade_rating": 3.45, + "total_grade_count": 145, + "course_ratings": { + "RHET1302": 3.44, + "LIT2331": 3.52 + } + } + ], + "kiran sahota": [ + { + "instructor_id": "kbs220000", + "overall_grade_rating": 4.18, + "total_grade_count": 160, + "course_ratings": { + "RHET1302": 3.98, + "CRWT2301": 4.43 + } + } + ], + "sirak asfaw": [ + { + "instructor_id": "sxa154930", + "overall_grade_rating": 4.7, + "total_grade_count": 546, + "course_ratings": { + "SOC1301": 4.71, + "SOC3342": 4.63, + "SOC3325": 4.8, + "SOC2319": 4.75 + } + } + ], + "stephanie fowler": [ + { + "instructor_id": "slr150030", + "overall_grade_rating": 4.42, + "total_grade_count": 149, + "course_ratings": { + "SPAU3341": 4.11, + "COMD7325": 4.76, + "AUD7280": 5.0 + } + } + ], + "lei su": [ + { + "instructor_id": "lxs220031", + "overall_grade_rating": 3.93, + "total_grade_count": 63, + "course_ratings": { + "SPAU4308": 3.93 + } + } + ], + "ramakrishna koganti": [ + { + "instructor_id": "rxk190037", + "overall_grade_rating": 4.8, + "total_grade_count": 166, + "course_ratings": { + "SYSM6326": 4.87, + "OPRE6335": 4.74, + "SYSM6304": 4.88, + "SYSM6325": 4.83, + "SYSM6329": 4.64 + } + } + ], + "berk yayvak": [ + { + "instructor_id": "bxy190007", + "overall_grade_rating": 4.05, + "total_grade_count": 96, + "course_ratings": { + "ACCT2301": 4.05 + } + } + ], + "mark frost": [ + { + "instructor_id": "mdf017100", + "overall_grade_rating": 4.45, + "total_grade_count": 31, + "course_ratings": { + "ACCT6354": 4.45 + } + } + ], + "katelyn sadler": [ + { + "instructor_id": "kes220000", + "overall_grade_rating": 4.14, + "total_grade_count": 32, + "course_ratings": { + "ACN6372": 4.08, + "NSC4358": 4.23 + } + } + ], + "cynthia lara": [ + { + "instructor_id": "cch170030", + "overall_grade_rating": 4.28, + "total_grade_count": 119, + "course_ratings": { + "AHTC1100": 4.28 + } + } + ], + "jack murray": [ + { + "instructor_id": "jam130530", + "overall_grade_rating": 3.98, + "total_grade_count": 137, + "course_ratings": { + "ANGM3366": 4.46, + "ANGM3367": 3.72 + } + } + ], + "maryam takaloubighash": [ + { + "instructor_id": "mxt210063", + "overall_grade_rating": 4.69, + "total_grade_count": 64, + "course_ratings": { + "ARTS1316": 4.69 + } + } + ], + "oluwadare (dare) akinwole": [ + { + "instructor_id": "oxa220001", + "overall_grade_rating": 4.38, + "total_grade_count": 48, + "course_ratings": { + "ARTS2316": 4.38 + } + } + ], + "haoyi song": [ + { + "instructor_id": "hxs210095", + "overall_grade_rating": 4.98, + "total_grade_count": 52, + "course_ratings": { + "ARTS2316": 4.98 + } + } + ], + "suvash gupta": [ + { + "instructor_id": "sxg200028", + "overall_grade_rating": 4.26, + "total_grade_count": 81, + "course_ratings": { + "ATCM2302": 4.26 + } + } + ], + "angelica miriam martinez ochoa": [ + { + "instructor_id": "amm180028", + "overall_grade_rating": 4.11, + "total_grade_count": 191, + "course_ratings": { + "ATCM2330": 3.9, + "FILM1303": 4.46, + "ATCM2300": 3.8 + } + } + ], + "vinayak nair": [ + { + "instructor_id": "vxn160130", + "overall_grade_rating": 4.15, + "total_grade_count": 108, + "course_ratings": { + "ATCM2350": 4.41, + "ATCM3350": 3.42 + } + } + ], + "kevin sweet": [ + { + "instructor_id": "kjs230004", + "overall_grade_rating": 4.63, + "total_grade_count": 80, + "course_ratings": { + "ATCM2350": 4.51, + "ATCM4351": 4.57, + "ATCM6322": 4.74, + "ATCM6377": 5.0 + } + } + ], + "yueh jung lee": [ + { + "instructor_id": "yxl190076", + "overall_grade_rating": 3.86, + "total_grade_count": 51, + "course_ratings": { + "ATCM3301": 3.76, + "ATCM4323": 4.08 + } + } + ], + "samantha welwood": [ + { + "instructor_id": "slg200000", + "overall_grade_rating": 4.25, + "total_grade_count": 49, + "course_ratings": { + "ATCM3301": 3.9, + "ATCM2330": 4.47 + } + } + ], + "jason booker": [ + { + "instructor_id": "jxb220084", + "overall_grade_rating": 3.8, + "total_grade_count": 53, + "course_ratings": { + "ATCM3337": 3.8 + } + } + ], + "mariaa villarreal": [ + { + "instructor_id": "mcc150230", + "overall_grade_rating": 4.63, + "total_grade_count": 70, + "course_ratings": { + "BBSU1100": 4.63 + } + } + ], + "ryan taylor": [ + { + "instructor_id": "rbt230000", + "overall_grade_rating": 4.73, + "total_grade_count": 84, + "course_ratings": { + "BBSU1100": 4.73 + } + } + ], + "corey pierce": [ + { + "instructor_id": "cxf180008", + "overall_grade_rating": 4.75, + "total_grade_count": 158, + "course_ratings": { + "BBSU1100": 4.75 + } + } + ], + "kristina camacho": [ + { + "instructor_id": "ksc042000", + "overall_grade_rating": 4.54, + "total_grade_count": 139, + "course_ratings": { + "BBSU1100": 4.54 + } + } + ], + "robert ortiz": [ + { + "instructor_id": "rro073000", + "overall_grade_rating": 4.5, + "total_grade_count": 77, + "course_ratings": { + "BCOM1300": 4.5 + } + } + ], + "daniel usera": [ + { + "instructor_id": "dxu230002", + "overall_grade_rating": 3.22, + "total_grade_count": 40, + "course_ratings": { + "BCOM4300": 3.22 + } + } + ], + "erica sanchez": [ + { + "instructor_id": "exs220022", + "overall_grade_rating": 4.63, + "total_grade_count": 217, + "course_ratings": { + "BIOL4371": 4.77, + "BIOL3303": 4.51 + } + } + ], + "holly whistler": [ + { + "instructor_id": "hkw220002", + "overall_grade_rating": 3.99, + "total_grade_count": 21, + "course_ratings": { + "BIS2190": 3.99 + } + } + ], + "loreen henry": [ + { + "instructor_id": "lsp014100", + "overall_grade_rating": 4.29, + "total_grade_count": 147, + "course_ratings": { + "BIS2190": 4.48, + "HLTH4380": 3.67 + } + } + ], + "polimyr caesar dave dingal": [ + { + "instructor_id": "ppd210003", + "overall_grade_rating": 4.63, + "total_grade_count": 71, + "course_ratings": { + "BMEN3331": 4.63, + "BMEN6374": 4.63 + } + } + ], + "yongsheng gao": [ + { + "instructor_id": "yxg230018", + "overall_grade_rating": 4.42, + "total_grade_count": 51, + "course_ratings": { + "BMEN3399": 3.99, + "BMEN3315": 4.68 + } + } + ], + "roger hill": [ + { + "instructor_id": "rjh220000", + "overall_grade_rating": 4.95, + "total_grade_count": 55, + "course_ratings": { + "BMEN6337": 4.99, + "BMEN6330": 4.9 + } + } + ], + "joseph pancrazio": [ + { + "instructor_id": "jjp150430", + "overall_grade_rating": 4.42, + "total_grade_count": 28, + "course_ratings": { + "BMEN6371": 4.42 + } + } + ], + "deepa swaminathan": [ + { + "instructor_id": "dxs163030", + "overall_grade_rating": 5.0, + "total_grade_count": 52, + "course_ratings": { + "BPS4395": 5.0 + } + } + ], + "jon segelhorst": [ + { + "instructor_id": "jps210007", + "overall_grade_rating": 4.24, + "total_grade_count": 246, + "course_ratings": { + "BPS4395": 4.24 + } + } + ], + "alexander chudik": [ + { + "instructor_id": "axc180061", + "overall_grade_rating": 4.14, + "total_grade_count": 215, + "course_ratings": { + "BUAN6312": 4.14 + } + } + ], + "waseem shadid": [ + { + "instructor_id": "wgs230000", + "overall_grade_rating": 4.65, + "total_grade_count": 273, + "course_ratings": { + "BUAN6333": 4.64, + "BUAN6346": 4.56, + "MIS6346": 4.56, + "BUAN6390": 4.89 + } + } + ], + "amir zemoodeh": [ + { + "instructor_id": "axz120930", + "overall_grade_rating": 4.75, + "total_grade_count": 203, + "course_ratings": { + "BUAN6341": 4.75 + } + } + ], + "magesh tarala": [ + { + "instructor_id": "mxr013010", + "overall_grade_rating": 4.19, + "total_grade_count": 83, + "course_ratings": { + "BUAN6356": 4.19 + } + } + ], + "kiran tripathi": [ + { + "instructor_id": "kxt190015", + "overall_grade_rating": 4.35, + "total_grade_count": 437, + "course_ratings": { + "CHEM1111": 4.38, + "CHEM1112": 4.31 + } + } + ], + "filippo romiti": [ + { + "instructor_id": "fxr220003", + "overall_grade_rating": 4.97, + "total_grade_count": 465, + "course_ratings": { + "CHEM6100": 5.0, + "CHEM4332": 4.23, + "CHEM5332": 4.58 + } + } + ], + "felicity sale": [ + { + "instructor_id": "ffs013000", + "overall_grade_rating": 5.0, + "total_grade_count": 24, + "course_ratings": { + "COMD6106": 5.0 + } + } + ], + "ryan getty": [ + { + "instructor_id": "rmg075000", + "overall_grade_rating": 4.25, + "total_grade_count": 198, + "course_ratings": { + "CRIM1307": 3.47, + "CRIM3301": 4.39, + "CRIM2313": 3.66, + "CRIM6311": 5.0, + "CRIM6314": 4.97 + } + } + ], + "kerrie ann hull": [ + { + "instructor_id": "kxh210033", + "overall_grade_rating": 4.41, + "total_grade_count": 303, + "course_ratings": { + "CRIM2306": 4.78, + "CRIM1301": 4.45, + "CRIM1307": 4.23 + } + } + ], + "lauren van blarcum": [ + { + "instructor_id": "lnv120030", + "overall_grade_rating": 4.03, + "total_grade_count": 79, + "course_ratings": { + "CRIM4311": 3.78, + "CRIM2316": 4.11, + "CRIM1307": 4.47 + } + } + ], + "hector cantu": [ + { + "instructor_id": "hdc210000", + "overall_grade_rating": 4.92, + "total_grade_count": 15, + "course_ratings": { + "CRWT3355": 4.92 + } + } + ], + "cody hatfield": [ + { + "instructor_id": "cxh124730", + "overall_grade_rating": 4.1, + "total_grade_count": 49, + "course_ratings": { + "CS4348": 4.1 + } + } + ], + "cheryl callon": [ + { + "instructor_id": "cxc230038", + "overall_grade_rating": 4.29, + "total_grade_count": 125, + "course_ratings": { + "DANC1310": 4.23, + "DANC2321": 4.51, + "DANC2334": 4.47 + } + } + ], + "barbara ashmore": [ + { + "instructor_id": "baa067000", + "overall_grade_rating": 4.54, + "total_grade_count": 48, + "course_ratings": { + "ED3339": 4.82, + "ED3342": 4.28 + } + } + ], + "sourav dutta": [ + { + "instructor_id": "sxd230095", + "overall_grade_rating": 3.85, + "total_grade_count": 34, + "course_ratings": { + "EE3310": 3.85 + } + } + ], + "kevin frank": [ + { + "instructor_id": "kcf150330", + "overall_grade_rating": 4.32, + "total_grade_count": 28, + "course_ratings": { + "ENGY6335": 4.49, + "ENGY3302": 4.14 + } + } + ], + "brian hoang": [ + { + "instructor_id": "bqh150030", + "overall_grade_rating": 3.97, + "total_grade_count": 32, + "course_ratings": { + "ENTP3320": 3.97 + } + } + ], + "jon buchwald": [ + { + "instructor_id": "jxb230047", + "overall_grade_rating": 3.3, + "total_grade_count": 39, + "course_ratings": { + "ENTP4330": 3.3 + } + } + ], + "dohyo jeong": [ + { + "instructor_id": "dxj190017", + "overall_grade_rating": 4.2, + "total_grade_count": 11, + "course_ratings": { + "EPPS2302": 4.2 + } + } + ], + "muhammad rahman": [ + { + "instructor_id": "mtr018000", + "overall_grade_rating": 4.04, + "total_grade_count": 360, + "course_ratings": { + "EPPS6313": 4.26, + "GEOG2303": 3.89, + "GISC2305": 4.34, + "EPPS2307": 2.92, + "GEOG3331": 3.66, + "GEOS2307": 4.13, + "GISC2307": 3.99, + "GISC4384": 4.55, + "IPEC4384": 4.58, + "GEOG3359": 4.28, + "GEOG3372": 4.34, + "GISC6381": 3.38 + } + } + ], + "daniel lowrance": [ + { + "instructor_id": "dsl230000", + "overall_grade_rating": 3.51, + "total_grade_count": 65, + "course_ratings": { + "FIN3305": 3.58, + "REAL3305": 3.19 + } + } + ], + "zheng liu": [ + { + "instructor_id": "zxl190027", + "overall_grade_rating": 3.72, + "total_grade_count": 58, + "course_ratings": { + "FIN3320": 3.72 + } + } + ], + "abdurrahman kurucak": [ + { + "instructor_id": "axk179330", + "overall_grade_rating": 3.29, + "total_grade_count": 106, + "course_ratings": { + "FIN3320": 3.29 + } + } + ], + "david lumley": [ + { + "instructor_id": "del170130", + "overall_grade_rating": 4.6, + "total_grade_count": 24, + "course_ratings": { + "GEOS5387": 4.6 + } + } + ], + "stacie warren": [ + { + "instructor_id": "sxw220017", + "overall_grade_rating": 4.75, + "total_grade_count": 55, + "course_ratings": { + "HCS7355": 4.75 + } + } + ], + "angie simmons": [ + { + "instructor_id": "axr048100", + "overall_grade_rating": 3.41, + "total_grade_count": 70, + "course_ratings": { + "HIST2370": 3.41 + } + } + ], + "donal skinner": [ + { + "instructor_id": "dcs220007", + "overall_grade_rating": 4.81, + "total_grade_count": 59, + "course_ratings": { + "HONS3199": 4.63, + "HONS3122": 4.99 + } + } + ], + "wendi kavanaugh": [ + { + "instructor_id": "wlk010100", + "overall_grade_rating": 4.67, + "total_grade_count": 14, + "course_ratings": { + "HONS3199": 4.67 + } + } + ], + "torrie cropps": [ + { + "instructor_id": "txc210023", + "overall_grade_rating": 4.08, + "total_grade_count": 48, + "course_ratings": { + "ISIS3334": 4.1, + "AMS4379": 4.0 + } + } + ], + "zehan zhao": [ + { + "instructor_id": "zxz170017", + "overall_grade_rating": 4.51, + "total_grade_count": 108, + "course_ratings": { + "ITSS3312": 4.51 + } + } + ], + "yuki tamakoshi": [ + { + "instructor_id": "yxt230017", + "overall_grade_rating": 4.24, + "total_grade_count": 74, + "course_ratings": { + "JAPN1311": 4.05, + "JAPN1312": 4.78 + } + } + ], + "jajoo yoon": [ + { + "instructor_id": "jxy230015", + "overall_grade_rating": 4.68, + "total_grade_count": 29, + "course_ratings": { + "KORE2311": 4.63, + "KORE2312": 4.77 + } + } + ], + "brenda siri": [ + { + "instructor_id": "bks230001", + "overall_grade_rating": 4.89, + "total_grade_count": 257, + "course_ratings": { + "MAS6102": 4.89 + } + } + ], + "ariana tajahmadi": [ + { + "instructor_id": "att161030", + "overall_grade_rating": 4.83, + "total_grade_count": 113, + "course_ratings": { + "MAS6102": 4.83 + } + } + ], + "burcak aydin": [ + { + "instructor_id": "bza170030", + "overall_grade_rating": 4.86, + "total_grade_count": 64, + "course_ratings": { + "MAS6102": 4.86 + } + } + ], + "peter manoogian": [ + { + "instructor_id": "pxm230008", + "overall_grade_rating": 4.82, + "total_grade_count": 110, + "course_ratings": { + "MAS6102": 4.82 + } + } + ], + "alex wise": [ + { + "instructor_id": "agw091020", + "overall_grade_rating": 4.88, + "total_grade_count": 160, + "course_ratings": { + "MAS6102": 4.88 + } + } + ], + "vincent battles": [ + { + "instructor_id": "veb100020", + "overall_grade_rating": 4.74, + "total_grade_count": 57, + "course_ratings": { + "MAS6102": 4.74 + } + } + ], + "rizwanur khan": [ + { + "instructor_id": "rxk230072", + "overall_grade_rating": 3.39, + "total_grade_count": 39, + "course_ratings": { + "MATH3323": 3.39 + } + } + ], + "daniel leister": [ + { + "instructor_id": "dxd190005", + "overall_grade_rating": 3.93, + "total_grade_count": 37, + "course_ratings": { + "MECH4310": 3.93 + } + } + ], + "yanwen xu": [ + { + "instructor_id": "yxx230007", + "overall_grade_rating": 4.83, + "total_grade_count": 40, + "course_ratings": { + "MECH7392": 4.78, + "MECH7393": 4.97 + } + } + ], + "may alkhudari": [ + { + "instructor_id": "mxa230103", + "overall_grade_rating": 4.56, + "total_grade_count": 47, + "course_ratings": { + "MIS6302": 4.56 + } + } + ], + "zivan ezhil": [ + { + "instructor_id": "zxe220002", + "overall_grade_rating": 4.51, + "total_grade_count": 157, + "course_ratings": { + "MIS6308": 4.51 + } + } + ], + "wael damra": [ + { + "instructor_id": "wxd230003", + "overall_grade_rating": 4.34, + "total_grade_count": 96, + "course_ratings": { + "MIS6309": 4.34 + } + } + ], + "sankaranarayanan ganesan": [ + { + "instructor_id": "sxg013900", + "overall_grade_rating": 3.96, + "total_grade_count": 163, + "course_ratings": { + "MIS6363": 4.23, + "ITSS4371": 3.48 + } + } + ], + "kamal nasir": [ + { + "instructor_id": "kxn152930", + "overall_grade_rating": 4.62, + "total_grade_count": 134, + "course_ratings": { + "MIS6363": 4.62 + } + } + ], + "moyez thanawalla": [ + { + "instructor_id": "mst180005", + "overall_grade_rating": 4.61, + "total_grade_count": 446, + "course_ratings": { + "MIS6378": 4.61 + } + } + ], + "taewook lim": [ + { + "instructor_id": "txl190020", + "overall_grade_rating": 4.33, + "total_grade_count": 103, + "course_ratings": { + "MKT3300": 4.33 + } + } + ], + "salar nozari": [ + { + "instructor_id": "sxn190089", + "overall_grade_rating": 4.66, + "total_grade_count": 47, + "course_ratings": { + "MKT3300": 4.66 + } + } + ], + "jin miao": [ + { + "instructor_id": "jxm190071", + "overall_grade_rating": 4.72, + "total_grade_count": 104, + "course_ratings": { + "MKT3300": 4.72 + } + } + ], + "muhammad baig": [ + { + "instructor_id": "mxb120231", + "overall_grade_rating": 3.91, + "total_grade_count": 95, + "course_ratings": { + "MKT3330": 3.91 + } + } + ], + "lena nguyen": [ + { + "instructor_id": "lxn220014", + "overall_grade_rating": 3.99, + "total_grade_count": 90, + "course_ratings": { + "NSC4362": 3.23, + "HCS7121": 4.75, + "ACN7372": 3.81 + } + } + ], + "ahmed rafi": [ + { + "instructor_id": "axr200020", + "overall_grade_rating": 4.49, + "total_grade_count": 59, + "course_ratings": { + "PA3333": 4.49 + } + } + ], + "sean mccandless": [ + { + "instructor_id": "sxm230080", + "overall_grade_rating": 4.86, + "total_grade_count": 55, + "course_ratings": { + "PA6345": 5.0, + "PA6320": 4.79 + } + } + ], + "candida pouchie": [ + { + "instructor_id": "cxp220028", + "overall_grade_rating": 4.52, + "total_grade_count": 25, + "course_ratings": { + "PSY3100": 4.52 + } + } + ], + "thomas fiorini": [ + { + "instructor_id": "tjf230000", + "overall_grade_rating": 4.17, + "total_grade_count": 19, + "course_ratings": { + "RHET1302": 4.17 + } + } + ], + "kyeongmin hwang": [ + { + "instructor_id": "kxh220004", + "overall_grade_rating": 4.12, + "total_grade_count": 72, + "course_ratings": { + "RHET1302": 4.12 + } + } + ], + "abhipriya priyadarshi": [ + { + "instructor_id": "akp230001", + "overall_grade_rating": 3.39, + "total_grade_count": 71, + "course_ratings": { + "RHET1302": 3.39 + } + } + ], + "william evans": [ + { + "instructor_id": "wae230000", + "overall_grade_rating": 4.71, + "total_grade_count": 43, + "course_ratings": { + "RHET4310": 4.89, + "LIT2321": 4.44 + } + } + ], + "yunet puentes": [ + { + "instructor_id": "yxp190010", + "overall_grade_rating": 4.38, + "total_grade_count": 66, + "course_ratings": { + "SPAN2312": 4.37, + "SPAN1311": 4.4 + } + } + ], + "lance bennett": [ + { + "instructor_id": "lkb200003", + "overall_grade_rating": 0.84, + "total_grade_count": 5, + "course_ratings": { + "UNIV1010": 0.84, + "UNIV2020": 0.84 + } + } + ], + "ruichao liu": [ + { + "instructor_id": "rxl200023", + "overall_grade_rating": 3.94, + "total_grade_count": 40, + "course_ratings": { + "ACCT2301": 3.94 + } + } + ], + "junfei zhou": [ + { + "instructor_id": "jxz190034", + "overall_grade_rating": 3.57, + "total_grade_count": 78, + "course_ratings": { + "ACCT2301": 3.57 + } + } + ], + "dave hanna": [ + { + "instructor_id": "dal166562", + "overall_grade_rating": 3.8, + "total_grade_count": 32, + "course_ratings": { + "ACCT6354": 3.8 + } + } + ], + "diana tavares ferreira": [ + { + "instructor_id": "dxt170008", + "overall_grade_rating": 4.55, + "total_grade_count": 29, + "course_ratings": { + "ACN6346": 4.55 + } + } + ], + "erika doss": [ + { + "instructor_id": "exd230007", + "overall_grade_rating": 3.78, + "total_grade_count": 26, + "course_ratings": { + "AHST3320": 3.78 + } + } + ], + "singkham khamnouane": [ + { + "instructor_id": "ssk013000", + "overall_grade_rating": 3.94, + "total_grade_count": 122, + "course_ratings": { + "ANGM3306": 3.63, + "ANGM4306": 3.89, + "ANGM4312": 3.99, + "ANGM4321": 4.93 + } + } + ], + "anisha chaudhary": [ + { + "instructor_id": "axc145530", + "overall_grade_rating": 3.75, + "total_grade_count": 30, + "course_ratings": { + "ANGM3338": 3.75 + } + } + ], + "joseph porritt": [ + { + "instructor_id": "jxp154530", + "overall_grade_rating": 3.4, + "total_grade_count": 47, + "course_ratings": { + "ANGM3368": 2.96, + "ANGM3308": 3.71 + } + } + ], + "robert manriquez": [ + { + "instructor_id": "rjm107020", + "overall_grade_rating": 3.96, + "total_grade_count": 102, + "course_ratings": { + "ANGM4305": 4.32, + "ANGM3305": 3.88 + } + } + ], + "fatemeh baigmoradi": [ + { + "instructor_id": "fxb220000", + "overall_grade_rating": 4.21, + "total_grade_count": 28, + "course_ratings": { + "ARTS2350": 4.21 + } + } + ], + "vajihe zamaniderkani": [ + { + "instructor_id": "vxz220002", + "overall_grade_rating": 3.95, + "total_grade_count": 60, + "course_ratings": { + "ATCM2301": 3.95 + } + } + ], + "hadi asgharpour": [ + { + "instructor_id": "hxa220001", + "overall_grade_rating": 4.33, + "total_grade_count": 60, + "course_ratings": { + "ATCM2301": 4.33 + } + } + ], + "baotran vo": [ + { + "instructor_id": "bnv230000", + "overall_grade_rating": 4.02, + "total_grade_count": 30, + "course_ratings": { + "ATCM2301": 4.02 + } + } + ], + "diana rojas ponce": [ + { + "instructor_id": "dsr240003", + "overall_grade_rating": 4.71, + "total_grade_count": 48, + "course_ratings": { + "ATCM2350": 4.68, + "ATCM4397": 4.74 + } + } + ], + "kathryn whitlock": [ + { + "instructor_id": "kgw150030", + "overall_grade_rating": 3.98, + "total_grade_count": 53, + "course_ratings": { + "ATCM3301": 3.99, + "ATCM2321": 3.96 + } + } + ], + "samuel pietsch": [ + { + "instructor_id": "srp130330", + "overall_grade_rating": 2.96, + "total_grade_count": 18, + "course_ratings": { + "ATCM3301": 2.96 + } + } + ], + "alexander olshansky": [ + { + "instructor_id": "axo037000", + "overall_grade_rating": 4.57, + "total_grade_count": 60, + "course_ratings": { + "BCOM1300": 4.57 + } + } + ], + "hsin jung tien": [ + { + "instructor_id": "hxt190021", + "overall_grade_rating": 3.81, + "total_grade_count": 22, + "course_ratings": { + "BIOL2281": 3.81 + } + } + ], + "alyssa briggs": [ + { + "instructor_id": "aab160030", + "overall_grade_rating": 4.0, + "total_grade_count": 23, + "course_ratings": { + "BIOL2281": 4.0 + } + } + ], + "tian hong": [ + { + "instructor_id": "txh240018", + "overall_grade_rating": 4.87, + "total_grade_count": 33, + "course_ratings": { + "BIOL6100": 4.76, + "BIOL6252": 5.0 + } + } + ], + "joseph boll": [ + { + "instructor_id": "jxb230044", + "overall_grade_rating": 5.0, + "total_grade_count": 29, + "course_ratings": { + "BIOL6398": 5.0, + "BIOL6370": 5.0 + } + } + ], + "eric meyers": [ + { + "instructor_id": "ecm081000", + "overall_grade_rating": 4.45, + "total_grade_count": 18, + "course_ratings": { + "BMEN3302": 4.45 + } + } + ], + "xu feng": [ + { + "instructor_id": "xxf240001", + "overall_grade_rating": 4.91, + "total_grade_count": 85, + "course_ratings": { + "BMEN7088": 5.0, + "BMEN7188": 4.77 + } + } + ], + "shaun clinton": [ + { + "instructor_id": "sxc220228", + "overall_grade_rating": 4.68, + "total_grade_count": 91, + "course_ratings": { + "BPS4395": 4.68, + "HMGT4395": 4.7 + } + } + ], + "senthilnatha velayudham": [ + { + "instructor_id": "sxv230155", + "overall_grade_rating": 4.4, + "total_grade_count": 98, + "course_ratings": { + "BPS4395": 4.4 + } + } + ], + "jose alvarez": [ + { + "instructor_id": "jaa010600", + "overall_grade_rating": 4.44, + "total_grade_count": 119, + "course_ratings": { + "BUAN6390": 4.45, + "BUAN6392": 4.32 + } + } + ], + "seyedmajid farvid": [ + { + "instructor_id": "sxf240002", + "overall_grade_rating": 4.35, + "total_grade_count": 115, + "course_ratings": { + "CHEM1111": 4.35 + } + } + ], + "jing ge": [ + { + "instructor_id": "jxg220039", + "overall_grade_rating": 4.55, + "total_grade_count": 59, + "course_ratings": { + "CHEM1111": 4.55 + } + } + ], + "connor delaney": [ + { + "instructor_id": "cpd230000", + "overall_grade_rating": 4.62, + "total_grade_count": 26, + "course_ratings": { + "CHEM5331": 4.62 + } + } + ], + "amy trail": [ + { + "instructor_id": "amr171330", + "overall_grade_rating": 4.54, + "total_grade_count": 74, + "course_ratings": { + "CLDP3303": 4.56, + "SPAU3303": 4.54 + } + } + ], + "whitney jett": [ + { + "instructor_id": "wpg150030", + "overall_grade_rating": 4.5, + "total_grade_count": 68, + "course_ratings": { + "CLDP3305": 4.44, + "SPAU3305": 4.62 + } + } + ], + "saul frankford": [ + { + "instructor_id": "sfa240000", + "overall_grade_rating": 5.0, + "total_grade_count": 34, + "course_ratings": { + "COMD6305": 5.0 + } + } + ], + "rebecca morris": [ + { + "instructor_id": "dal913724", + "overall_grade_rating": 5.0, + "total_grade_count": 25, + "course_ratings": { + "COMD7301": 5.0 + } + } + ], + "sarah gonzales": [ + { + "instructor_id": "dal326310", + "overall_grade_rating": 4.17, + "total_grade_count": 24, + "course_ratings": { + "COMM1315": 4.17 + } + } + ], + "natalie farr": [ + { + "instructor_id": "dal751884", + "overall_grade_rating": 4.39, + "total_grade_count": 48, + "course_ratings": { + "COMM1315": 4.39 + } + } + ], + "jaebom lee": [ + { + "instructor_id": "jxl230009", + "overall_grade_rating": 4.19, + "total_grade_count": 133, + "course_ratings": { + "CRIM1307": 4.19 + } + } + ], + "anthony papageorgiou": [ + { + "instructor_id": "ajp220004", + "overall_grade_rating": 4.32, + "total_grade_count": 58, + "course_ratings": { + "CRIM2306": 4.32 + } + } + ], + "marvin mcchriston": [ + { + "instructor_id": "mxm230053", + "overall_grade_rating": 4.48, + "total_grade_count": 23, + "course_ratings": { + "CRIM2316": 4.48 + } + } + ], + "sunmin hong": [ + { + "instructor_id": "sxh220001", + "overall_grade_rating": 4.49, + "total_grade_count": 108, + "course_ratings": { + "CRIM2317": 4.59, + "CRIM2313": 4.37, + "CRIM3302": 4.64 + } + } + ], + "hailey olszewski": [ + { + "instructor_id": "hxo230001", + "overall_grade_rating": 4.8, + "total_grade_count": 43, + "course_ratings": { + "CRIM3309": 4.8 + } + } + ], + "minyeong yoon": [ + { + "instructor_id": "mxy230003", + "overall_grade_rating": 3.94, + "total_grade_count": 62, + "course_ratings": { + "CRIM3310": 3.94 + } + } + ], + "wenyi wang": [ + { + "instructor_id": "wxw220000", + "overall_grade_rating": 4.31, + "total_grade_count": 77, + "course_ratings": { + "CRIM3319": 4.31 + } + } + ], + "daniel pena": [ + { + "instructor_id": "dal627188", + "overall_grade_rating": 3.93, + "total_grade_count": 19, + "course_ratings": { + "CRWT2301": 3.93 + } + } + ], + "samantha murphey": [ + { + "instructor_id": "dal113902", + "overall_grade_rating": 4.54, + "total_grade_count": 19, + "course_ratings": { + "CRWT2301": 4.54 + } + } + ], + "andrea luttrell": [ + { + "instructor_id": "dal858715", + "overall_grade_rating": 3.85, + "total_grade_count": 17, + "course_ratings": { + "CRWT2301": 3.85 + } + } + ], + "parisa darbari": [ + { + "instructor_id": "dal776869", + "overall_grade_rating": 3.54, + "total_grade_count": 94, + "course_ratings": { + "CS4349": 3.54 + } + } + ], + "prajyna barua soni": [ + { + "instructor_id": "ppb190000", + "overall_grade_rating": 2.46, + "total_grade_count": 105, + "course_ratings": { + "ECON2301": 2.46 + } + } + ], + "jonathan perry": [ + { + "instructor_id": "jjp160630", + "overall_grade_rating": 4.51, + "total_grade_count": 36, + "course_ratings": { + "ECS1100": 4.51 + } + } + ], + "pavan kumar": [ + { + "instructor_id": "ppk210001", + "overall_grade_rating": 4.55, + "total_grade_count": 22, + "course_ratings": { + "ECS1100": 4.55 + } + } + ], + "shanae edwards": [ + { + "instructor_id": "sle230000", + "overall_grade_rating": 4.97, + "total_grade_count": 36, + "course_ratings": { + "ECS1100": 4.97 + } + } + ], + "gerardo ocampo diaz": [ + { + "instructor_id": "gxo170730", + "overall_grade_rating": 4.69, + "total_grade_count": 28, + "course_ratings": { + "ECS1100": 4.69 + } + } + ], + "hazem amr younis": [ + { + "instructor_id": "hfy190000", + "overall_grade_rating": 4.77, + "total_grade_count": 11, + "course_ratings": { + "ECS1100": 4.77 + } + } + ], + "muhammad luqman haider": [ + { + "instructor_id": "mxh210016", + "overall_grade_rating": 4.84, + "total_grade_count": 23, + "course_ratings": { + "ECS1100": 4.84 + } + } + ], + "vlad birsan": [ + { + "instructor_id": "vib220000", + "overall_grade_rating": 4.78, + "total_grade_count": 17, + "course_ratings": { + "ECS1100": 4.78 + } + } + ], + "lacey henderson": [ + { + "instructor_id": "ljh220001", + "overall_grade_rating": 4.93, + "total_grade_count": 19, + "course_ratings": { + "ECS2390": 4.93 + } + } + ], + "danielle riddick": [ + { + "instructor_id": "dal772625", + "overall_grade_rating": 4.76, + "total_grade_count": 29, + "course_ratings": { + "ED3314": 4.76 + } + } + ], + "neeru sharma": [ + { + "instructor_id": "nms210001", + "overall_grade_rating": 4.05, + "total_grade_count": 18, + "course_ratings": { + "ENTP4311": 4.05 + } + } + ], + "matthew drouillard": [ + { + "instructor_id": "mxd126430", + "overall_grade_rating": 4.2, + "total_grade_count": 68, + "course_ratings": { + "ENVR2302": 4.11, + "GEOG2302": 4.24, + "GEOS2302": 4.04, + "GISC3304": 4.62 + } + } + ], + "md nakir ahmed": [ + { + "instructor_id": "mxa200006", + "overall_grade_rating": 3.75, + "total_grade_count": 234, + "course_ratings": { + "ENVR2302": 3.94, + "GEOG2302": 3.64, + "GEOS2302": 3.39 + } + } + ], + "jeanie aird": [ + { + "instructor_id": "jaa140030", + "overall_grade_rating": 4.55, + "total_grade_count": 295, + "course_ratings": { + "EPCS2200": 4.53, + "EPCS3200": 4.63 + } + } + ], + "gregory shows": [ + { + "instructor_id": "gss034000", + "overall_grade_rating": 4.42, + "total_grade_count": 40, + "course_ratings": { + "FILM2332": 4.42 + } + } + ], + "caitlin miles": [ + { + "instructor_id": "dal714266", + "overall_grade_rating": 4.11, + "total_grade_count": 91, + "course_ratings": { + "FILM2332": 4.11 + } + } + ], + "taeyoung park": [ + { + "instructor_id": "txp200031", + "overall_grade_rating": 3.59, + "total_grade_count": 73, + "course_ratings": { + "FIN3320": 3.59 + } + } + ], + "hao pang": [ + { + "instructor_id": "hxp240026", + "overall_grade_rating": 4.12, + "total_grade_count": 92, + "course_ratings": { + "FIN3390": 4.12 + } + } + ], + "matthew smith": [ + { + "instructor_id": "dal338234", + "overall_grade_rating": 3.97, + "total_grade_count": 47, + "course_ratings": { + "FIN3395": 3.97 + } + } + ], + "moise dzogolo": [ + { + "instructor_id": "mmd220000", + "overall_grade_rating": 4.42, + "total_grade_count": 20, + "course_ratings": { + "GEOG3377": 4.04, + "PA3377": 4.79 + } + } + ], + "paula cuellar cuellar": [ + { + "instructor_id": "dal175811", + "overall_grade_rating": 4.75, + "total_grade_count": 10, + "course_ratings": { + "HIST3350": 4.75 + } + } + ], + "leah goudy": [ + { + "instructor_id": "lsg240000", + "overall_grade_rating": 4.86, + "total_grade_count": 116, + "course_ratings": { + "HLTH1301": 4.81, + "HLTH3305": 4.97 + } + } + ], + "michael malaise": [ + { + "instructor_id": "mhm130430", + "overall_grade_rating": 4.73, + "total_grade_count": 253, + "course_ratings": { + "HMGT3301": 4.67, + "HMGT6331": 4.74 + } + } + ], + "mary bryan": [ + { + "instructor_id": "cxb230057", + "overall_grade_rating": 4.66, + "total_grade_count": 104, + "course_ratings": { + "HMGT3310": 4.54, + "HMGT6320": 4.82 + } + } + ], + "devontae warren": [ + { + "instructor_id": "dal638834", + "overall_grade_rating": 4.9, + "total_grade_count": 43, + "course_ratings": { + "HMGT6320": 4.9 + } + } + ], + "cassie cure": [ + { + "instructor_id": "cxc167530", + "overall_grade_rating": 4.73, + "total_grade_count": 14, + "course_ratings": { + "HONS3199": 4.73 + } + } + ], + "xiaowen tan": [ + { + "instructor_id": "xxt210006", + "overall_grade_rating": 4.11, + "total_grade_count": 61, + "course_ratings": { + "IMS3310": 4.11 + } + } + ], + "adriaan van eeden": [ + { + "instructor_id": "dal258233", + "overall_grade_rating": 3.22, + "total_grade_count": 55, + "course_ratings": { + "IMS3310": 3.22 + } + } + ], + "haruna minoura": [ + { + "instructor_id": "hxm210012", + "overall_grade_rating": 3.98, + "total_grade_count": 13, + "course_ratings": { + "IPEC4302": 3.98 + } + } + ], + "xiaoning wang": [ + { + "instructor_id": "xxw230006", + "overall_grade_rating": 4.46, + "total_grade_count": 125, + "course_ratings": { + "ITSS3300": 4.46 + } + } + ], + "shailender joseph": [ + { + "instructor_id": "sxj200084", + "overall_grade_rating": 4.74, + "total_grade_count": 35, + "course_ratings": { + "ITSS4381": 4.74 + } + } + ], + "negeen nikravesh": [ + { + "instructor_id": "dal454758", + "overall_grade_rating": 4.32, + "total_grade_count": 61, + "course_ratings": { + "LIT2320": 4.37, + "LIT2350": 4.47, + "LIT3319": 4.03 + } + } + ], + "michael mcshane": [ + { + "instructor_id": "dal073589", + "overall_grade_rating": 3.43, + "total_grade_count": 23, + "course_ratings": { + "LIT3300": 3.43 + } + } + ], + "jyoti hasija": [ + { + "instructor_id": "jxh200007", + "overall_grade_rating": 3.61, + "total_grade_count": 69, + "course_ratings": { + "MATH1314": 3.61 + } + } + ], + "kirill lazebnik": [ + { + "instructor_id": "dal233919", + "overall_grade_rating": 3.11, + "total_grade_count": 44, + "course_ratings": { + "MATH2420": 3.11 + } + } + ], + "zhen liu": [ + { + "instructor_id": "dal303211", + "overall_grade_rating": 4.53, + "total_grade_count": 15, + "course_ratings": { + "MECH3315": 4.53 + } + } + ], + "xinfang jin": [ + { + "instructor_id": "dal356464", + "overall_grade_rating": 3.64, + "total_grade_count": 44, + "course_ratings": { + "MECH3320": 3.64 + } + } + ], + "jonas wagner": [ + { + "instructor_id": "jrw200000", + "overall_grade_rating": 4.49, + "total_grade_count": 113, + "course_ratings": { + "MECH4110": 4.49 + } + } + ], + "seyed omid reza moheimani": [ + { + "instructor_id": "sxm154130", + "overall_grade_rating": 3.96, + "total_grade_count": 43, + "course_ratings": { + "MECH6325": 4.33, + "MECH6300": 4.05, + "MECH6314": 3.61 + } + } + ], + "bela joshi": [ + { + "instructor_id": "dal147080", + "overall_grade_rating": 4.6, + "total_grade_count": 30, + "course_ratings": { + "MECH6337": 4.75, + "SYSM6301": 4.52 + } + } + ], + "brian stevenson": [ + { + "instructor_id": "bas240000", + "overall_grade_rating": 5.0, + "total_grade_count": 11, + "course_ratings": { + "MILS180": 5.0 + } + } + ], + "ramesh garapaty": [ + { + "instructor_id": "dal510243", + "overall_grade_rating": 4.2, + "total_grade_count": 23, + "course_ratings": { + "MIS6349": 4.2 + } + } + ], + "thomas thomas": [ + { + "instructor_id": "dal194962", + "overall_grade_rating": 4.3, + "total_grade_count": 12, + "course_ratings": { + "MIS6368": 4.3 + } + } + ], + "jalaj jha": [ + { + "instructor_id": "jxj240018", + "overall_grade_rating": 4.53, + "total_grade_count": 33, + "course_ratings": { + "MKT4337": 4.53 + } + } + ], + "cecily oleksiak": [ + { + "instructor_id": "cro140030", + "overall_grade_rating": 3.32, + "total_grade_count": 84, + "course_ratings": { + "NSC3361": 2.86, + "NSC4320": 3.74, + "NSC4373": 3.35 + } + } + ], + "andrew eagle": [ + { + "instructor_id": "ale230000", + "overall_grade_rating": 3.41, + "total_grade_count": 54, + "course_ratings": { + "NSC4356": 3.41 + } + } + ], + "noa ofen": [ + { + "instructor_id": "nxo230002", + "overall_grade_rating": 4.51, + "total_grade_count": 11, + "course_ratings": { + "NSC4389": 4.51 + } + } + ], + "he huang": [ + { + "instructor_id": "hxh200027", + "overall_grade_rating": 4.59, + "total_grade_count": 91, + "course_ratings": { + "OBHR3310": 4.59 + } + } + ], + "mohammad amin farzaneh": [ + { + "instructor_id": "mxf180000", + "overall_grade_rating": 3.63, + "total_grade_count": 143, + "course_ratings": { + "OPRE3360": 3.63 + } + } + ], + "abdollah zeraatpisheh": [ + { + "instructor_id": "axz180016", + "overall_grade_rating": 4.23, + "total_grade_count": 50, + "course_ratings": { + "PA3333": 4.2, + "PA4345": 4.28 + } + } + ], + "jinju suk": [ + { + "instructor_id": "jxs190003", + "overall_grade_rating": 4.4, + "total_grade_count": 23, + "course_ratings": { + "PA3380": 4.4 + } + } + ], + "memduh tura": [ + { + "instructor_id": "mxt115230", + "overall_grade_rating": 4.8, + "total_grade_count": 25, + "course_ratings": { + "PA6370": 4.58, + "PPPE6329": 4.95 + } + } + ], + "jonathan tsou": [ + { + "instructor_id": "jxt220028", + "overall_grade_rating": 4.1, + "total_grade_count": 93, + "course_ratings": { + "PHIL1301": 4.35, + "HIST3328": 4.03, + "PHIL3328": 3.91 + } + } + ], + "humberto gonzalez nunez": [ + { + "instructor_id": "hjg230001", + "overall_grade_rating": 3.28, + "total_grade_count": 16, + "course_ratings": { + "PHIL4331": 3.28 + } + } + ], + "bei zeng": [ + { + "instructor_id": "bxz230005", + "overall_grade_rating": 4.02, + "total_grade_count": 14, + "course_ratings": { + "PHYS4340": 4.02 + } + } + ], + "ivan vasko": [ + { + "instructor_id": "ixv230013", + "overall_grade_rating": 4.6, + "total_grade_count": 30, + "course_ratings": { + "PHYS4352": 4.6 + } + } + ], + "amanda clark": [ + { + "instructor_id": "dal031693", + "overall_grade_rating": 4.52, + "total_grade_count": 20, + "course_ratings": { + "PPOL4396": 4.52 + } + } + ], + "savannah sipos": [ + { + "instructor_id": "sms160630", + "overall_grade_rating": 4.49, + "total_grade_count": 39, + "course_ratings": { + "PSCI3310": 4.49 + } + } + ], + "camilo ruggero": [ + { + "instructor_id": "cjr230000", + "overall_grade_rating": 3.72, + "total_grade_count": 106, + "course_ratings": { + "PSY2317": 3.72 + } + } + ], + "adrienne large": [ + { + "instructor_id": "axl170008", + "overall_grade_rating": 4.97, + "total_grade_count": 12, + "course_ratings": { + "PSY3100": 4.97 + } + } + ], + "evan smith": [ + { + "instructor_id": "exs130130", + "overall_grade_rating": 4.34, + "total_grade_count": 22, + "course_ratings": { + "PSY3393": 4.34 + } + } + ], + "katherine damme": [ + { + "instructor_id": "ksd240003", + "overall_grade_rating": 2.64, + "total_grade_count": 12, + "course_ratings": { + "PSY3393": 2.64 + } + } + ], + "lilia martinez": [ + { + "instructor_id": "lem230001", + "overall_grade_rating": 3.68, + "total_grade_count": 17, + "course_ratings": { + "RHET1302": 3.68 + } + } + ], + "allison boye": [ + { + "instructor_id": "dal323717", + "overall_grade_rating": 3.58, + "total_grade_count": 35, + "course_ratings": { + "RHET1302": 3.58 + } + } + ], + "siting wang": [ + { + "instructor_id": "sxw230032", + "overall_grade_rating": 4.51, + "total_grade_count": 18, + "course_ratings": { + "RHET1302": 4.51 + } + } + ], + "jiajia gu": [ + { + "instructor_id": "jxg200001", + "overall_grade_rating": 4.27, + "total_grade_count": 35, + "course_ratings": { + "RHET1302": 4.27 + } + } + ], + "dawn yang": [ + { + "instructor_id": "dxy220002", + "overall_grade_rating": 4.07, + "total_grade_count": 18, + "course_ratings": { + "RHET1302": 4.07 + } + } + ], + "matthis frickhoeffer": [ + { + "instructor_id": "mpf230001", + "overall_grade_rating": 4.22, + "total_grade_count": 17, + "course_ratings": { + "RHET1302": 4.22 + } + } + ], + "inez olivas": [ + { + "instructor_id": "ico240000", + "overall_grade_rating": 4.61, + "total_grade_count": 16, + "course_ratings": { + "RHET1302": 4.61 + } + } + ], + "linda smith brecheisen": [ + { + "instructor_id": "lxs210013", + "overall_grade_rating": 5.0, + "total_grade_count": 11, + "course_ratings": { + "RHET6320": 5.0 + } + } + ], + "erika trammell conerly": [ + { + "instructor_id": "ext240004", + "overall_grade_rating": 4.85, + "total_grade_count": 34, + "course_ratings": { + "SGNL1301": 4.85 + } + } + ], + "hoda elsafadi": [ + { + "instructor_id": "hoe180000", + "overall_grade_rating": 4.26, + "total_grade_count": 92, + "course_ratings": { + "SOC1301": 4.26 + } + } + ], + "soyoung kwon": [ + { + "instructor_id": "sxk240162", + "overall_grade_rating": 4.32, + "total_grade_count": 61, + "course_ratings": { + "SOC4369": 4.32 + } + } + ], + "laura fernandez cobos": [ + { + "instructor_id": "dal473593", + "overall_grade_rating": 4.71, + "total_grade_count": 10, + "course_ratings": { + "SPAN2312": 4.71 + } + } + ], + "yune lee": [ + { + "instructor_id": "ysl200000", + "overall_grade_rating": 3.61, + "total_grade_count": 12, + "course_ratings": { + "SPAU3304": 3.61 + } + } + ], + "hyunwoong chang": [ + { + "instructor_id": "dal954866", + "overall_grade_rating": 3.49, + "total_grade_count": 24, + "course_ratings": { + "STAT4352": 3.49 + } + } + ], + "damian enyaosah": [ + { + "instructor_id": "dpe190000", + "overall_grade_rating": 4.36, + "total_grade_count": 97, + "course_ratings": { + "THEA1310": 4.36 + } + } + ], + "bin li": [ + { + "instructor_id": "bxl124230", + "overall_grade_rating": 4.22, + "total_grade_count": 66, + "course_ratings": { + "ACCT6344": 4.22 + } + } + ], + "wing tsang": [ + { + "instructor_id": "wkt071000", + "overall_grade_rating": 3.85, + "total_grade_count": 296, + "course_ratings": { + "IMS3310": 3.82, + "IMS6360": 4.39 + } + } + ], + "brad crumpecker": [ + { + "instructor_id": "bxc122130", + "overall_grade_rating": 3.83, + "total_grade_count": 5, + "course_ratings": { + "REAL6323": 3.83 + } + } + ], + "sora jun": [ + { + "instructor_id": "sxj177030", + "overall_grade_rating": 3.83, + "total_grade_count": 235, + "course_ratings": { + "OBHR3310": 3.83 + } + } + ], + "zhichao feng": [ + { + "instructor_id": "zxf140830", + "overall_grade_rating": 4.55, + "total_grade_count": 49, + "course_ratings": { + "OPRE3310": 4.55 + } + } + ], + "robert shaum": [ + { + "instructor_id": "ras150630", + "overall_grade_rating": 4.65, + "total_grade_count": 84, + "course_ratings": { + "OPRE6364": 5.0, + "OPRE4310": 4.25 + } + } + ], + "chungseung lee": [ + { + "instructor_id": "cxl143430", + "overall_grade_rating": 4.02, + "total_grade_count": 61, + "course_ratings": { + "OPRE3333": 4.02 + } + } + ], + "christine moldenhauer": [ + { + "instructor_id": "cxm050100", + "overall_grade_rating": 4.05, + "total_grade_count": 21, + "course_ratings": { + "OBHR4331": 4.05 + } + } + ], + "shuai shi": [ + { + "instructor_id": "sxs180130", + "overall_grade_rating": 4.28, + "total_grade_count": 15, + "course_ratings": { + "CHIN1311": 4.28 + } + } + ], + "malcom frierson": [ + { + "instructor_id": "mxf170004", + "overall_grade_rating": 3.62, + "total_grade_count": 87, + "course_ratings": { + "HIST1302": 3.62 + } + } + ], + "melia belli": [ + { + "instructor_id": "mxb170930", + "overall_grade_rating": 4.91, + "total_grade_count": 23, + "course_ratings": { + "ARTS1301": 4.91 + } + } + ], + "irma smith": [ + { + "instructor_id": "ieg011000", + "overall_grade_rating": 4.96, + "total_grade_count": 101, + "course_ratings": { + "COMD6320": 4.96 + } + } + ], + "jennifer alford": [ + { + "instructor_id": "jaa076000", + "overall_grade_rating": 4.86, + "total_grade_count": 15, + "course_ratings": { + "AUD7351": 4.86 + } + } + ], + "christina lombardi": [ + { + "instructor_id": "tinalee", + "overall_grade_rating": 5.0, + "total_grade_count": 104, + "course_ratings": { + "COMD7384": 5.0 + } + } + ], + "tarek lahlou": [ + { + "instructor_id": "tal180001", + "overall_grade_rating": 3.59, + "total_grade_count": 48, + "course_ratings": { + "ENGR3341": 3.59 + } + } + ], + "ashkan yousefpour": [ + { + "instructor_id": "axy130830", + "overall_grade_rating": 3.52, + "total_grade_count": 63, + "course_ratings": { + "CS2305": 3.52 + } + } + ], + "chris hinkle": [ + { + "instructor_id": "clh066000", + "overall_grade_rating": 4.64, + "total_grade_count": 8, + "course_ratings": { + "MSEN6327": 4.64 + } + } + ], + "tarik shihabeddin": [ + { + "instructor_id": "tzs170130", + "overall_grade_rating": 4.64, + "total_grade_count": 24, + "course_ratings": { + "BMEN3130": 4.64 + } + } + ], + "taylor ware": [ + { + "instructor_id": "thw090020", + "overall_grade_rating": 3.59, + "total_grade_count": 45, + "course_ratings": { + "BMEN4360": 3.59 + } + } + ], + "john parker": [ + { + "instructor_id": "jxp172430", + "overall_grade_rating": 3.37, + "total_grade_count": 41, + "course_ratings": { + "CRIM2306": 3.37 + } + } + ], + "scott horn": [ + { + "instructor_id": "seh082000", + "overall_grade_rating": 5.0, + "total_grade_count": 8, + "course_ratings": { + "GISC6388": 5.0 + } + } + ], + "amy hughes": [ + { + "instructor_id": "aes092020", + "overall_grade_rating": 4.15, + "total_grade_count": 23, + "course_ratings": { + "GISC6381": 4.1, + "GEOS6381": 4.33 + } + } + ], + "lionel white": [ + { + "instructor_id": "lwhite", + "overall_grade_rating": 4.9, + "total_grade_count": 20, + "course_ratings": { + "GISC5322": 4.82, + "GISC5324": 4.96 + } + } + ], + "patricia chen": [ + { + "instructor_id": "pmpan", + "overall_grade_rating": 3.11, + "total_grade_count": 49, + "course_ratings": { + "EPPS2301": 3.11 + } + } + ], + "polly schlosser": [ + { + "instructor_id": "pxs091000", + "overall_grade_rating": 4.63, + "total_grade_count": 39, + "course_ratings": { + "ED3382": 4.63 + } + } + ], + "tamera starke": [ + { + "instructor_id": "txs180008", + "overall_grade_rating": 4.63, + "total_grade_count": 37, + "course_ratings": { + "ED4353": 4.8, + "AMS4300": 4.4 + } + } + ], + "sijie shen": [ + { + "instructor_id": "sxs143631", + "overall_grade_rating": 2.43, + "total_grade_count": 35, + "course_ratings": { + "MATH2312": 2.43 + } + } + ], + "rebecca eichelberger": [ + { + "instructor_id": "rxe110030", + "overall_grade_rating": 4.28, + "total_grade_count": 68, + "course_ratings": { + "CRIM3327": 4.28 + } + } + ], + "joyce schofield": [ + { + "instructor_id": "jxs170002", + "overall_grade_rating": 4.19, + "total_grade_count": 18, + "course_ratings": { + "MKT4336": 4.19 + } + } + ], + "michael morris": [ + { + "instructor_id": "mam142230", + "overall_grade_rating": 3.72, + "total_grade_count": 49, + "course_ratings": { + "FILM2332": 3.72 + } + } + ], + "michelle prudhomme": [ + { + "instructor_id": "mxp010110", + "overall_grade_rating": 5.0, + "total_grade_count": 7, + "course_ratings": { + "HUMA6330": 5.0 + } + } + ], + "matthew durchholz": [ + { + "instructor_id": "mxd165230", + "overall_grade_rating": 4.72, + "total_grade_count": 15, + "course_ratings": { + "SYSM6327": 4.72 + } + } + ], + "robert schwab": [ + { + "instructor_id": "rxs170230", + "overall_grade_rating": 4.5, + "total_grade_count": 26, + "course_ratings": { + "HONS3199": 4.5 + } + } + ], + "eliot fletcher": [ + { + "instructor_id": "exf180001", + "overall_grade_rating": 5.0, + "total_grade_count": 14, + "course_ratings": { + "HONS3199": 5.0 + } + } + ], + "rittika shamsuddin": [ + { + "instructor_id": "rxs135730", + "overall_grade_rating": 3.47, + "total_grade_count": 39, + "course_ratings": { + "CS2305": 3.47 + } + } + ], + "morgan murphy": [ + { + "instructor_id": "mkm151030", + "overall_grade_rating": 3.55, + "total_grade_count": 29, + "course_ratings": { + "ATCM2301": 3.55 + } + } + ], + "donna aldridge": [ + { + "instructor_id": "daa170730", + "overall_grade_rating": 4.18, + "total_grade_count": 114, + "course_ratings": { + "ATCM2302": 4.18 + } + } + ], + "kasey henley": [ + { + "instructor_id": "kxh173030", + "overall_grade_rating": 4.48, + "total_grade_count": 48, + "course_ratings": { + "ATCM4395": 4.48 + } + } + ], + "marta swingle": [ + { + "instructor_id": "mxm170051", + "overall_grade_rating": 4.06, + "total_grade_count": 48, + "course_ratings": { + "ATCM4395": 4.06 + } + } + ], + "cristina ippolito": [ + { + "instructor_id": "cri021000", + "overall_grade_rating": 4.1, + "total_grade_count": 24, + "course_ratings": { + "NSC3361": 4.1 + } + } + ], + "michelle kapolowicz": [ + { + "instructor_id": "mrk092020", + "overall_grade_rating": 4.29, + "total_grade_count": 53, + "course_ratings": { + "PSY3393": 4.29 + } + } + ], + "sudipto chakraborty": [ + { + "instructor_id": "sxc180013", + "overall_grade_rating": 4.1, + "total_grade_count": 39, + "course_ratings": { + "EECT6326": 4.1 + } + } + ], + "loig bourree": [ + { + "instructor_id": "leb180000", + "overall_grade_rating": 4.38, + "total_grade_count": 21, + "course_ratings": { + "CE4370": 4.38 + } + } + ], + "benjamin lima": [ + { + "instructor_id": "bxl170004", + "overall_grade_rating": 3.38, + "total_grade_count": 26, + "course_ratings": { + "AHST4342": 3.38 + } + } + ], + "daniel martinez": [ + { + "instructor_id": "drm190002", + "overall_grade_rating": 4.25, + "total_grade_count": 16, + "course_ratings": { + "ARTS3377": 4.25 + } + } + ], + "david adelman": [ + { + "instructor_id": "dxa180004", + "overall_grade_rating": 3.25, + "total_grade_count": 19, + "course_ratings": { + "ATCM3301": 3.25 + } + } + ], + "cydney cox": [ + { + "instructor_id": "cxc190025", + "overall_grade_rating": 2.83, + "total_grade_count": 25, + "course_ratings": { + "ATCM3350": 2.83 + } + } + ], + "paula guidry": [ + { + "instructor_id": "pxg210003", + "overall_grade_rating": 3.64, + "total_grade_count": 56, + "course_ratings": { + "BIOL2281": 3.64 + } + } + ], + "allison brown": [ + { + "instructor_id": "aet052000", + "overall_grade_rating": 4.95, + "total_grade_count": 52, + "course_ratings": { + "COMD7208": 4.95 + } + } + ], + "jordan riddell": [ + { + "instructor_id": "jxr122330", + "overall_grade_rating": 3.46, + "total_grade_count": 99, + "course_ratings": { + "CRIM3303": 3.51, + "CRIM3311": 3.38, + "CRIM3301": 3.44 + } + } + ], + "emilie beck": [ + { + "instructor_id": "exb210000", + "overall_grade_rating": 4.26, + "total_grade_count": 13, + "course_ratings": { + "CRWT3306": 4.26 + } + } + ], + "hang yang": [ + { + "instructor_id": "hxy171330", + "overall_grade_rating": 3.7, + "total_grade_count": 30, + "course_ratings": { + "FIN4310": 3.7 + } + } + ], + "bryan wildenthal": [ + { + "instructor_id": "wildenbh", + "overall_grade_rating": 5.0, + "total_grade_count": 12, + "course_ratings": { + "HONS3199": 5.0 + } + } + ], + "haozhao zhang": [ + { + "instructor_id": "hxz171030", + "overall_grade_rating": 4.77, + "total_grade_count": 62, + "course_ratings": { + "ITSS3311": 4.77 + } + } + ], + "yuko kato": [ + { + "instructor_id": "yxk200021", + "overall_grade_rating": 4.3, + "total_grade_count": 40, + "course_ratings": { + "JAPN1311": 4.55, + "JAPN1312": 3.84 + } + } + ], + "payam delgoshaei": [ + { + "instructor_id": "pxd210002", + "overall_grade_rating": 4.68, + "total_grade_count": 58, + "course_ratings": { + "MECH4380": 4.68 + } + } + ], + "sherry vidal brown": [ + { + "instructor_id": "sxv200106", + "overall_grade_rating": 4.28, + "total_grade_count": 42, + "course_ratings": { + "OBHR4331": 4.28 + } + } + ], + "lingling shi": [ + { + "instructor_id": "lxs171930", + "overall_grade_rating": 3.74, + "total_grade_count": 63, + "course_ratings": { + "OPRE3360": 3.74 + } + } + ], + "nusrat zahan chowdhury": [ + { + "instructor_id": "nxc190022", + "overall_grade_rating": 3.62, + "total_grade_count": 51, + "course_ratings": { + "ATCM3301": 3.62 + } + } + ], + "gu eon kang": [ + { + "instructor_id": "gxk210018", + "overall_grade_rating": 4.61, + "total_grade_count": 119, + "course_ratings": { + "BMEN3399": 4.23, + "BMEN7088": 5.0, + "BMEN7188": 4.84 + } + } + ], + "vivek mishra": [ + { + "instructor_id": "vxm190016", + "overall_grade_rating": 4.35, + "total_grade_count": 16, + "course_ratings": { + "BUAN6320": 4.35 + } + } + ], + "gerardo cisneros": [ + { + "instructor_id": "gac210005", + "overall_grade_rating": 4.22, + "total_grade_count": 56, + "course_ratings": { + "CHEM3322": 4.22 + } + } + ], + "sarah hepola": [ + { + "instructor_id": "sxh220092", + "overall_grade_rating": 4.47, + "total_grade_count": 18, + "course_ratings": { + "CRWT3308": 4.47 + } + } + ], + "tarfia faizullah": [ + { + "instructor_id": "txf220014", + "overall_grade_rating": 5.0, + "total_grade_count": 15, + "course_ratings": { + "CRWT3351": 5.0 + } + } + ], + "nicole michener": [ + { + "instructor_id": "nlm220000", + "overall_grade_rating": 4.88, + "total_grade_count": 30, + "course_ratings": { + "ED3382": 4.88 + } + } + ], + "leah frazier": [ + { + "instructor_id": "lxf220000", + "overall_grade_rating": 4.13, + "total_grade_count": 48, + "course_ratings": { + "ENTP3301": 4.13 + } + } + ], + "kirk otis": [ + { + "instructor_id": "kjo230001", + "overall_grade_rating": 4.27, + "total_grade_count": 45, + "course_ratings": { + "ENTP4311": 4.27 + } + } + ], + "david evans": [ + { + "instructor_id": "dxe220017", + "overall_grade_rating": 4.2, + "total_grade_count": 56, + "course_ratings": { + "ENTP6370": 4.2 + } + } + ], + "wenjing xiao": [ + { + "instructor_id": "swx170030", + "overall_grade_rating": 3.91, + "total_grade_count": 36, + "course_ratings": { + "FIN4340": 3.59, + "FIN6314": 4.24 + } + } + ], + "connor donegan": [ + { + "instructor_id": "cxd161930", + "overall_grade_rating": 3.29, + "total_grade_count": 10, + "course_ratings": { + "GISC3304": 3.29 + } + } + ], + "maria amalia maese": [ + { + "instructor_id": "mxm124131", + "overall_grade_rating": 5.0, + "total_grade_count": 12, + "course_ratings": { + "HDCD6316": 5.0 + } + } + ], + "renee herrin": [ + { + "instructor_id": "rmv015000", + "overall_grade_rating": 4.83, + "total_grade_count": 15, + "course_ratings": { + "HDCD6390": 4.83 + } + } + ], + "marvin stone": [ + { + "instructor_id": "mjs150030", + "overall_grade_rating": 5.0, + "total_grade_count": 13, + "course_ratings": { + "HONS3199": 5.0 + } + } + ], + "yilin liu": [ + { + "instructor_id": "yxl190091", + "overall_grade_rating": 4.06, + "total_grade_count": 112, + "course_ratings": { + "IMS3310": 4.06 + } + } + ], + "jia shen": [ + { + "instructor_id": "jxs190079", + "overall_grade_rating": 4.49, + "total_grade_count": 123, + "course_ratings": { + "IMS3310": 4.49 + } + } + ], + "janet allen": [ + { + "instructor_id": "jxa230004", + "overall_grade_rating": 3.35, + "total_grade_count": 26, + "course_ratings": { + "LIT3330": 3.35 + } + } + ], + "nisha": [ + { + "instructor_id": "nxn180012", + "overall_grade_rating": 2.18, + "total_grade_count": 29, + "course_ratings": { + "MATH1316": 2.18 + } + } + ], + "runyu zhang": [ + { + "instructor_id": "rxz180009", + "overall_grade_rating": 4.07, + "total_grade_count": 17, + "course_ratings": { + "MECH3351": 4.07 + } + } + ], + "nozar hassanzadeh": [ + { + "instructor_id": "nozarh", + "overall_grade_rating": 2.69, + "total_grade_count": 64, + "course_ratings": { + "OPRE3310": 2.69 + } + } + ], + "eric sampson": [ + { + "instructor_id": "exs190005", + "overall_grade_rating": 4.33, + "total_grade_count": 40, + "course_ratings": { + "PHIL1301": 4.33 + } + } + ], + "xinchou lou": [ + { + "instructor_id": "xinchou", + "overall_grade_rating": 4.02, + "total_grade_count": 37, + "course_ratings": { + "PHYS4311": 4.02 + } + } + ], + "paola saibene": [ + { + "instructor_id": "pxs210122", + "overall_grade_rating": 4.89, + "total_grade_count": 74, + "course_ratings": { + "PPPE6308": 4.87, + "PSCI6308": 4.91 + } + } + ], + "naela elmore": [ + { + "instructor_id": "nxm153530", + "overall_grade_rating": 4.01, + "total_grade_count": 114, + "course_ratings": { + "PSCI3350": 4.05, + "PSCI4306": 3.96 + } + } + ], + "grace denner": [ + { + "instructor_id": "gad200002", + "overall_grade_rating": 4.13, + "total_grade_count": 48, + "course_ratings": { + "ANGM2303": 4.13 + } + } + ], + "hamida khatri": [ + { + "instructor_id": "hxk200055", + "overall_grade_rating": 4.34, + "total_grade_count": 39, + "course_ratings": { + "ATCM3301": 3.91, + "ATCM2300": 4.55 + } + } + ], + "daryl meador": [ + { + "instructor_id": "dxm230054", + "overall_grade_rating": 4.56, + "total_grade_count": 30, + "course_ratings": { + "ATCM3320": 4.56 + } + } + ], + "adam polansky": [ + { + "instructor_id": "axp230264", + "overall_grade_rating": 4.21, + "total_grade_count": 22, + "course_ratings": { + "ATCM3336": 4.21 + } + } + ], + "tyler haws": [ + { + "instructor_id": "txh200019", + "overall_grade_rating": 4.56, + "total_grade_count": 19, + "course_ratings": { + "ATCM3345": 4.56 + } + } + ], + "darshan sapkota": [ + { + "instructor_id": "dxs210043", + "overall_grade_rating": 4.82, + "total_grade_count": 23, + "course_ratings": { + "BIOL6252": 4.82 + } + } + ], + "lee kader": [ + { + "instructor_id": "lxk230034", + "overall_grade_rating": 3.91, + "total_grade_count": 47, + "course_ratings": { + "BPS4395": 3.91 + } + } + ], + "jonathan scott": [ + { + "instructor_id": "jxs230065", + "overall_grade_rating": 4.03, + "total_grade_count": 117, + "course_ratings": { + "BUAN6312": 4.03 + } + } + ], + "ziyi cao": [ + { + "instructor_id": "zxc230012", + "overall_grade_rating": 4.4, + "total_grade_count": 72, + "course_ratings": { + "BUAN6341": 4.4 + } + } + ], + "brian dean": [ + { + "instructor_id": "bjd210004", + "overall_grade_rating": 4.58, + "total_grade_count": 54, + "course_ratings": { + "BUAN6390": 4.58 + } + } + ], + "mario wriedt": [ + { + "instructor_id": "mxw230016", + "overall_grade_rating": 5.0, + "total_grade_count": 38, + "course_ratings": { + "CHEM6389": 5.0 + } + } + ], + "clifford duke": [ + { + "instructor_id": "cxd230042", + "overall_grade_rating": 3.68, + "total_grade_count": 23, + "course_ratings": { + "CRIM2306": 3.68 + } + } + ], + "tony love": [ + { + "instructor_id": "txl230017", + "overall_grade_rating": 5.0, + "total_grade_count": 17, + "course_ratings": { + "CRIM6381": 5.0 + } + } + ], + "qingqing chen": [ + { + "instructor_id": "qxc230004", + "overall_grade_rating": 3.48, + "total_grade_count": 67, + "course_ratings": { + "ENTP3301": 3.48 + } + } + ], + "hanna shin": [ + { + "instructor_id": "hxs180008", + "overall_grade_rating": 3.99, + "total_grade_count": 30, + "course_ratings": { + "EPPS2301": 3.78, + "GOVT2305": 4.14 + } + } + ], + "mark cooper": [ + { + "instructor_id": "mxc230071", + "overall_grade_rating": 3.52, + "total_grade_count": 87, + "course_ratings": { + "FILM2332": 3.52 + } + } + ], + "zhuowei huang": [ + { + "instructor_id": "zxh162030", + "overall_grade_rating": 3.58, + "total_grade_count": 17, + "course_ratings": { + "FIN3320": 3.58 + } + } + ], + "inessa yurchenko": [ + { + "instructor_id": "ixy220003", + "overall_grade_rating": 3.93, + "total_grade_count": 62, + "course_ratings": { + "GEOS1303": 3.74, + "GEOS4390": 4.41 + } + } + ], + "lijun zhu": [ + { + "instructor_id": "lxz240002", + "overall_grade_rating": 3.68, + "total_grade_count": 37, + "course_ratings": { + "ITSS4330": 3.68 + } + } + ], + "manisha varshney": [ + { + "instructor_id": "mvs031000", + "overall_grade_rating": 4.6, + "total_grade_count": 22, + "course_ratings": { + "MIS6393": 4.6 + } + } + ], + "wensi zhang": [ + { + "instructor_id": "wxz161430", + "overall_grade_rating": 4.03, + "total_grade_count": 100, + "course_ratings": { + "MKT3340": 4.03 + } + } + ], + "kevin brenner": [ + { + "instructor_id": "kxb230024", + "overall_grade_rating": 4.27, + "total_grade_count": 24, + "course_ratings": { + "MSEN6324": 4.27 + } + } + ], + "erin sullivan": [ + { + "instructor_id": "eas113020", + "overall_grade_rating": 4.36, + "total_grade_count": 85, + "course_ratings": { + "NSC4385": 4.51, + "PSY4385": 4.18 + } + } + ], + "emily ward": [ + { + "instructor_id": "ejw160030", + "overall_grade_rating": 4.39, + "total_grade_count": 11, + "course_ratings": { + "OBHR4337": 4.39 + } + } + ], + "michael hegedus": [ + { + "instructor_id": "mgh230001", + "overall_grade_rating": 3.61, + "total_grade_count": 76, + "course_ratings": { + "OPRE3360": 3.61 + } + } + ], + "nabila parijat": [ + { + "instructor_id": "nxp200017", + "overall_grade_rating": 4.63, + "total_grade_count": 10, + "course_ratings": { + "PA3306": 4.63 + } + } + ], + "kayla parker": [ + { + "instructor_id": "kmp200000", + "overall_grade_rating": 4.33, + "total_grade_count": 10, + "course_ratings": { + "PA3355": 4.33 + } + } + ], + "robert willoughby": [ + { + "instructor_id": "rtw140130", + "overall_grade_rating": 4.87, + "total_grade_count": 31, + "course_ratings": { + "PHIN1103": 4.87 + } + } + ], + "gary chang": [ + { + "instructor_id": "gxc180016", + "overall_grade_rating": 4.61, + "total_grade_count": 56, + "course_ratings": { + "PSCI3306": 4.7, + "GOVT2305": 4.48 + } + } + ], + "colleen frank": [ + { + "instructor_id": "ccf160030", + "overall_grade_rating": 4.07, + "total_grade_count": 18, + "course_ratings": { + "PSY3393": 4.07 + } + } + ], + "samiul haque": [ + { + "instructor_id": "msh180003", + "overall_grade_rating": 4.4, + "total_grade_count": 58, + "course_ratings": { + "SOC2305": 4.4 + } + } + ], + "abraham paul": [ + { + "instructor_id": "axp180036", + "overall_grade_rating": 3.78, + "total_grade_count": 29, + "course_ratings": { + "ACCT6373": 3.78 + } + } + ], + "daniel patino": [ + { + "instructor_id": "dip101020", + "overall_grade_rating": 3.55, + "total_grade_count": 46, + "course_ratings": { + "ACCT4336": 3.55 + } + } + ], + "andrew golboro": [ + { + "instructor_id": "axg165431", + "overall_grade_rating": 4.74, + "total_grade_count": 29, + "course_ratings": { + "AUD6352": 4.74 + } + } + ], + "katie robinson": [ + { + "instructor_id": "klr180002", + "overall_grade_rating": 4.14, + "total_grade_count": 30, + "course_ratings": { + "BIS3190": 4.14 + } + } + ], + "julie schneider": [ + { + "instructor_id": "jxs114631", + "overall_grade_rating": 4.55, + "total_grade_count": 28, + "course_ratings": { + "CLDP3303": 4.17, + "SPAU3303": 4.8 + } + } + ], + "kaitlin sands": [ + { + "instructor_id": "krs150330", + "overall_grade_rating": 3.53, + "total_grade_count": 65, + "course_ratings": { + "CLDP3310": 3.88, + "PSY3310": 3.44 + } + } + ], + "melissa sweeney": [ + { + "instructor_id": "msweeney", + "overall_grade_rating": 4.88, + "total_grade_count": 83, + "course_ratings": { + "COMD7323": 4.88 + } + } + ], + "lori cook": [ + { + "instructor_id": "lgc011100", + "overall_grade_rating": 4.87, + "total_grade_count": 156, + "course_ratings": { + "COMD7345": 4.87 + } + } + ], + "soroush bateni": [ + { + "instructor_id": "sxb155530", + "overall_grade_rating": 3.32, + "total_grade_count": 56, + "course_ratings": { + "CS4348": 3.43, + "SE4348": 2.73 + } + } + ], + "rajesh ghai": [ + { + "instructor_id": "rxg170730", + "overall_grade_rating": 4.36, + "total_grade_count": 20, + "course_ratings": { + "FIN6360": 4.36 + } + } + ], + "justin culp": [ + { + "instructor_id": "jgc130130", + "overall_grade_rating": 3.75, + "total_grade_count": 30, + "course_ratings": { + "GOVT2305": 3.75 + } + } + ], + "jayarajan samuel": [ + { + "instructor_id": "jxs124931", + "overall_grade_rating": 4.18, + "total_grade_count": 45, + "course_ratings": { + "ITSS3300": 4.18 + } + } + ], + "ezgi akar": [ + { + "instructor_id": "exa170230", + "overall_grade_rating": 3.36, + "total_grade_count": 47, + "course_ratings": { + "ITSS3300": 3.36 + } + } + ], + "jacqueline cavazos": [ + { + "instructor_id": "jxc162330", + "overall_grade_rating": 3.66, + "total_grade_count": 67, + "course_ratings": { + "CGS3361": 3.98, + "PSY3361": 3.59 + } + } + ], + "sungil han": [ + { + "instructor_id": "sxh145430", + "overall_grade_rating": 3.44, + "total_grade_count": 20, + "course_ratings": { + "CRIM1307": 3.44 + } + } + ], + "aoyu hou": [ + { + "instructor_id": "axh153230", + "overall_grade_rating": 3.76, + "total_grade_count": 40, + "course_ratings": { + "ECON2302": 3.76 + } + } + ], + "tianjian shi": [ + { + "instructor_id": "txs142330", + "overall_grade_rating": 4.02, + "total_grade_count": 25, + "course_ratings": { + "ECON2302": 4.02 + } + } + ], + "paulo marcio cavallo de oliveira": [ + { + "instructor_id": "pxc151630", + "overall_grade_rating": 4.24, + "total_grade_count": 17, + "course_ratings": { + "EPPS2302": 4.24 + } + } + ], + "david heidtman": [ + { + "instructor_id": "dmh061000", + "overall_grade_rating": 4.07, + "total_grade_count": 38, + "course_ratings": { + "FIN3320": 4.07 + } + } + ], + "mary wylie": [ + { + "instructor_id": "mxw190018", + "overall_grade_rating": 4.71, + "total_grade_count": 37, + "course_ratings": { + "HMGT3301": 4.71 + } + } + ], + "david saucedo de la fuente": [ + { + "instructor_id": "dxs144830", + "overall_grade_rating": 4.56, + "total_grade_count": 19, + "course_ratings": { + "IPEC4396": 4.56 + } + } + ], + "sailendra mishra": [ + { + "instructor_id": "spm160530", + "overall_grade_rating": 4.7, + "total_grade_count": 45, + "course_ratings": { + "ITSS3311": 4.7 + } + } + ], + "zahra mobini dehkordi": [ + { + "instructor_id": "zxm160730", + "overall_grade_rating": 4.27, + "total_grade_count": 58, + "course_ratings": { + "OPRE3310": 4.27 + } + } + ], + "holly miori": [ + { + "instructor_id": "hhm130030", + "overall_grade_rating": 4.83, + "total_grade_count": 37, + "course_ratings": { + "PA6335": 4.83 + } + } + ], + "william shute": [ + { + "instructor_id": "whs170030", + "overall_grade_rating": 4.83, + "total_grade_count": 189, + "course_ratings": { + "PA8330": 4.83 + } + } + ], + "samantha helfers": [ + { + "instructor_id": "sxh161130", + "overall_grade_rating": 4.63, + "total_grade_count": 77, + "course_ratings": { + "PSY3370": 4.63 + } + } + ], + "sean landers": [ + { + "instructor_id": "sml160330", + "overall_grade_rating": 4.12, + "total_grade_count": 18, + "course_ratings": { + "ATCM3301": 4.12 + } + } + ], + "dhriti stocks": [ + { + "instructor_id": "dpp130130", + "overall_grade_rating": 4.45, + "total_grade_count": 72, + "course_ratings": { + "PA6389": 4.37, + "PA6369": 4.5 + } + } + ], + "kieth gryder": [ + { + "instructor_id": "kxg150030", + "overall_grade_rating": 3.09, + "total_grade_count": 49, + "course_ratings": { + "PSY3361": 3.09 + } + } + ], + "kathryn kreidler": [ + { + "instructor_id": "kvk180002", + "overall_grade_rating": 4.61, + "total_grade_count": 19, + "course_ratings": { + "SPAU4308": 4.61 + } + } + ], + "arun kumar rout": [ + { + "instructor_id": "axr180006", + "overall_grade_rating": 3.49, + "total_grade_count": 35, + "course_ratings": { + "OPRE3310": 3.49 + } + } + ], + "gayathri batchalli maruthy": [ + { + "instructor_id": "gxb150930", + "overall_grade_rating": 2.18, + "total_grade_count": 13, + "course_ratings": { + "PSY2317": 2.18 + } + } + ], + "melissa heinrich": [ + { + "instructor_id": "mdh190005", + "overall_grade_rating": 4.04, + "total_grade_count": 45, + "course_ratings": { + "PSY3310": 4.04 + } + } + ], + "melanie holmes": [ + { + "instructor_id": "mch180005", + "overall_grade_rating": 3.84, + "total_grade_count": 42, + "course_ratings": { + "PSY3392": 3.84 + } + } + ], + "desiree jones": [ + { + "instructor_id": "dxj170004", + "overall_grade_rating": 4.47, + "total_grade_count": 18, + "course_ratings": { + "PSY3393": 4.47 + } + } + ], + "brandy cook": [ + { + "instructor_id": "bds170530", + "overall_grade_rating": 4.11, + "total_grade_count": 15, + "course_ratings": { + "RHET1302": 4.11 + } + } + ], + "cynthia oneill": [ + { + "instructor_id": "cmo180003", + "overall_grade_rating": 2.69, + "total_grade_count": 13, + "course_ratings": { + "ATCM2330": 2.69 + } + } + ], + "jianyao he": [ + { + "instructor_id": "jxh180061", + "overall_grade_rating": 3.62, + "total_grade_count": 32, + "course_ratings": { + "FIN4310": 3.62 + } + } + ], + "maria islam": [ + { + "instructor_id": "mxi061000", + "overall_grade_rating": 4.6, + "total_grade_count": 24, + "course_ratings": { + "GOVT2306": 4.6 + } + } + ], + "ash seidl staley": [ + { + "instructor_id": "ajs131430", + "overall_grade_rating": 4.46, + "total_grade_count": 38, + "course_ratings": { + "HIST1301": 4.46 + } + } + ], + "dagmar heintze": [ + { + "instructor_id": "dxh210027", + "overall_grade_rating": 4.56, + "total_grade_count": 20, + "course_ratings": { + "PSCI4396": 4.56 + } + } + ], + "samantha redig": [ + { + "instructor_id": "slr150130", + "overall_grade_rating": 4.49, + "total_grade_count": 27, + "course_ratings": { + "PSY3310": 4.49 + } + } + ], + "andrew nevin": [ + { + "instructor_id": "asn220005", + "overall_grade_rating": 4.66, + "total_grade_count": 11, + "course_ratings": { + "EPPS6300": 4.66 + } + } + ], + "yeamin faria chowdhury": [ + { + "instructor_id": "yxc200012", + "overall_grade_rating": 4.15, + "total_grade_count": 25, + "course_ratings": { + "GEOG2302": 4.3, + "GEOS2302": 3.99 + } + } + ], + "umme kulsum": [ + { + "instructor_id": "uxk220007", + "overall_grade_rating": 4.44, + "total_grade_count": 20, + "course_ratings": { + "GEOG2303": 4.44 + } + } + ], + "sadman shafiq": [ + { + "instructor_id": "sxs220117", + "overall_grade_rating": 4.3, + "total_grade_count": 28, + "course_ratings": { + "GOVT2306": 4.3 + } + } + ], + "celestin musekura": [ + { + "instructor_id": "cxm120430", + "overall_grade_rating": 4.26, + "total_grade_count": 46, + "course_ratings": { + "IMS6365": 4.26 + } + } + ], + "daniel johnson": [ + { + "instructor_id": "daj240002", + "overall_grade_rating": 4.53, + "total_grade_count": 16, + "course_ratings": { + "PA6313": 4.53 + } + } + ], + "paulina devora": [ + { + "instructor_id": "pvd200000", + "overall_grade_rating": 4.17, + "total_grade_count": 11, + "course_ratings": { + "PSY3361": 4.17 + } + } + ], + "donald macphail": [ + { + "instructor_id": "dcm200000", + "overall_grade_rating": 3.28, + "total_grade_count": 17, + "course_ratings": { + "PSY3393": 3.28 + } + } + ], + "tamnala briggs megafu": [ + { + "instructor_id": "teb200000", + "overall_grade_rating": 4.08, + "total_grade_count": 15, + "course_ratings": { + "SOC4372": 4.08 + } + } + ] +} From 3c2d9ab7ea1ab8ab806aea5177d887c12772d05b Mon Sep 17 00:00:00 2001 From: Giang Pham Date: Wed, 26 Mar 2025 00:35:42 -0500 Subject: [PATCH 02/22] frontend to render RMP data --- client/src/components/SectionContent.tsx | 294 ++++++++++++++++++----- 1 file changed, 239 insertions(+), 55 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index 2de0be7..3961f11 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -1,5 +1,5 @@ import type { Grades, RMPInstructor } from "@utd-grades/db"; -import { Row, Spin } from "antd"; +import { Col, Row, Spin } from "antd"; import { BarElement, CategoryScale, @@ -42,7 +42,6 @@ const GraphContainer = styled.div` @media (max-width: 992px) { & { padding-top: 20px; - margin-bottom: -20px; } } @@ -60,6 +59,7 @@ const Header = styled.h3` font-weight: 700; font-size: 48px; margin-bottom: 0px !important; + margin-top: 6px !important; `; const SubHeader = styled.h5` @@ -67,6 +67,8 @@ const SubHeader = styled.h5` font-weight: 600; font-size: 22px; color: rgb(117, 117, 117); + margin-top: 1rem !important; + margin-bottom: 0rem !important; `; const Stat = styled.h5` @@ -74,6 +76,94 @@ const Stat = styled.h5` font-weight: 600; font-size: 18px; color: rgb(117, 117, 117); + margin-top: 0px !important; + margin-bottom: 0px !important; +`; + +const RMPScore = styled.span` + color: #333333; + + @media (max-width: 992px) { + & { + font-size: 20px; + padding-left: 0.3rem; + line-height: 1; + font-weight: 550; + } + } + + @media (min-width: 992px) { + & { + font-size: 3.5rem; + line-height: 0.8; + font-weight: bolder; + } + } +`; + +const RMPStat = styled.h5` + font-family: var(--font-family); + font-weight: 800; + color: #333333; + margin-top: 0px !important; + margin-bottom: 0px !important; + @media (max-width: 1200px) { + & { + font-size: 1.1rem; + } + } + + @media (min-width: 1200px) { + & { + font-size: 1.6rem; + line-height: 1.3; + } + } +`; + +const RMPDescpription = styled.p` + font-weight: 400; + margin-top: 0px !important; + margin-bottom: 0px !important; + @media (max-width: 768px) { + & { + font-size: 0.8rem; + } + } + + @media (min-width: 768px) and (max-width: 1200px) { + & { + font-size: 0.7rem; + } + } + + @media (min-width: 1200px) { + & { + font-size: 0.8rem; + } + } +`; + +const RMPTag = styled.p` + border-radius: 1rem; + background-color: #f0f0f0; + padding: 0.5rem 1rem; + margin-right: 1rem; + box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; +`; + +const RMPHeader = styled.a` + font-family: var(--font-family); + font-weight: 700; + font-size: 1.15rem; + text-decoration: underline !important; + color: #333 !important; + + @media (max-width: 768px) { + & { + font-size: 0.8rem; + } + } `; const Section = styled.span` @@ -89,7 +179,7 @@ const OtherSectionsHeader = styled.p` `; const OtherSectionsRow = styled(Row)` - padding-top: 50px; + padding-top: 3rem; `; const SectionsContainer = styled.div` @@ -110,6 +200,68 @@ const Stack = styled.div` flex-direction: column; `; +const OrderedStack = styled.div` + @media (max-width: 992px) { + & { + display: flex; + flex-direction: row; + align-items: flex-end; + } + } + @media (min-width: 992px) { + & { + display: flex; + flex-direction: column; + justify-content: center; + padding-right: 2rem; + } + } +`; + +const OrderedFirst = styled.div` + @media (min-width: 992px) { + & { + order: 1; + } + } + @media (max-width: 992px) { + & { + order: 2; + } + } +`; + +const OrderedSecond = styled.div` + font-family: var(--font-family); + color: rgb(117, 117, 117); + font-weight: 600; + font-size: 18px; + + @media (min-width: 992px) { + & { + order: 2; + text-align: center; + } + } + @media (max-width: 992px) { + & { + order: 1; + align-self: center; + padding-top: 1rem; + } + } +`; + +const FlexSmall = styled.div` + @media (min-width: 992px) { + & { + display: flex; + flex-direction: row; + justify-content: space-between; + } + } +`; + interface SectionContentProps { relatedSections: Grades[]; section: Grades; @@ -175,66 +327,98 @@ export default function SectionContent({ return ( -
- {section.subject} {section.catalogNumber} -
.{section.section}
-
- - {/* FIXME (no professor): non null assertion */} - {section.instructor1!.last}, {section.instructor1!.first} -{" "} - {`${section.semester.season} ${section.semester.year}`} - - - Total Students {section.totalStudents} - - - - Would take again{" "} - - {instructor?.would_take_again !== undefined && instructor.would_take_again !== -1 - ? `${instructor.would_take_again} %` - : "N/A"} - - - - Quality rating{" "} - - {instructor?.quality_rating ? `${instructor.quality_rating}` : "N/A"} - - - - Difficulty rating{" "} - - {instructor?.difficulty_rating ? `${instructor.difficulty_rating}` : "N/A"} - - - - Course rating{" "} - {courseRating ? `${courseRating}` : "N/A"} - - - Tags:{" "} - {instructor?.tags ? ( - instructor.tags.split(",").map((tag, index) => ( + + +
+ {section.subject} {section.catalogNumber} +
.{section.section}
+
+ + {/* FIXME (no professor): non null assertion */} + {section.instructor1!.last}, {section.instructor1!.first} -{" "} + {`${section.semester.season} ${section.semester.year}`} + +
+ + + {instructor?.quality_rating ? instructor.quality_rating : "N/A"} - {tag} + {instructor?.quality_rating ? "/5" : ""} - )) - ) : ( - N/A - )} + + + RMP SCORE + +
+ + Total Students {section.totalStudents}
- - - - + + + + + + + + + + + + PROFESSOR DETAILS + + + + {courseRating} + Course rating + + + + {" "} + {instructor?.difficulty_rating ? instructor.difficulty_rating : `N/A`} + + Level of difficulty + + + + {" "} + {instructor?.would_take_again ? `${instructor.would_take_again}%` : `N/A`} + + Would take again + + + {instructor?.ratings_count ? instructor.ratings_count : `N/A`} + Ratings count + + + + {instructor?.tags && ( + <> +

Tags

+ + {instructor.tags.split(",").map((tag) => ( + {tag} + ))} + + + )} + Other Sections {renderRelatedSections()} From fbbf78d6cd703f4ac198517c43501986d9ef69a1 Mon Sep 17 00:00:00 2001 From: Giang Pham Date: Wed, 26 Mar 2025 11:46:55 -0500 Subject: [PATCH 03/22] fix bug: data not changing between sections + N/A before RMP data fully loaded --- client/src/components/SearchResults.tsx | 36 +++++++++---------- client/src/components/SectionContent.tsx | 46 ++++++++++++------------ 2 files changed, 42 insertions(+), 40 deletions(-) diff --git a/client/src/components/SearchResults.tsx b/client/src/components/SearchResults.tsx index 6bb6f80..8f37be0 100644 --- a/client/src/components/SearchResults.tsx +++ b/client/src/components/SearchResults.tsx @@ -94,7 +94,7 @@ export default function Results({ search, sectionId, router }: ResultsProps) { { enabled: !!section } ); - // some professors will have the same name so we need to get the whole list + // some professors have the same name so we need to get the whole list const normalName: string = normalizeName( `${section?.instructor1?.first} ${section?.instructor1?.last}` ); @@ -107,26 +107,26 @@ export default function Results({ search, sectionId, router }: ResultsProps) { // from that list, we need to find the one that holds the session -> update the instructor and course rating const [instructor, setInstructor] = useState(); + const [courseRating, setCourseRating] = useState(null); - const { data: courseRating = null } = useQuery( - ["rating", sectionId], - () => { - if (instructors) { - for (const ins of instructors) { - const rating = db!.getCourseRating( - ins.instructor_id, - `${section!.subject}${section!.catalogNumber}` - ) as number | null; - if (rating) { - setInstructor(ins); - return rating; - } + useEffect(() => { + if (instructors && section) { + for (const ins of instructors) { + const rating = db!.getCourseRating( + ins.instructor_id, + `${section.subject}${section.catalogNumber}` + ); + if (rating) { + setInstructor(ins); + setCourseRating(rating); + break; } } - return null; - }, - { enabled: !!section && !!instructors } - ); + } else { + setInstructor(undefined); + setCourseRating(null); + } + }, [instructors, section, db]); useEffect(() => { // Automatically select section if there is only one choice diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index 3961f11..c7b78e1 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -382,28 +382,30 @@ export default function SectionContent({ PROFESSOR DETAILS - - {courseRating} - Course rating - - - - {" "} - {instructor?.difficulty_rating ? instructor.difficulty_rating : `N/A`} - - Level of difficulty - - - - {" "} - {instructor?.would_take_again ? `${instructor.would_take_again}%` : `N/A`} - - Would take again - - - {instructor?.ratings_count ? instructor.ratings_count : `N/A`} - Ratings count - + {instructor && courseRating ? ( + <> + + {courseRating ? courseRating : `N/A`} + Course rating + + + + {instructor?.difficulty_rating ? instructor.difficulty_rating : `N/A`} + + Level of difficulty + + + + {instructor?.would_take_again ? `${instructor.would_take_again}%` : `N/A`} + + Would take again + + + {instructor?.ratings_count ? instructor.ratings_count : `N/A`} + Ratings count + + + ) : null}
From c7f972964262746c9f2e36a5e9db42a5e5c11fc0 Mon Sep 17 00:00:00 2001 From: Evan Wright Date: Sat, 8 Mar 2025 11:50:11 -0600 Subject: [PATCH 04/22] feat: added grade distribution for Summer 2024 (#66) Co-authored-by: Mike Nguyen <34334226+DedsecKnight@users.noreply.github.com> --- raw_data/Summer 2024.csv | 495 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 495 insertions(+) create mode 100644 raw_data/Summer 2024.csv diff --git a/raw_data/Summer 2024.csv b/raw_data/Summer 2024.csv new file mode 100644 index 0000000..f289ed2 --- /dev/null +++ b/raw_data/Summer 2024.csv @@ -0,0 +1,495 @@ +Subject,Catalog Nbr,Section,A+,A,A-,B+,B,B-,C+,C,C-,D+,D,D-,F,CR,I,NC,W,P,Instructor 1,Instructor 2,Instructor 3,Instructor 4,Instructor 5,Instructor 6 +ACCT,2302,5U1,2,4,,4,10,,4,9,,2,1,,,,,,1,,"Zolton, Kathy","Johnson, Jennifer G","Zhou, Junfei",,, +ACCT,3312,5U1,4,9,4,9,1,4,,,1,,,,,,,,,,"Johnson, Jennifer G","Zhou, Junfei",,,, +ACCT,3331,5U1,3,2,1,1,1,,5,,1,2,1,,1,,,,1,,"Zhou, Yibin","Chen, Hangu",,,, +ACCT,3350,5U1,4,5,3,,3,3,4,4,1,2,,,,,,,,,"Gamino, John P",,,,, +ACCT,4334,5U1,,1,4,3,6,1,3,1,1,,,,1,,,,,,"Hes, Christopher","Zhou, Junfei",,,, +ACCT,6202,0W1,,13,12,15,13,6,3,2,,,,,2,,,,1,,"Janakiraman, Surya N","Ai, Lanru",,,, +ACCT,6301,5U1,,9,1,,,,,,,,,,,,,,,,"Solcher, Steven J",,,,, +ACCT,6305,0W1,,3,5,4,2,1,1,,,,,,,,,,,,"Janakiraman, Surya N","Ai, Lanru",,,, +ACCT,6338,0W1,,6,,1,10,,,4,,,,,,,,,4,,"Goodrich, Mary Beth W",,,,, +ACCT,6344,0W1,,14,22,4,6,6,1,,,,,,,,,,1,,"Gurun, Umit G","Yayvak, Berk",,,, +ACCT,6353,PPA,,7,9,7,1,2,,,,,,,,,,,,,"Solcher, Steven J",,,,, +ACCT,6365,5U1,,8,5,13,7,4,8,2,,,,,1,,,,,,"Cheng, Samuel",,,,, +ACCT,6367,5U1,,23,12,1,6,1,,1,,,,,1,,,,,,"Gamino, John P","Frost, Sandra M",,,, +ACCT,6377,5U1,,45,9,1,1,,,,,,,,,,,,,,"Ballew, Gregory","Liu, Ruichao",,,, +ACCT,6384,0W1,,39,10,3,4,2,,2,,,,,1,,,,,,"Kromer, Jeffrey R","Chen, Hangu",,,, +ACCT,6392,5U1,,5,25,5,17,10,6,2,,,,,,,,,,,"Hes, Christopher",,,,, +ACCT,6394,XH1,,20,,,,,,,,,,,,,,,,,"McNulty, Diane S","Hemmig, Ray",,,, +ACN,6395,0W1,,20,,,,,,,,,,,,,,,,,"Hooge, Kimberley D",,,,, +AMS,2300,091,4,2,,,,,,3,,,1,,2,,,,,,"Hammonds, Kyle",,,,, +AMS,3316,0W1,11,6,1,1,,,1,,,,,,,,,,2,,"Winstead, Elizabeth L",,,,, +AMS,3350,0W1,6,2,1,2,,,,,,,,,,,,,3,,"Winstead, Elizabeth L",,,,, +ANGM,2309,0W1,1,11,1,,2,,,,2,,,,2,,,,,,"Fechter, Todd A","Khamsehnezhad, Mozhdeh",,,, +ANGM,3305,0W1,,2,1,4,2,3,2,3,2,,,,5,,,,,,"Manriquez, Robert J",,,,, +ANGM,3306,0W1,1,5,8,3,4,2,1,1,,,,,1,,,,1,,"Lewis, Timothy M",,,,, +ANGM,3307,0W1,,4,4,,2,2,,2,,,,,1,,,,,,"McCord, Peter A",,,,, +ANGM,3308,0W1,7,5,1,1,3,4,1,2,,1,,,2,,,,1,,"Porritt, Joseph L",,,,, +ANGM,3338,0W1,7,3,7,2,1,,,1,1,,,,3,,,,,,"Griffin, Troy",,,,, +ANGM,3367,0W1,2,5,7,2,3,,2,,1,,1,,1,,,,,,"Lewis, Timothy M",,,,, +ANGM,3368,0W1,5,4,2,4,2,2,2,1,1,1,,2,1,,,,1,,"Chandler, Adam W",,,,, +ARTS,1301,0W1,34,5,1,2,,1,1,1,,1,,,1,,,,,,"Wilder, James E","Daneshvarkashkooli, Marjan","Takaloubighash, Maryam",,, +ARTS,3379,0W1,,5,2,1,3,,,,,,,,4,,,,,,"Loving, Emily A",,,,, +ARTS,3383,0W1,,3,2,2,,,1,,,1,,,1,,,,,,"Higgins-Stirrup, Brynn",,,,, +ATCM,2300,0W1,7,3,3,3,,3,2,2,2,,,1,,,,,,,"Martinez Ochoa, Angelica M","Welwood, Samantha F",,,, +ATCM,2300,0W2,11,9,3,,1,,,,,,,,1,,,,1,,"Khatri, Hamida","Rahman, Mohammad K",,,, +ATCM,2302,0U1,2,3,2,2,,2,,,1,,,,,,,,,,"Ashouri, Shaghayegh",,,,, +ATCM,2321,0W1,,,7,3,4,2,1,,1,,,,,,,,,,"Whitlock, Kathryn","Vo, Angelene H",,,, +ATCM,2330,0W1,,,1,,2,3,,,2,,,,2,,,,,,"Nielsen, Christina R","Ayodabo, Sunday J",,,, +ATCM,2350,0U1,3,4,2,,1,,,,,,,,,,,,,,"Yu, Yiding",,,,, +ATCM,3301,0W2,,6,3,,1,,2,1,,,,,3,,,,,,"Chowdhury, Nusrat Zahan","Rahman, Maruf",,,, +ATCM,3337,0W1,7,,,1,,,,,2,,,,1,,,,1,,"Wood, Harold G",,,,, +ATCM,3350,0W1,4,3,3,,2,,1,1,,,,1,1,,,,,,"Hewitt, Sharon A",,,,, +ATCM,3388,0W1,5,5,7,,,1,,,,,,,,,,,,,"Fraley, James M","Hernandez, Luke A",,,, +ATCM,4319,0S1,,23,1,,2,,,,,,,,1,,,,,,"McComber, Sean J",,,,, +ATCM,4326,0W1,8,4,1,2,,,1,,1,,,,1,,,,,,"Heaslip, Audra","Cole, Abby",,,, +ATCM,4330,0W1,,3,3,2,1,,,1,,1,1,,1,,,,,,"Nielsen, Christina R","Amartey, Belinda",,,, +ATCM,4350,0W1,2,1,2,2,1,1,1,,1,,,,2,,,,,,"Hewitt, Sharon A",,,,, +ATCM,4384,551,4,12,,,,,,,,,,,,,,,,,"Sen Gupta, Karl S",,,,, +AUD,6216,0U1,,10,3,1,1,,,,,,,,,,,,,,"Cokely, Carol G",,,,, +AUD,6352,0U1,,27,,,2,,,,,,,,,,,,,,"Clark, Jackie L","Crow, Sarah E",,,, +AUD,7240,5U1,,3,3,4,3,,,,,,,,,,,,,,"Griffiths, Scott K",,,,, +AUD,7280,064,,,,,,,,,,,,,,,,,,15,"Fowler-Brookman, Stephanie L","Mosley, Cornetta",,,, +AUD,7280,070,,,,,,,,,,,,,,,,,,14,"Clark, Jackie L",,,,, +AUD,7325,5U1,,14,,,,,,,,,,,,,,,,,"Thibodeau, Linda K","Mosley, Cornetta","Qi, Shuang",,, +AUD,8V97,064,,,,,,,,,,,,,,,,,,14,"Cokely, Carol G",,,,, +BA,1320,0U1,2,3,3,2,3,2,,,,,,,,,,,,,"Blueshtein, Moran","Zhang, Qiyan",,,, +BA,4090,091,,,,,,,,,,,,,,35,,,,,"Henderson, Thomas C",,,,, +BA,4090,092,,,,,,,,,,,,,,23,,,,,"Gamino, John P",,,,, +BA,4090,0U1,,,,,,,,,,,,,,24,,1,,,"Henderson, Thomas C",,,,, +BA,4090,0U2,,,,,,,,,,,,,,19,,2,1,,"Gamino, John P",,,,, +BA,4095,0W1,,,,,,,,,,,,,,37,,,,,"Owens, Dawn M",,,,, +BA,4095,0W2,,,,,,,,,,,,,,10,,,,,"Owens, Dawn M",,,,, +BA,4V90,0U3,,,,,,,,,,,,,,28,,,,,"Henderson, Thomas C",,,,, +BA,4V90,593,,,,,,,,,,,,,,20,,,,,"Henderson, Thomas C",,,,, +BCOM,3300,051,1,6,12,3,8,3,,1,1,,,,3,,,,,,"Ali, Shazia",,,,, +BCOM,4300,0U2,,2,6,3,5,2,,1,1,,,,,,,,,,"Fry, Jennifer L",,,,, +BCOM,4300,0U4,1,,4,5,6,2,2,1,1,2,,,,,,,1,,"Harrison, Megan",,,,, +BCOM,4300,5U1,4,5,3,1,,,,,,,,,,,,,1,,"McCrady, Victoria D",,,,, +BCOM,4300,5U2,2,8,9,8,4,5,1,,1,,,,,,,,,,"Moore, Sarah E",,,,, +BIOL,2111,0U1,19,3,4,4,3,3,2,,,,,,1,,,,1,,"Sarcar, Subha",,,,, +BIOL,2112,0U1,13,11,3,,8,4,2,2,,1,1,1,6,,,,,,"Wu, Zhuoru","Xu, Linyi",,,, +BIOL,2281,3U1,3,4,5,2,,1,1,,,,,,,,,,1,,"Lin, Wen J","Briggs, Alyssa A","Dalvi, Hrishikesh H","Liu, Junyu","Liu, Yihan","Maity, Tuhina" +BIOL,2281,3U2,,3,,3,1,3,,,,,,,,,,,,,"Lin, Wen J","Briggs, Alyssa A","Liu, Junyu","Liu, Yihan","Maity, Tuhina","Basu, Ujjaini" +BIOL,2281,3U3,2,1,1,2,3,2,1,,2,,1,,1,,,,,,"Lin, Wen J","Briggs, Alyssa A","Dalvi, Hrishikesh H","Liu, Junyu","Liu, Yihan","Maity, Tuhina" +BIOL,2311,0U1,19,3,4,4,3,3,2,,,,,,1,,,,1,,"Sarcar, Subha","Camp, John M",,,, +BIOL,2312,0U1,13,11,3,,8,4,2,2,,1,1,1,6,,,,,,"Wu, Zhuoru","Tiwari, Suman","Thomas, Nathaniel","Xu, Linyi",, +BIOL,3101,0U1,49,37,18,43,22,16,11,9,4,2,1,3,1,,,,,,"Srikanth, Uma",,,,, +BIOL,3102,0U1,2,1,1,2,4,2,1,,,,,,,,,,,,"Sarcar, Subha",,,,, +BIOL,3161,0U1,7,7,15,11,10,7,2,2,,2,,,1,,,,,,"Candas, Mehmet","Boyd, Stefanie D",,,, +BIOL,3162,0U1,,5,3,3,8,3,,1,1,,,,1,,,,,,"Candas, Mehmet","Boyd, Stefanie D",,,, +BIOL,3203,1U1,9,3,,,,,,,,,,,,,,,,,"Gomez, Amy Jo M","Bonde, Namrata Dinesh","Wickramasinghe, Piumi B",,, +BIOL,3203,1U2,8,3,,,,,,,,,,,,,,,,,"Gomez, Amy Jo M","Wickramasinghe, Piumi B","Bonde, Namrata Dinesh",,, +BIOL,3301,0U1,49,37,18,43,22,16,11,9,4,2,1,3,1,,,,1,,"Srikanth, Uma","Afolami, Olufemi Ifeoluwa","Salaudeen, Ibrahim O","Maiti, Dibyo","Patel, Umar J","Maity, Subhajit" +BIOL,3302,0U1,2,1,1,2,4,2,1,,,,,,,,,,,,"Sarcar, Subha","Yamauchi, Stephanie A",,,, +BIOL,3303,0U1,,6,7,4,7,4,4,2,,1,,,,,,,,,"Boyd, Stefanie D",,,,, +BIOL,3318,0U1,15,16,9,1,,1,,1,,,,,,,,,,,"Gomez, Amy Jo M","Chacon Castro, Maria Del Carmen","Elhawary, Ezzeldin N",,, +BIOL,3361,0U1,6,5,11,9,9,7,2,2,,2,,,1,,,,1,,"Boyd, Stefanie D","Candas, Mehmet",,,, +BIOL,3362,0U1,,4,1,3,8,3,,1,1,,,,1,,,,,,"Boyd, Stefanie D","Candas, Mehmet","Petter, Andrew T","Sunder Singh, Jacqulene Preethi",, +BIOL,3380,3U1,1,2,4,2,2,1,1,2,2,,,,2,,,,,,"Rippel, Scott A","Pickett, Elizabeth A","Shi, Zhan",,, +BIOL,3380,3U3,1,1,2,,3,,1,,1,1,2,1,1,,,,,,"Rippel, Scott A","Pickett, Elizabeth A","Zhi, Jiahe",,, +BIOL,3380,3U4,,1,4,2,1,1,,1,1,1,1,1,1,,,,,,"Pickett, Elizabeth A","Rippel, Scott A","Falah, Rafah M",,, +BIOL,3455,3U1,,1,3,3,4,3,,4,3,2,1,1,,,,,2,,"Ramirez, Ruben D",,,,, +BIOL,3456,3U1,,2,1,1,3,3,3,,,,,,,,,,,,"Yu, Wen-Ho","Zhang, Nan",,,, +BIOL,3V00,0W1,9,16,7,1,2,,,,,,,1,,,,,,,"Candas, Mehmet",,,,, +BIOL,4380,3U1,3,3,2,2,2,1,1,1,,,,,,,,,,,"Sadat, Eva L","Konakalla, Anisha Reddy","Joshi, Ketki","Shryock, Douglas G","Hari Prasad, Vineeth", +BIS,2190,0W1,1,3,2,2,2,5,,,,,,,2,,,,,,"Dornback, Sarah",,,,, +BIS,3320,0U1,3,5,2,1,1,3,,,,,,,,,,,,,"Wright, David A",,,,, +BLAW,2301,5U1,,6,2,2,4,4,4,1,5,,2,,,,,,2,,"Betanzos, Christina L",,,,, +BMEN,3200,0U1,,18,1,2,1,1,,,1,,,,,,,,,,"Rivera, Christian","Kang, Gu Eon","Stout, Angeloh M",,, +BMEN,3302,051,1,2,,2,1,3,3,2,,,,,,,,,,,"Ali, Tariq M","Kian Pour, Bahareh",,,, +BMEN,3320,051,1,2,2,2,,2,1,1,,,,,,,,,,,"Ali, Tariq M","Kian Pour, Bahareh",,,, +BMEN,4388,0U1,,4,6,4,8,5,2,,1,,,,,,,,,,"Polk, Todd W",,,,, +BPS,4305,5U1,1,9,6,4,,,,,,,,,,,,,,,"Song, You-Xiang",,,,, +BPS,4395,5U1,5,35,,5,,,,,,,,,,,,,,,"Henderson, Thomas C",,,,, +BPS,4395,5U2,32,10,5,,,,,,,,,,,,,,,,"Stogsdill, Robert",,,,, +BPS,6310,0W1,,17,1,1,1,,,1,,,,,,,,,,,"Kaplan, Marilyn R",,,,, +BPS,6310,GW1,,6,3,2,3,1,,,,,,,,,,,,,"Choi, Emily",,,,, +BPS,7303,0U1,,15,,,,,,,,,,,,,,,,,"Watson, John M",,,,, +BUAN,4090,091,,,,,,,,,,,,,,28,,,,,"Akarte, Prajakti V",,,,, +BUAN,4090,0U1,,,,,,,,,,,,,,23,,,,,"Akarte, Prajakti V",,,,, +BUAN,6009,091,,,,,,,,,,,,,,,,,,33,"Shekhar, Gaurav",,,,, +BUAN,6009,0U1,,,,,,,,,,,,,,,,,,61,"Shekhar, Gaurav",,,,, +BUAN,6009,SU1,,,,,,,,,,,,,2,,,,,19,"Hefley, William E",,,,, +BUAN,6312,0W1,,3,2,2,2,1,,2,,,,,1,,,,,,"Blueshtein, Moran","Zhang, Qiyan",,,, +BUAN,6312,SW1,,5,2,1,2,,,,,,,,,,,,,,"Blueshtein, Moran",,,,, +BUAN,6320,5U1,,12,7,3,4,,,,,,,,,,,,,,"El-khodari, Gasan E","Pujari, Shrutika",,,, +BUAN,6337,0W1,,2,2,2,3,3,,,,,,,,,,,,,"Subramanian, Upender","Ding, Yuchen","Saremi, Ehsan",,, +BUAN,6340,SW1,,5,4,1,,,,,,,,,,,,,,,"Koju, Vijay",,,,, +BUAN,6341,SW1,,7,,2,,3,,1,,,,,2,,,,,,"Smashnov, Uri",,,,, +BUAN,6344,0W1,,4,1,1,4,,,,,,,,,,,,,,"Mehra, Amit","Chen, Luoying",,,, +BUAN,6359,5U1,,4,,1,2,2,1,1,,,,,1,,,,,,"Ramezani, Rasoul","Kurucak, Abdurrahman",,,, +BUAN,6398,5U1,,6,3,3,5,3,,,,,,,,,,,,,"Nguyen, Hien T","Tahergandomabadi, Mohammadmahdi",,,, +BUAN,6398,SU1,,8,2,3,2,3,,2,,,,,,,,,,,"Nguyen, Hien T",,,,, +BUAN,6398,SW1,,3,2,4,1,,,,,,,,,,,,,,"Sethi, Avanti P",,,,, +BUAN,6V98,0U1,,,,,,,,,,,,,,,,,,23,"Shekhar, Gaurav",,,,, +CE,2301,0U1,6,,1,2,2,,2,1,,,,,,,,,,,"Fahimi, Babak","Koech, Mercy C",,,, +CE,3161,0W1,,3,2,4,1,,,,,,,,,,,,,,"Mezenner, Rabah","Islam, Farzana",,,, +CE,3201,0U1,1,5,,1,,,,1,,,2,,,,,,,,"Nikoubin Boroujeni, Tooraj","Khalesidoost, Sina","Datta, Rajesh K",,, +CE,3303,0H1,2,1,1,1,2,1,,1,1,,,,2,,,,,,"Kehtarnavaz, Nasser","Dai, Jiazhi",,,, +CE,3311,5U1,,,2,3,2,,5,1,,,,,,,,,,,"Lee, Hoi","Yao, Yifan","Ghosh, Prosenjit Kumar",,, +CE,4389,0U1,,7,,4,,,,,,,,,,,,,,,"Tacca, Marco",,,,, +CHEM,1111,1U2,3,2,3,1,1,,,1,,,,,4,,,,,,"Cortes, Sergio","Brown, Monet R","Budhathoki, Prakriti","Borah, Kongkona","Ullah, Najeeb","Mazhar, Noreen" +CHEM,1112,1U1,5,4,3,,,1,1,1,1,1,,,1,,,,,,"Abeykoon, Nimali C","Gaspar, Miguel A","Ghafari, Mozhdeh","Igie, Nosakhare F","Iqbal, Nafees","Umer, Arslan" +CHEM,1112,1U2,5,5,,2,2,1,,1,,1,,,,,,,,,"Abeykoon, Nimali C","Koirala, Shailendra","Mir Sharifian, Arefehsadat","Najjari, Aryan","Qasimi, Nazer Hossain","Odeyemi, Isaiah O" +CHEM,1311,0U1,3,1,6,6,6,3,1,1,3,1,,1,6,,,,2,,"Sra, Amandeep K","Shende, Prapti M","Subramanian, Yaamini",,, +CHEM,1312,0U1,5,10,10,8,11,17,5,10,9,,3,1,6,,,,,,"Huang, Yu","Bonnand, Evan F","Howlett, Thomas S",,, +CHEM,2233,3U1,11,5,2,,,,,,,,,,,,,,,,"Cortes, Sergio","Neal, Henry","Deo, Nitish Kumar","Al-Kharji, Noora M","Rajapaksha Mudiyanselage, Gaveshika Madushani Rajapaksha","Ehrman, Ryanne N" +CHEM,2323,0U1,11,12,4,3,6,4,6,3,5,4,8,,10,,,,,,"Tran, Daniel N",,,,, +CHEM,2325,0U1,7,2,2,1,5,4,6,4,4,1,1,,3,,,,,,"Sibert, John W",,,,, +CHEM,3361,0U1,,2,4,2,1,1,,,,,,,,,,,,,"Boyd, Stefanie D","Candas, Mehmet",,,, +CHEM,8V91,039,,,,,,,,,,,,,,,,,1,10,"Meloni, Gabriele",,,,, +CHEM,8V91,046,,,,,,,,,,,,,,,,,,10,"Fasan, Rudi",,,,, +CLDP,3342,0W1,,18,,,4,,,1,,,1,,,,,,,,"Bonner, Deborah","Gholap, Neha P",,,, +COMD,5340,0H1,,21,,,3,,,,,,,,,,,,,,"Neale, Hannah D","Cullinan, McKenzie B",,,, +COMD,6101,0W1,,,,,,,,,,,,,,,,,,11,"Dean, Lucinda L",,,,, +COMD,6106,0W1,,,,,,,,,,,,,,,,,,10,"Sale, Felicity F",,,,, +COMD,6109,0W1,,,,,,,,,,,,,,,,,,12,"Kenedi, A Helen I",,,,, +COMD,6112,0W1,,,,,,,,,,,,,,,,,,18,"Walsh, Diane G",,,,, +COMD,6240,0U1,,15,,,,,,,,,,,,,,,,,"Touchstone, Emily W",,,,, +COMD,6320,0U1,,19,,,3,,,,,,,,,,,,,,"Carter, Jessica A","Smith, Irma E",,,, +COMD,7303,0U1,,89,,,14,,,1,,,,,,,,,,,"Dean, Lucinda L","Kenedi, A Helen I",,,, +COMD,7323,0U1,,13,,,3,,,,,,,,,,,,,,"Sweeney, Melissa H",,,,, +COMD,7V68,0U1,,54,,,,,,,,,,,,,,,,,"Sale, Felicity F",,,,, +COMD,7V86,0U1,,24,1,,,,,,,,,,,,,,,,"Rich, Judith B","Sharma, Susmi",,,, +COMM,1311,0H1,10,2,,1,,,,,,,,,,,,,1,,"Tanner, Lari J",,,,, +COMM,1311,0W1,6,2,1,6,1,,1,1,,1,,1,3,,,,,,"Sova, Melodee L",,,,, +COMM,1311,0W2,5,4,5,3,5,,1,,,,,,1,,,,,,"Fraley, James M",,,,, +COMM,1311,0W3,,11,8,,,,,,1,,,1,,,,,,,"Mckee-Williams, Candie D",,,,, +COMM,1315,0W1,13,3,1,1,,1,,,,,,,1,,,,,,"Saenz, Michael A",,,,, +COMM,3352,0W1,,14,,1,1,1,2,,,1,,,,,,,,,"Johnson, Janet L",,,,, +COMM,4380,0S1,,10,2,6,2,2,,2,1,,,,2,,,,,,"King, Carie S",,,,, +CRIM,1307,0U1,2,,6,1,1,,,,,,,1,,,,,,,"Lee, Jaebom","Olszewski, Hailey",,,, +CRIM,3301,0W1,7,7,5,2,2,,,,,,,,1,,,,,,"Manuel, Samantha A",,,,, +CRIM,3302,0W1,3,6,3,1,,,,,1,,,,,,,,,,"Hong, Sunmin",,,,, +CRIM,3310,0W1,,15,4,6,7,3,,2,,,1,1,1,,,,,,"Yoon, Minyeong","Escobedo, Allison E",,,, +CRIM,6314,5U1,,11,1,,,,,,,,,,,,,,,,"Getty, Ryan M","Wang, Wenyi",,,, +CRWT,2301,0W2,6,3,1,,2,1,,,,,,,,,,,,,"Baker, Matthew W",,,,, +CRWT,3306,5W1,3,8,,,,,,1,,,,,,,,,,,"Martinez, Manuel L",,,,, +CRWT,3354,0W1,1,7,4,,1,1,,,,,,,,,,,,,"Goldberg, Paula",,,,, +CRWT,3354,5W2,,11,1,1,1,,,,,,,,,,,,,,"Goldberg, Paula",,,,, +CS,1325,0U1,,2,5,2,,2,,1,,,,1,,,,,,,"Feng, Ranran","Hatfield, Cody R",,,, +CS,1335,5U1,,5,5,2,,,,,,,,,,,,,,,"Davis, Chris I","Miao, Miao",,,, +CS,1337,0U1,1,1,4,3,1,3,2,2,,,,,1,,,,,,"Gupta, Neeraj K","Ou, Yuzhe",,,, +CS,1337,5W1,1,4,7,5,5,2,2,2,1,1,,,3,,,,1,,"Dollinger, Scott M","Bansal, Rishita",,,, +CS,2305,0U1,3,4,3,4,7,2,1,1,,,,,2,,,,,,"Chitturi, Bhadrachalam","Xu, Ruoyu",,,, +CS,2336,5U1,8,23,2,2,9,,1,1,,,,,1,,,,,,"Khan, Kamran Z","Zhang, Yue","Mao, Ruiyu",,, +CS,2340,0U1,5,4,5,2,3,5,1,2,2,,1,,,,,,,,"Karami, Gity","Golivand Darvishvand, Fateme",,,, +CS,3305,0W1,,1,6,3,6,3,1,6,1,,,,1,,,,,,"Ntafos, Simeon C","Aggarwal, Alakh",,,, +CS,3305,5U1,,4,,4,1,2,1,,,,,,,,,,1,,"Chitturi, Bhadrachalam",Jishnu J,,,, +CS,3341,0U1,,3,,,2,2,5,4,1,1,1,2,2,,,,,,"Guo, Huizhen","Zhao, Kun","Kim, Jimi",,, +CS,3345,0U1,4,6,2,3,3,3,3,2,1,1,,,3,,,,,,"Zhao, Yi","Tenali, Pranuthi",,,, +CS,3354,0U1,,1,1,4,5,10,2,4,4,1,3,,,,,,,,"Paulk, Mark C","Rathnasuriya, Ravishka S","Chen, Zizhao",,, +CS,3377,0U1,8,12,5,3,4,2,1,1,,1,,,,,,,1,,"Feng, Ranran","Sipai, Sushila","Dasgupta, Sopam",,, +CS,4141,6U1,9,4,2,1,,1,,,,,,,,,,,,,"Nguyen, Nhut","Ocampo Diaz, Gerardo",,,, +CS,4141,6U2,3,7,6,,2,,,,,,,,,,,,,,"Nguyen, Nhut","Alshomar, Ahmad",,,, +CS,4337,0U1,4,7,3,7,7,3,1,5,1,2,1,1,2,,,,,,"Omer, Jalal S","Hatfield, Cody R","Zhao, Yichen",,, +CS,4341,0U1,,2,2,3,5,4,5,3,5,,10,2,,,,,,,"Nguyen, Nhut","Omidi, Zahra",,,, +CS,4347,0U2,6,4,2,2,9,2,5,3,5,1,3,,,,,,,,"Omer, Jalal S","Birashk, Amin","Mohan, Sudharssan T",,, +CS,4348,0U1,1,5,4,6,6,3,,1,1,,1,,2,,,,,,"Prakash, Ravi","Nik Khah, Arman",Jishnu J,,, +CS,4348,0U2,1,3,5,1,3,,,,,,1,,1,,,,1,,"Mittal, Neeraj","Sipai, Sushila",,,, +CS,4349,0U1,,15,1,,12,,,2,,,1,,,,,,,,"Guo, Yunhui","Lu, Yangxiao",,,, +CS,4352,0S1,10,7,,,,,,,,,,,,,,,,,"Orrick, Erika D",,,,, +CS,4352,0W1,3,24,14,6,8,2,,1,,,,,,,,,1,,"Kumar, Pushpa S","Guo, Hung-Jui","Singhal, Yatharth",,, +CS,4365,5U1,14,16,,8,4,3,2,2,,,,,1,,,,,,"Khan, Kamran Z","Mao, Ruiyu","Zhang, Yue",,, +CS,4375,5U1,11,11,9,11,6,2,5,,,,,,,,,,,,"Nagar, Anurag","Wang, Guanghua","Su, Ke",,, +CS,4376,0U1,1,2,3,4,2,3,2,3,2,,2,1,,,,,,,"Chung, Lawrence","Pham, To Kim Bao",,,, +CS,4384,0U1,,19,9,10,7,4,1,5,6,,1,,,,,,2,,"Davis, Chris I","Lee, Jaeseong","Xu, Ouyang",,, +CS,4390,0U1,,4,2,4,6,5,6,1,2,1,,,3,,,,3,,"Gupta, Neeraj K","Das, Souvik","Rathnasuriya, Ravishka S",,, +CS,4485,0W1,10,5,,,2,1,,,,,,,,,,,,,"Razo-Razo, Miguel Angel",,,,, +CS,6301,0U1,,37,,,,,,,,,,,,,,,,,"Thuraisingham, Bhavani M","Bin Munir, Muhaimin",,,, +CS,6314,0U1,,16,3,,,1,1,,,,,,,,,,,,"Karami, Gity","He, Kaiyu",,,, +CS,6350,0U1,,10,6,2,,,,,,,,,,,,,,,"Nagar, Anurag","Su, Ke",,,, +CS,6364,0U1,,13,4,6,2,,,,,,,,,,,,,,"Schweitzer, Haim","Mao, Wei",,,, +CS,6375,5U1,,8,4,2,5,1,,,,,,,,,,,1,,"Schweitzer, Haim","Mao, Wei",,,, +CS,6375,MU1,,11,3,1,,,,,,,,,,,,,,,"Nagar, Anurag",,,,, +DANC,1305,0W1,,15,2,4,1,1,,1,,,,,1,,,,,,"Saba, Monica M",,,,, +DANC,1310,0W1,7,14,,,5,,,1,,,,,1,,,,1,,"Johnson, Melissa A",,,,, +DBUA,7415,SS1,,3,3,3,1,,,,,,,,,,,,,,"Singh, Harpreet",,,,, +ECON,2301,0U1,4,1,,4,,,,2,1,1,2,,1,,,,,,"Islam, Azharul",,,,, +ECON,4381,0U1,1,3,1,1,4,,,2,,,,,,,,,,,"Grover, William C",,,,, +ECS,3390,051,4,3,2,3,3,,,,,,,,2,,,,,,"Glauser, Janece B",,,,, +ECS,3390,052,10,6,2,,,1,,,,,,,,,,,,,"Mckee-Williams, Candie D",,,,, +ECS,3390,091,10,3,1,,,,1,1,,,1,,,,,,,,"Scally, Deborah A",,,,, +ECS,3390,0S1,16,3,,,,,,,,,,,,,,,,,"Montgomery, Christina F",,,,, +ECS,3390,0W1,,11,3,1,1,1,,,,,,,,,,,,,"Johnson, Janet L",,,,, +ECS,3390,0W2,1,8,1,2,1,2,1,1,,,,,,,,,,,"Johnson, Janet L",,,,, +ECSC,4078,0U1,,,,,,,,,,,,,,33,,,,,"Stewart, Mary Ann C",,,,, +ECSC,4V78,0U1,,,,,,,,,,,,,,12,,,,,"Stewart, Mary Ann C",,,,, +ECSC,5177,0U1,,,,,,,,,,,,,,,,,,102,"Stewart, Mary Ann C",,,,, +ECSC,5179,0U1,,,,,,,,,,,,,1,,,,,66,"Stewart, Mary Ann C",,,,, +EE,3161,0W1,,4,4,2,1,2,1,1,,,,,,,,,,,"Mezenner, Rabah","Islam, Farzana",,,, +EE,3202,0U1,,3,,3,2,2,,,,,,,,,,,1,,"Kiasaleh, Kamran","Tayeb Naimi, Shideh",,,, +EE,3302,0H1,1,,,,3,1,,1,1,,1,,2,,,,,,"Kehtarnavaz, Nasser","Dai, Jiazhi",,,, +EE,3311,5U1,,1,2,4,2,1,3,,,,,,1,,,,,,"Lee, Hoi","Yao, Yifan","Ghosh, Prosenjit Kumar",,, +EE,4205,0U1,2,5,2,1,2,,1,2,,,1,,,,,,,,"Akin, Bilal","Jena, Sritam","Kim, Jeonghwan",,, +EE,4388,0U1,,6,9,1,2,,,,,,,,,,,,,,"Tacca, Marco",,,,, +EE,4389,0U1,3,7,,3,,,,,,,,,,,,,,,"Tacca, Marco",,,,, +EEMF,6372,5U1,,8,4,,1,1,1,,,,,,,,,,,,"Tinker, Mark T",,,,, +EEOP,6314,0W1,,13,,5,,,,,,,,,,,,,1,,"Tamil, Lakshman S",,,,, +ENGR,2300,0W1,2,6,11,2,6,3,3,1,2,1,1,1,1,,,,1,,"Al-Dhahir, Naofal M","Mahmoud, Mohamed H","Dhole, Sameer R",,, +ENGR,3300,0U1,,3,,5,12,6,3,9,2,,1,1,1,,,,,,"Ali, Mohammed Z","Xie, Hao",,,, +ENGR,3341,0U1,2,2,1,1,,4,1,,1,,,1,,,,,,,"Fonseka, John P","Hewawaduge, Dhanushki B",,,, +ENTP,3301,0U1,,2,7,10,2,2,2,1,,,,,,,,,,,"Nichols, Paul M",,,,, +ENTP,3360,0W1,1,1,2,1,4,,,1,,,,,,,,,,,"Pedigo, Madison F",,,,, +ENTP,4335,0W1,1,,2,2,1,5,2,,1,,,,,,,,,,"Edsel, Alexander D",,,,, +ENTP,6370,0W1,,4,8,5,13,,,2,,,,,1,,,,,,"Kimzey, Jackie R","Liu, Yilin",,,, +ENTP,6375,5U1,,8,5,4,2,1,,,,,,,,,,,,,"Nichols, Paul M",,,,, +ENVR,2302,0W1,3,3,1,3,3,1,,,,,,,,,,,,,"Chowdhury, Yeamin Faria","Adeuga, Adewole M",,,, +EPPS,2302,0W1,5,1,5,1,1,3,1,,,,,,1,,,,,,"Noe, Ricardo","Thakar, Rahul A","Alfa, Victor L",,, +EPPS,6300,051,,4,5,2,,,,,,,,,,,,,,,"Nevin, Andrew S","Medhi, Kashmiri",,,, +EPPS,6317,051,,31,,,,,,,,,,,,,,,,,"Qiu, Fang","Lyu, Haitao",,,, +FILM,1303,0W1,2,8,8,6,3,4,1,,1,,,,1,,,,,,"Prakash, Arya","Okwulogu, Maureen",,,, +FILM,2332,051,6,2,2,1,,1,1,,,,,,,,,,1,,"Wellborn, Brecken H","Hay, Celia",,,, +FILM,2332,0W1,7,17,3,1,,1,2,1,,,,,2,,,,,,"Cooper, Dalton W",,,,, +FIN,3300,0W1,,45,,,12,,,,,,1,,1,,,,,,"Lynch, Julie","Hu, Jiawei",,,, +FIN,3305,5U1,,3,,,6,,,1,,,,,,,,,,,"Lowrance, Daniel S",,,,, +FIN,3320,0U1,3,2,2,,1,,2,2,2,,,,,,,,,,"Park, Taeyoung",,,,, +FIN,3320,0U2,4,2,,2,2,,1,,1,,2,,1,,,,,,"Hamzeh, Alireza",,,,, +FIN,3320,0W1,2,6,7,,10,3,1,14,1,,2,,3,,,,1,,"Manzi, Jeff",,,,, +FIN,3320,0W2,,8,9,4,12,1,1,11,,,,,2,,,,,,"Manzi, Jeff",,,,, +FIN,3360,0W1,,2,9,8,14,3,,1,,,,,,,,,,,"Pedigo, Madison F",,,,, +FIN,3390,0U1,1,5,4,2,5,2,7,5,4,1,1,8,1,,,,,,"El-Ashmawi, Amal H",,,,, +FIN,4080,091,,,,,,,,,,,,,,44,,,1,,"Nishi, Hirofumi",,,,, +FIN,4080,0U1,,,,,,,,,,,,,,42,,,,,"Nishi, Hirofumi",,,,, +FIN,4300,0U1,1,3,7,4,1,,,,,,,,,,,,1,,"Nguyen, Nam H",,,,, +FIN,4303,0U1,,2,,1,1,2,2,1,1,1,,,,,,,,,"Ballew, Gregory",,,,, +FIN,4310,0U1,,,2,,2,2,2,4,,1,,,,,,,,,"He, Jianyao",,,,, +FIN,4V80,0U3,,,,,,,,,,,,,,30,,,,,"Nishi, Hirofumi",,,,, +FIN,4V80,593,,,,,,,,,,,,,,25,,,,,"Nishi, Hirofumi",,,,, +FIN,6301,0W1,,9,10,2,3,4,3,2,,,,,1,,,,3,,"Nishi, Hirofumi","Sadeghi, Ali",,,, +FIN,6301,XH1,,13,2,5,,,,,,,,,,,,,,,"Reichert, Carolyn A",,,,, +FIN,6307,0W1,,7,3,1,5,2,,,,,,,,,,,,,"Ma, Liping","Zhang, Qiyan",,,, +FIN,6308,0W1,,9,3,1,3,1,1,1,,,,,,,,,,,"Lewin, Peter",,,,, +FIN,6322,0W1,,18,3,1,4,1,,,,,,,,,,,,,"DeCourcy, George A",,,,, +FIN,6352,5U1,,4,6,2,4,1,1,1,,,,,,,,,,,"Davis, Richard L",,,,, +FIN,6353,5W1,,3,2,2,2,1,,,,,,,,,,,,,"Baranchuk, Nina","Chai, Maoyuan",,,, +FIN,6360,5W1,,10,1,1,2,,1,,,,,,,,,,,,"Kaur, Dupinderjeet","Chai, Maoyuan",,,, +FIN,6V98,0U1,,,,,,,,,,,,,,,,,,16,"Reichert, Carolyn A",,,,, +FTEC,6002,FW1,,,,,,,,,,,,,,,,,,13,"Kieschnick, Robert L",,,,, +FTEC,6V99,FW1,,16,,,,,,,,,,,,,,,,,"Kieschnick, Robert L",,,,, +GEOG,2302,0W1,2,4,3,2,1,,,,,,,,1,,,,,,"Chowdhury, Yeamin Faria","Adeuga, Adewole M",,,, +GEOG,2303,0W1,3,8,4,3,,,1,,,,,,1,,,,,,"Kulsum, Umme",,,,, +GEOS,1303,0W1,8,3,6,3,2,,,,,1,,,,,,,,,"Griffin, William R","Karimi, Fatemeh",,,, +GEOS,2302,0W1,2,6,,,1,,1,,,,1,,1,,,,,,"Chowdhury, Yeamin Faria","Adeuga, Adewole M",,,, +GEOS,3300,0S1,1,5,2,5,2,1,,1,,,,,,,,,,,"Sickmann, Zachary","Butler, Kristina L",,,, +GEOS,4300,0S1,,4,3,5,6,,,,,,,,,,,,,,"Sickmann, Zachary",,,,, +GISC,6387,5U1,,14,1,,,,,,,,,,,,,,,,"Gamarra Pacheco, Jose A",,,,, +GOVT,2305,0U1,3,3,3,,3,4,,,1,,,,,,,,,,"Shin, Hanna","Subramanian, Venkatesh","Pillai, Maitreyi M",,, +GOVT,2305,0U2,2,4,10,5,2,1,,,,,,,,,,,,,"Chang, Gary","Zhao, Xingyuan","Singh, Sonali",,, +GOVT,2306,0U1,,10,6,5,,5,1,1,,,,,,,,,,,"Shafiq, Sadman","Dao, Minh T",,,, +GOVT,2306,0U2,7,7,16,3,3,,,2,,,,,,,,,1,,"Medhi, Kashmiri","Cincotta, Mamie G",,,, +HDCD,6370,0H1,,9,1,,,,,,,,,,,,,,,,"Bales, Alexandra H",,,,, +HIST,1301,0W1,9,54,2,9,5,4,3,1,1,1,,,1,,,,,,"Pettengill, Ryan S","Armstrong, Jennifer J","Hill, Travis B",,, +HIST,1302,0W1,7,29,17,6,5,6,3,2,2,1,1,2,1,,,,2,,"Schulze, Jeffrey M","Gee, Taylor N","Li, Ang","Tijani, Kehinde O",, +HIST,4344,0W1,1,2,9,2,3,4,,,,,,,4,,,,1,,"Pfister, Debra H",,,,, +HIST,4378,0W1,2,18,1,2,2,,1,,,,,,2,,,,,,"Pettengill, Ryan S",,,,, +HLTH,1301,0W1,,,2,4,1,,1,,,,1,,1,,,,,,"Baetge, Claire",,,,, +HLTH,3300,0U1,,1,5,5,7,3,3,4,3,,2,,,,,,,,"Byrnes, Kathleen A",,,,, +HLTH,4304,0U1,,23,2,1,1,,,1,,,,,,,,,,,"Byrnes, Kathleen A",,,,, +HMGT,3301,0U1,1,3,4,,2,,,1,,,,,,,,,,,"Robb, Horace A",,,,, +HMGT,3301,0W1,,47,,,1,,,,,,,,,,,,,,"Aubrey, Lea E",,,,, +HMGT,4090,091,,,,,,,,,,,,,,15,,,,,"Tesmer, Kristin M","Thurgood, Keith L",,,, +HMGT,4090,0U1,,,,,,,,,,,,,,10,,,,,"Tesmer, Kristin M","Thurgood, Keith L",,,, +HMGT,6320,CH1,,26,1,,,,,,,,,,,,,,,,"Jacob, Stephen B",,,,, +HMGT,6325,0W2,,22,5,2,1,,,,,,,,,,,,1,,"Thurgood, Keith L","Huang, He",,,, +HMGT,6331,5U1,,12,,,4,,,,,,,,,,,,,,"Malaise, Michael",,,,, +HMGT,6401,AH1,,39,,,,,,,,,,,,,,,,,"Kaiser, Robert C","Taylor, Donald E","Mccracken, John F",,, +HMGT,6402,AH1,,38,,,,,,,,,,,,,1,,,,"Mccracken, John F","Taylor, Donald E","Convery, Paul",,, +HMGT,6412,AH1,,18,,,,,,,,,,,,,,,,,"Taylor, Donald E",,,,, +HUMA,1301,0S1,5,3,1,1,,,,,,,,,1,,,,,,"Warren, Shilyh J","Bennett, Jason H",,,, +IMS,3310,0U1,3,18,2,11,14,1,,6,1,,,,,,,,,,"Henderson, Thomas C",,,,, +IMS,6316,GW1,,3,4,3,3,,,,,,,,,,,,1,,"Akarte, Prajakti V",,,,, +IMS,6354,GW1,,18,1,,2,,,,,,,,,,,,,,"Svatek, Samantha",,,,, +IMS,6360,0W1,,22,19,5,7,1,1,1,,,,,,,,,1,,"Skuza, Agnieszka","Shen, Jia",,,, +IMS,6365,0W1,,14,7,10,9,3,2,1,,,,,,,,,,,"Musekura, Celestin",,,,, +IMS,6365,AW1,,10,1,,,,1,,,,,,,,,,,,"Dowse, Eileen",,,,, +IMS,6365,CW1,,21,2,,,,,,,,,,,,,,,,"Skuza, Agnieszka",,,,, +ISIS,3335,0W1,9,7,12,3,2,,,,,,,,,,,,1,,"Rosa, Jonathan",,,,, +ISNS,2359,0W1,73,13,7,3,3,2,,2,3,,,,5,,,,,,"Pujana, Ignacio","Karimi, Fatemeh",,,, +ISNS,2367,0W1,19,27,7,3,6,2,1,2,2,,2,,3,,,,,,"Pujana, Ignacio","Crowley, Clinton W",,,, +ISNS,2367,0W2,7,18,14,2,8,1,1,,,,,,1,,,,,,"Pujana, Ignacio","Crowley, Clinton W",,,, +ITSS,3300,5U1,,11,12,12,9,4,2,3,,,1,,1,,,,1,,"Owens, Sean M","Ghosh, Debapratim",,,, +ITSS,3311,5U1,,5,3,3,4,2,2,3,,,,,1,,,,,,"Maru, Vatsal K","Anand, Punya I",,,, +ITSS,3390,5U1,1,2,3,3,3,2,1,,,2,,,,,,,,,"Neal, Angela","Liu, Yihong",,,, +ITSS,4090,091,,,,,,,,,,,,,,125,,,,,"Stephens, Timothy G",,,,, +ITSS,4090,0U1,,,,,,,,,,,,,,112,,,,,"Stephens, Timothy G",,,,, +ITSS,4300,5U1,1,5,7,15,4,12,9,2,1,2,1,,,,,,,,"Ceverha, Paul W","Pujari, Shrutika",,,, +ITSS,4330,5U1,1,6,5,7,10,11,3,1,3,,2,,,,,,,,"Khan, Taimur A","Liu, Yihong",,,, +ITSS,4340,0U1,,2,3,,4,3,3,6,,,,,,,,,,,"Thompson, Luell O",,,,, +ITSS,4351,5U1,,47,,2,,,1,,,,,,,,,,,,"Johnston, Walter L",,,,, +ITSS,4352,5U1,,5,10,6,7,4,1,1,,,,,1,,,,,,"Neal, Angela","Liu, Yihong",,,, +ITSS,4360,5U1,1,2,5,1,2,8,2,3,2,,,,,,,,,,"Ginevich, Rostislav A","Goswami, Garima",,,, +ITSS,4370,5U1,,4,3,10,20,10,2,3,1,,,,,,,,,,"Young, John G",,,,, +ITSS,4381,5U1,,8,14,6,14,1,6,2,,1,,,,,,,,,"Maru, Vatsal K","Anand, Punya I",,,, +ITSS,4V90,0U3,,,,,,,,,,,,,,10,,,,,"Stephens, Timothy G",,,,, +LIT,1301,0W1,17,5,,2,1,,,,,,,,,,,,2,,"Ingrao, Peter J",,,,, +LIT,3319,0W1,10,2,,,1,,,1,,,,,,,,,,,"Ingrao, Peter J",,,,, +LIT,3330,0W1,4,4,2,4,3,,,,,,,,,,,,,,"Saunders, Joy",,,,, +MAS,6102,051,,,,,,,,,,,,,,,,,1,14,"An, Constance",,,,, +MAS,6V98,0U1,,,,,,,,,,,,,,,,,,30,"Widdifield, David S","Fierst, John",,,, +MATH,1314,0S1,4,5,,1,1,1,,,,,,,1,,,,,,"Alvarado, Iris",,,,, +MATH,1325,0U1,3,1,2,,1,,3,3,,,5,,4,,,,2,,"Biswas, Saikat","Goni, Hazera","Pathirana, Menu H",,, +MATH,1325,551,1,1,3,1,2,,,1,,,,,1,,,,,,"Patel, Jigarkumar S","Harikumar, Rohin",,,, +MATH,1326,091,1,1,1,1,1,1,,,,,,1,3,,,,1,,"Patel, Jigarkumar S","Khandelwal, Abinash",,,, +MATH,1326,0U1,2,2,2,3,,3,3,1,2,1,,1,2,,,,3,,"Mussa, Derege H","Zafar, Safi Ur Rahman","Zhu, Weixi",,, +MATH,2312,0U1,1,2,2,3,3,1,,1,,1,,,,,,,,,"Duruoha, Adannah","Kudasinghe Patabendi Gedara He, Rachindra V","Tamim, Mohammad Ali",,, +MATH,2413,051,,2,1,2,2,3,1,1,1,,,,3,,,,,,"Dahal, Rabin",,,,, +MATH,2413,0U1,1,,2,3,3,2,4,1,,2,1,1,1,,,,1,,"Rakotomalala, Diarisoa Mihaja Andriamanisa","Cao, Jianpeng","Cash, Cole S",,, +MATH,2414,0U1,1,1,,3,5,5,5,,5,1,7,,5,,,,,,"Aman, Kelly C","Ramarolahy, Rija Tonny Christian","Rajapakshage, Himasha Miurangi W","Stack, Jason C","Taskin, Fariha", +MATH,2415,0U2,3,4,,1,4,1,,1,1,,,,1,,,,,,"Makarenkov, Oleg",,,,, +MATH,2417,0U1,,,1,2,2,2,1,,1,,1,,1,,,,,,"Sultana, Nasrin","Alabbadi, Ismail","Abbadi, Soufiane",,, +MATH,2418,0U1,1,1,1,1,2,3,6,,,,1,,1,,,,,,"Adabrah, Anani Komla",,,,, +MATH,2418,0U2,7,5,1,7,2,6,1,2,2,1,1,,3,,,,1,,"Murza, Adrian C","Ghanem, Ziad G","He, Meng","Liu, Jingzhou","Sarkar, Soham","Mrad, Preskella" +MATH,2419,0U1,,2,,,1,,,2,12,,,,1,,,,,,"Eydelzon, Anatoly","Yang, Jie","Tong, Ran",,, +MATH,2420,0U1,4,4,7,1,1,2,,2,4,,1,,2,,,,,,"Paudel, Ajaya B",,,,, +MATH,3351,0U1,3,3,1,2,1,1,3,,,1,1,,3,,,,1,,"Ramakrishna, Viswanath","Murad, Mohammad Hassan",,,, +MECH,2330,051,,1,1,,2,1,2,2,1,1,,1,3,,,,,,"Thamban, P L Stephan",,,,, +MECH,3105,1W1,,4,1,2,1,,1,1,3,,2,,,,,,1,,"Rios, Oziel",,,,, +MECH,3305,0W1,,1,3,1,1,1,2,3,1,,1,,,,,,,,"Rios, Oziel",,,,, +MECH,3315,0U1,,6,1,3,2,1,,,,,,,1,,,,,,"Anderson, William C",,,,, +MECH,3320,0W1,4,3,3,3,7,4,3,3,7,,,1,1,,,,,,"Fadda, Dani Z","Rahimi, Hootan",,,, +MECH,3340,0W1,1,5,1,3,5,2,3,1,3,,1,,2,,,,1,,"Park, Wooram","Rahimi, Hootan",,,, +MECH,3350,0W1,2,1,6,1,1,1,1,4,1,,,1,1,,,,,,"Rios, Oziel",,,,, +MECH,3351,0H1,4,1,,8,5,3,2,3,2,,,,2,,,,,,"Malik, Arif S",,,,, +MECH,4340,0W1,,7,1,,11,7,2,2,1,,,,1,,,,,,"Park, Wooram",,,,, +MECH,4381,0U1,,2,15,17,6,5,,2,,,,,1,,,,,,"Hart, Robert A","Tjahjono, Nathaniel S",,,, +MECH,4382,0U1,3,12,,4,,,,,,,,,,,,,,,"Hart, Robert A",,,,, +MECH,6V95,0U1,,10,,,,,,,,,,,,,,,,,"Qian, Dong","Fadda, Dani Z",,,, +MECO,6303,0W1,,17,6,10,6,4,1,2,,,,,,,,,,,"Lewin, Peter","Sadeghi, Ali",,,, +MECO,6303,AW1,,12,3,3,1,,,,,,,,,,,,,,"Kiser, Stephen L",,,,, +MIS,6009,091,,,,,,,,,,,,,,,,,,23,"Thouin, Mark F",,,,, +MIS,6009,0U1,,,,,,,,,,,,,,,,,,98,"Thouin, Mark F",,,,, +MIS,6308,0W1,,18,4,1,14,,,,,,,,,,,,1,,"Raghunathan, Srinivasan","Chen, Luoying",,,, +MIS,6308,5U1,,9,5,1,3,2,,,,,,,,,,,,,"Sivaramakrishnan, Sriram","Chen, Luoying",,,, +MIS,6313,5W1,,28,13,3,3,,,,,,,,,,,,,,"Sivaramakrishnan, Sriram","Sun, Kai",,,, +MIS,6313,GW1,,13,10,8,4,,,,,,,,,,,,2,,"Wiant, Russell",,,,, +MIS,6326,0W1,,6,4,1,1,,,,,,,,,,,,,,"Ryu, Young U","Goswami, Garima",,,, +MIS,6330,5U1,,2,3,7,2,2,,,,,,,,,,,,,"Shroff, Tejas N","Goswami, Garima",,,, +MIS,6344,0W1,,4,7,6,4,,,,,,,,,,,,,,"Mehra, Amit","Chen, Luoying",,,, +MIS,6349,5U1,,6,13,1,,,,,,,,,,,,,,,"Shroff, Tejas N","Pujari, Shrutika",,,, +MIS,6363,0W1,,31,3,2,3,2,,2,,,,,3,,,,,,"Calisir, Engin","Goswami, Garima",,,, +MIS,6380,0U1,,3,4,4,,,,,,,,,,,,,,,"Islam, Naser","Anand, Punya I",,,, +MIS,6382,5W1,,8,7,5,6,,,,,,,,,,,,,,"Neouchi, Rabih","Anand, Punya I",,,, +MIS,6V98,0U1,,,,,,,,,,,,,,,,,,28,"Thouin, Mark F",,,,, +MKT,3300,0U1,9,7,5,3,3,2,,1,,,,,1,,,,,,"Chiong, Khai X",,,,, +MKT,3300,0U2,7,8,,1,,,,,,,,,1,,,,1,,"Chiong, Khai X",,,,, +MKT,3300,0W1,,9,5,8,13,2,6,4,,,,,1,,,,,,"Wu, Fang","Miao, Jin",,,, +MKT,3330,0U1,,7,3,1,,1,2,1,,,,,1,,,,,,"Amirpour, Semiramis",,,,, +MKT,4090,091,,,,,,,,,,,,,,28,,,,,"Haworth, Julie B",,,,, +MKT,4090,0U1,,,,,,,,,,,,,,20,,,1,,"Haworth, Julie B",,,,, +MKT,4330,0W1,4,4,6,3,1,4,2,3,,1,1,1,1,,,,1,,"Edsel, Alexander D",,,,, +MKT,4334,5U1,1,9,4,2,,,,1,,,,,,,,,,,"Mabruk, Zayd N",,,,, +MKT,4360,5U1,,15,31,1,,,,,,,,,,,,,,,"Johnson, Quincy",,,,, +MKT,4V90,593,,,,,,,,,,,,,,10,,,,,"Haworth, Julie B",,,,, +MKT,6301,0W1,,14,5,5,14,10,,1,,,,,,,,,2,,"Pahwa, Parneet",,,,, +MKT,6301,CW1,,9,2,2,,,,,,,,,,,,,,,"Reichmuth, Gary",,,,, +MKT,6301,CW2,,22,,,,,,,,,,,,,,,,,"Munch, James",,,,, +MKT,6301,MBP,,6,3,8,10,,,,,,,,,,,,,,"Rajaratnam, Daniel",,,,, +MKT,6301,XH1,,18,1,1,,,,,,,,,,,,,,,"Reichmuth, Gary",,,,, +MKT,6309,0W1,,1,4,4,3,,1,,,,,,,,,,,,"Rajaratnam, Daniel",,,,, +MKT,6310,0W1,,3,3,5,3,1,2,,,,,,,,,,,,"Biswas, Abhijit","Lim, Taewook",,,, +MKT,6321,0W1,,7,1,6,2,1,,,,,,,,,,,,,"Edsel, Alexander D",,,,, +MKT,6332,0W1,,2,3,6,4,4,2,,,,,,,,,,,,"Biswas, Abhijit","Lim, Taewook",,,, +MKT,6339,0W1,,3,1,4,3,1,,,,,,,,,,,1,,"Rajaratnam, Daniel",,,,, +MKT,6352,0W1,,7,,1,3,2,,4,,,,,,,,,1,,"Tirone, Guido",,,,, +MKT,6V98,0U1,,,,,,,,,,,,,,,,,,11,"Edsel, Alexander D",,,,, +MUSI,1306,0W1,25,7,2,4,3,,2,1,1,,,,,,,,,,"Rushing, Katrina C","Kalkanli, Ogulcan",,,, +MUSI,2315,5U1,,8,1,1,,,,,,,,,,,,,,,"Hodan, Daniel M",,,,, +NATS,5100,091,,,,,,,,,,,,,,,,,,16,"Krawietz, Paul",,,,, +NSC,3361,0U2,4,5,3,1,2,3,3,2,,3,,2,,,,,2,,"Raboune, Siham","Gayluak, Ynaluak J","Ashshareef, Salma",,, +NSC,3361,0U3,3,2,3,3,3,1,,,,,,,,,,,,,"Marks, William","West, Reyanne M",,,, +NSC,4351,0W1,,35,3,,1,,,,,,,,,,,,,,"Shareef, Safi Ullah","Mendez, Skylar A","Porras, Abi",,, +NSC,4352,0U1,1,1,4,2,,1,1,1,,1,,,2,,,,,,"Raboune, Siham","Hudson, Rachael N",,,, +NSC,4354,0U1,1,2,2,3,1,1,1,,,,,,,,,,,,"Sultana, Rukhsana",,,,, +NSC,4382,0W1,2,12,15,3,2,1,1,,,,,,1,,,,,,"Jahangiri, Faisal R","Suzaki, Aoi","Ramos Freitas, Lindsey E",,, +OB,6249,CW1,,23,,,,,,,,,,,,,,,,,"Warner, Lizette",,,,, +OB,6253,CW1,,,,,,,,,,,,,,,,,,19,"Hicks, Robert F",,,,, +OB,6301,0W1,,22,9,5,2,3,3,,,,,,1,,,,,,"Hasenhuttl, Maria","Shen, Jia",,,, +OB,6301,CH1,,16,4,,1,,,,,,,,,,,,,,"Nugent, Kim S",,,,, +OB,6331,CW1,,20,,,,,,,,,,,,,,,,,"Hasenhuttl, Maria",,,,, +OB,6334,CW1,,22,7,2,2,,,1,,,,,2,,,,,,"Bianco-Mathis, Virginia",,,,, +OB,6344,CW1,,31,2,4,2,1,,,,,,,,,,,,,"Norton, Larry W",,,,, +OB,6348,CW1,,21,5,,2,1,,,,,,,1,,,,,,"Narro, Amber J",,,,, +OB,6351,CW1,,14,5,2,2,,,,,,,,,,,,,,"Warner, Lizette",,,,, +OB,6352,CW1,,18,1,,,,,,,,,,,,,,,,"Warner, Lizette",,,,, +OB,6382,CW1,,23,1,,,,,1,,,,,1,,,,,,"Plaisance Bryan, Suzette T",,,,, +OB,6382,CW2,,22,1,,,,,,,,,,,,,,,,"Plaisance Bryan, Suzette T",,,,, +OB,6384,CW1,,25,2,1,,,,,,,,,,,,,,,"Honeycutt, James",,,,, +OBHR,3310,0U1,11,8,11,5,5,3,1,,1,,,1,,,,,,,"Kim, Hwayoung",,,,, +OBHR,3330,5U1,9,4,11,2,2,1,,,,,,,,,,,,,"Thomas, Alayna G",,,,, +OBHR,4090,0U1,,,,,,,,,,,,,,13,,,,,"Weekley, Jeffrey A",,,,, +OBHR,4300,0U1,11,,,,,,,,,,,,,,,,,,"Edgington, Kyle D",,,,, +OPRE,3310,0U2,8,5,7,9,8,,3,3,,,1,,,,,,1,,"Du, Haokun",,,,, +OPRE,3310,5U1,6,8,3,8,6,3,5,,,,,,,,,,1,,"Zhang, Minmin",,,,, +OPRE,3310,5W1,4,10,10,8,2,8,1,1,,,,,,,,,,,"Alborz, Shawn",,,,, +OPRE,3330,0W1,8,6,5,7,8,5,5,2,,1,1,,,,,,,,"Alborz, Shawn",,,,, +OPRE,3333,0W1,,8,10,5,4,1,5,5,4,,1,,4,,,,,,"Enayaty Ahangar, Negin","Shahsavand, Parisa",,,, +OPRE,3333,0W2,2,5,3,6,7,3,4,3,3,2,1,,2,,,,4,,"Enayaty Ahangar, Negin","Shahsavand, Parisa",,,, +OPRE,3333,5U1,8,3,2,3,6,2,2,2,,2,2,1,1,,,,,,"Whalen, Tristan G","Jiang, Shanlin",,,, +OPRE,3360,0W1,23,10,5,7,8,5,3,1,2,1,,,1,,,,,,"Ahadi, Khatereh","Tahergandomabadi, Mohammadmahdi",,,, +OPRE,3360,5U1,1,6,5,6,6,1,2,4,1,4,3,3,2,,,,,,"Whalen, Tristan G","Jiang, Shanlin",,,, +OPRE,4090,091,,,,,,,,,,,,,,12,,,,,"Brussolo, Monica E",,,,, +OPRE,6009,0U1,,,,,,,,,,,,,,,,,,31,"Widdifield, David S","Fierst, John",,,, +OPRE,6301,0W1,,10,7,8,6,3,1,,,,,,,,,,2,,"Brussolo, Monica E","Kurucak, Abdurrahman",,,, +OPRE,6301,CH1,,20,6,3,2,,,,,,,,,,,,,,"Kim, Dohyeong",,,,, +OPRE,6302,0W1,,9,2,2,10,2,4,3,,,,,,,,,3,,"Leach, Sonia E","Bu, Like",,,, +OPRE,6302,MBP,,8,6,8,5,,,,,,,,,,,,,,"Subramoniam, Ramesh",,,,, +OPRE,6332,5U1,,4,3,3,1,3,2,1,,,,,1,,,,,,"Ramanathan, Kannan","Chaparla, Grashma Srihita",,,, +OPRE,6362,0W1,,6,9,3,4,,1,,,,,,,,,,,,"Alborz, Shawn",,,,, +OPRE,6364,PW1,,13,5,1,1,,,,,,,,,,,,,,"Rajamani, Divakar",,,,, +OPRE,6378,5W1,,4,3,6,,1,,,,,,,,,,,,,"Widdifield, David S",,,,, +OPRE,6379,PW1,,21,2,2,1,,,,,,,,,,,,,,"Rajamani, Divakar",,,,, +OPRE,6V98,0U1,,,,,,,,,,,,,,,,,,14,"Fierst, John","Widdifield, David S",,,, +PA,2325,0S1,,22,,,,,,,,,,,,,,,,,"Benavides, Teodoro J",,,,, +PA,3310,0S1,,15,,,,,,,,,,,,,,,,,"McCaskill, John R",,,,, +PA,6313,5U1,,10,,,6,,,,,,,,,,,,,,"Johnson, Daniel A",,,,, +PA,6326,0W1,,29,,,1,,,,,,,,,,,,,,"McCaskill, John R",,,,, +PA,6345,5U1,,9,2,,,,,,,,,,,,,,,,"Benavides, Abraham",,,,, +PA,6369,5U1,,11,5,,,1,,,,,,,,,,,,,"Hutcheson, Patricia L",,,,, +PA,8330,HN1,,30,1,2,,,1,,,,,,,,,,,,"Shute, William H","Chin, Michelle L",,,, +PA,8331,HN1,,31,2,1,,,,,,,,,,,,,,,"Chin, Michelle L",,,,, +PA,8332,HN1,,,,,,,,,,,,,,,,,,34,"Ramanathan, Subhasri","Chin, Michelle L",,,, +PHIL,1301,0W1,,4,10,5,5,6,2,2,4,,2,1,3,,,,2,,"Campos, Laura Graciela","Brown, Derek W",,,, +PHYS,1101,1U1,4,18,2,,1,,,,,,,,,,,,,,"Khan, Amena L","Desai, Amogh N",,,, +PHYS,1102,1U1,12,1,,,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Shrestha, Samyak",,,, +PHYS,1301,0U1,4,12,2,2,3,3,1,,,,1,,,,,,,,"Khan, Amena L","Kapte, Isha Sunil","Arabiat, Aya H",,, +PHYS,1302,0H1,6,2,2,,1,1,2,2,,,,,1,,,,,,"Kadala, Roger H","Seifi, Melodee O","Kajla, Rohit",,, +PHYS,1302,0U1,2,1,2,2,2,1,,1,,,,,,,,,,,"Malko, Anton","Smith, Sean S","Zhao, Kehui",,, +PHYS,2125,1U1,8,6,1,,,1,,,,,,,,,,,,,"Khan, Amena L","Magadi Shivalingaiah, Meghraj",,,, +PHYS,2126,1U1,6,4,1,,,1,,,,,,1,,,,,,,"Mac Alevey, Paul J","Ruwali, Shisir",,,, +PHYS,2126,1U2,19,3,1,,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Palos, Rylee K","Ahmad, Faiz",,, +PHYS,2325,0H1,5,8,5,,5,1,1,5,1,,1,2,5,,,,,,"Slinker, Jason D","Ali, Akbar","McNally, Christina M",,, +PHYS,2326,0U1,1,8,17,4,6,2,1,1,1,,,,,,,,1,,"Gartstein, Yuri","Aker, Adam","Bera, Avijit",,, +PHYS,3411,0U1,,,,1,,1,1,3,1,3,,,,,,,,,"Mac Alevey, Paul J","Lochridge, Matthew D",,,, +PSCI,3303,0S1,3,12,2,,,,,,,,,,2,,,,,,"Gray, Thomas R",,,,, +PSCI,4306,0U1,3,3,2,6,5,1,,,,1,,1,2,,,,,,"Elmore, Naela","Peressotti, Giuseppe","Adjadeh, John-Paul E",,, +PSCI,4396,001,1,4,1,,3,,3,2,,,2,,,,,,,,"Grover, William C",,,,, +PSY,2301,0S1,,5,2,1,,,1,,,,,1,1,,,,,,"Brody, Salena M",,,,, +PSY,2301,0W1,18,15,13,7,1,5,1,2,,1,1,2,3,,,,,,"Ybarra, Regina K","Gu, Pan",,,, +PSY,2317,0W1,,9,11,5,2,1,,,,,1,,,,,,,,"Fearon, Danielle","Behboudi, Mohammad Hossein",,,, +PSY,3310,0U1,4,8,2,,,,1,,,,,,,,,,,,"Heinrich, Melissa D","Liu, Yilin",,,, +PSY,3331,0W1,21,23,12,2,1,2,2,,1,1,1,,4,,,,1,,"Shirvani, Forouz","Telidevara, Amrita Kaushik",,,, +PSY,3342,0W1,,43,,,6,,,4,,,1,,,,,,,,"Bonner, Deborah","Gholap, Neha P",,,, +PSY,3360,0W1,,9,16,12,22,6,5,4,9,,1,2,4,,,,1,,"Drew, Linda M","Delfosse, Camille M",,,, +PSY,3361,0U1,,6,1,1,1,1,,,,,,,1,,,,,,"Devora, Paulina V","Brown, Tracy",,,, +PSY,3392,0W1,6,10,3,5,5,7,3,2,1,1,,,1,,,,,,"Poucher, Jesse W","Carrico, Sara M",,,, +PSY,3393,0U1,,4,,,8,,,2,,,,,2,,,,1,,"Macphail, Donald C","Eisenberg, LuLu A",,,, +PSY,3393,0W1,,6,7,8,2,1,,,,,,,,,,,,,"Fearon, Danielle","Sanchez, Patricia Monique",,,, +PSY,4343,0W1,42,16,10,7,6,2,5,1,,1,,1,1,,,,,,"Ybarra, Regina K","Kulkarni, Maitreyee",,,, +PSY,4394,0U1,,,,,,,,,,,,,,17,,,,,"Choate, Michael J",,,,, +PSY,4395,0U1,,,,,,,,,,,,,,20,,,,,"Choate, Michael J",,,,, +REAL,6322,0W1,,10,,2,,,,,,,,,,,,,,,"DeCourcy, George A",,,,, +RHET,1302,0S1,9,3,2,,,,,,,,,,1,,,,,,"Anwesha, Swati",,,,, +RHET,1302,0W1,,11,5,,,,,,,,,,1,,,,,,"Alem, Hosanna G",,,,, +RHET,1302,0W2,3,5,1,1,,2,,,,,,,1,,,,1,,"Morgan, George D",,,,, +RHET,1302,0W3,2,1,3,2,,2,,,1,,,,1,,,,,,"Walker, Jason",,,,, +SE,4381,0U1,1,1,5,6,7,3,3,4,3,2,1,,1,,,,,,"Paulk, Mark C","Nanda, Souradeep",,,, +SE,6388,MU1,,8,6,,1,,,,,,,,,,,,,,"Zhao, Yi","Song, Xiaoyu",,,, +SOC,1301,5U1,1,5,4,3,1,1,,1,,,1,,,,,,,,"Elsafadi, Hoda O",,,,, +SOC,1306,0S1,11,6,1,,,,,,1,,,,,,,,,,"Lanham, Carol C",,,,, +SOC,4372,0U1,,2,1,6,5,,1,,,,,,,,,,,,"Briggs-Megafu, Tamnala E",,,,, +SPAU,3340,0H1,,5,,,7,,,1,,,2,,,,,,,,"Neale, Hannah D","Cullinan, McKenzie B",,,, +SPAU,3341,0W1,,2,1,1,4,1,,1,,1,,,,,,,,,"Fowler-Brookman, Stephanie L",,,,, +SPAU,3343,0U1,3,6,,,1,,,1,,,,,,,,,1,,"Mehta, Sonya","Thomas, Abbey L",,,, +STAT,2332,0U1,3,2,2,1,1,1,2,2,2,1,,1,1,,,,,,"Jiang, Shengjie","Kim, Sungbum",,,, \ No newline at end of file From 4019e6e1990a0c39c7abafc725ef99d0f00c7ade Mon Sep 17 00:00:00 2001 From: Farhan Jamil <32781195+FarhanJamil0001@users.noreply.github.com> Date: Sat, 8 Mar 2025 12:11:40 -0600 Subject: [PATCH 05/22] Update to actions/cache@v3 (#68) --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d348de9..c1539d8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,7 @@ jobs: - run: npm install # Cache Next output (see https://nextjs.org/docs/messages/no-cache#github-actions) - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: | ~/.npm From dc3fe2896aac72487be81c4e902c11e1db81fb86 Mon Sep 17 00:00:00 2001 From: Evan Wright Date: Sat, 8 Mar 2025 12:19:05 -0600 Subject: [PATCH 06/22] feat: added grade distribution for Fall 2024 (#67) Co-authored-by: Mike Nguyen <34334226+DedsecKnight@users.noreply.github.com> --- raw_data/Fall 2024.csv | 2983 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 2983 insertions(+) create mode 100644 raw_data/Fall 2024.csv diff --git a/raw_data/Fall 2024.csv b/raw_data/Fall 2024.csv new file mode 100644 index 0000000..6248c59 --- /dev/null +++ b/raw_data/Fall 2024.csv @@ -0,0 +1,2983 @@ +Subject,Catalog Nbr,Section,A+,A,A-,B+,B,B-,C+,C,C-,D+,D,D-,F,CR,I,NC,W,P,Instructor 1,Instructor 2,Instructor 3,Instructor 4,Instructor 5,Instructor 6 +ACCT,2301,001,12,6,1,7,3,2,5,2,,4,1,,2,,,,1,,"Kobilov, Botir","Zhang, Ye",,,, +ACCT,2301,002,7,5,5,6,1,6,2,1,,2,,,1,,,,3,,"Chen, Hangu",,,,, +ACCT,2301,003,11,4,4,6,4,4,2,2,,,,,3,,,,,,"Liu, Ruichao",,,,, +ACCT,2301,004,6,4,6,10,2,5,1,1,1,,,,1,,,,1,,"Ai, Lanru",,,,, +ACCT,2301,005,8,8,9,1,11,8,5,5,,,3,2,3,,,,1,,"Huang, Ying","Tazhibayev, Galymzhan",,,, +ACCT,2301,006,28,7,5,6,3,5,,2,3,2,1,1,3,,,,1,,"Huang, Junfan","Lipinski, Alisa A",,,, +ACCT,2301,007,8,6,7,4,4,,2,3,2,2,,,1,,,,1,,"Shivaani, MV",,,,, +ACCT,2301,008,24,7,10,6,3,4,4,2,,1,,1,3,,,,1,,"Huang, Junfan","Lipinski, Alisa A",,,, +ACCT,2301,009,7,6,7,8,8,6,8,2,1,2,1,1,1,,,,1,,"Siano, Federico","Nguyen, Mary M",,,, +ACCT,2301,010,6,11,7,3,8,9,6,11,,,1,1,3,,,,1,,"Huang, Ying","Tazhibayev, Galymzhan",,,, +ACCT,2301,011,8,7,7,8,7,4,2,3,4,4,,2,2,,,,1,,"Siano, Federico","Nguyen, Mary M",,,, +ACCT,2301,012,26,11,8,5,1,3,4,3,,1,1,,2,,,,,,"Huang, Junfan","Lipinski, Alisa A",,,, +ACCT,2301,013,9,10,4,6,6,1,5,3,1,3,3,2,4,,,,4,,"Kobilov, Botir","Zhang, Ye",,,, +ACCT,2301,014,9,6,8,13,5,3,6,,3,3,1,1,1,,,,1,,"Siano, Federico","Nguyen, Mary M",,,, +ACCT,2301,501,3,2,3,4,5,5,2,4,3,3,2,,1,,,,2,,"Zhou, Junfei",,,,, +ACCT,2301,502,5,10,5,5,3,3,3,,,,1,,2,,,,,,"Shivaani, MV",,,,, +ACCT,2301,HON,12,12,8,4,7,4,5,2,1,,2,1,,,,,1,,"Bortz, Tiffany A","Radhakrishnan, Shivani",,,, +ACCT,2302,001,1,8,,4,6,,1,5,,2,2,1,7,,,,3,,"Zolton, Kathy","Mogesie, Rahel G",,,, +ACCT,2302,002,4,15,,2,14,,1,8,,1,1,2,3,,,,4,,"Zolton, Kathy","Mogesie, Rahel G",,,, +ACCT,2302,003,14,6,3,9,5,4,8,2,4,1,,1,,,,,3,,"Copat, Rafael","Mariano, Dylan N",,,, +ACCT,2302,004,15,9,4,11,2,4,3,5,2,,1,3,,,,,,,"Copat, Rafael","Mariano, Dylan N",,,, +ACCT,2302,005,3,14,6,5,11,3,4,3,,2,,,2,,,,6,,"Natarajan, Ramachandran","Parupati, Sunil K",,,, +ACCT,2302,006,19,6,6,4,6,5,8,1,,2,1,,,,,,2,,"Copat, Rafael","Mariano, Dylan N",,,, +ACCT,2302,007,23,5,7,3,7,5,1,2,1,,2,3,,,,,1,,"Kim, Tae Wook","Banik, Dipta",,,, +ACCT,2302,501,18,3,5,6,6,7,,1,2,1,1,1,2,,,,1,,"Kim, Tae Wook","Banik, Dipta",,,, +ACCT,3101,PPA,,,,,,,,,,,,,,75,,,,,"Bortz, Tiffany A","Goel, Simran",,,, +ACCT,3312,001,12,16,10,5,7,2,6,,,,1,,,,,,,,"Johnson, Jennifer G","Surani, Sanya R",,,, +ACCT,3322,001,3,3,3,5,10,2,2,6,,,2,,3,,,,3,,"Goodrich, Mary Beth W","Patne, Saylee Pramod",,,, +ACCT,3331,001,16,8,4,12,4,5,4,3,,2,,,,,,,2,,"Zhou, Yibin","Kwon, Yeongmin",,,, +ACCT,3331,002,,16,,,18,,,20,,,3,,1,,,,1,,"Zhang, Yuan","Tazhibayev, Galymzhan",,,, +ACCT,3331,003,9,5,4,6,2,8,5,5,,6,4,,2,,,,3,,"Zhou, Yibin","Kwon, Yeongmin",,,, +ACCT,3331,501,2,4,1,4,7,6,5,12,5,1,1,,,,,,2,,"Solcher, Steven J","Lipinski, Alisa A",,,, +ACCT,3332,001,8,7,2,,10,,6,2,2,1,2,6,2,,,,5,,"Bortz, Tiffany A","Goel, Simran",,,, +ACCT,3332,501,,1,2,,2,2,2,4,5,,,2,1,,,,,,"Kromer, Jeffrey R","Goel, Simran",,,, +ACCT,3332,PPA,17,12,5,8,11,2,4,5,1,5,3,3,2,,1,,,,"Bortz, Tiffany A","Goel, Simran",,,, +ACCT,3341,001,2,13,7,14,11,4,5,,,,,,1,,,,3,,"Natarajan, Ramachandran","Parupati, Sunil K",,,, +ACCT,3341,501,1,5,4,6,9,5,5,3,5,,,,2,,,,3,,"Natarajan, Ramachandran","Parupati, Sunil K",,,, +ACCT,3350,001,7,6,13,6,8,1,,1,,,,,1,,,,3,,"Solcher, Steven J","Lipinski, Alisa A",,,, +ACCT,3350,501,,6,7,5,12,9,6,3,2,3,,,2,,,,,,"Frost, Sandra M","Lipinski, Alisa A",,,, +ACCT,4301,501,2,,2,4,1,6,3,1,1,2,3,1,1,,,,,,"Hagen, John","Patel, Sakshi Jayesh",,,, +ACCT,4302,PP2,,8,15,15,1,1,,,,,,,,,,,,,"Markov, Stanimir G","Kim, Jongha",,,, +ACCT,4302,PPA,,10,10,11,5,3,,,,,,,,,,,,,"Markov, Stanimir G","Kim, Jongha",,,, +ACCT,4334,001,,10,,,20,,,12,1,,1,,,,,,1,,"Linsteadt, Chris C",,,,, +ACCT,4334,501,,5,,,9,,,6,1,,1,,2,,,,,,"Linsteadt, Chris C",,,,, +ACCT,4334,PPA,,23,,,42,,,10,,,2,,1,,,,,,"Linsteadt, Chris C",,,,, +ACCT,4336,001,6,2,9,11,7,5,3,2,,,,,2,,,,1,,"Solcher, Steven J","Lipinski, Alisa A",,,, +ACCT,4337,501,2,1,2,1,4,8,2,3,2,2,2,,3,,,,,,"Ballew, Gregory","Mogesie, Rahel G",,,, +ACCT,4340,001,23,9,3,2,,,3,1,,,1,1,1,,,,1,,"Johnson, Jennifer G","Surani, Sanya R",,,, +ACCT,4342,001,4,6,7,8,9,1,1,2,1,,1,,,,,,1,,"Johnson, Jennifer G","Surani, Sanya R",,,, +ACCT,4342,501,,1,4,3,3,2,6,1,,,1,,,,,,,,"Kromer, Jeffrey R","Goel, Simran",,,, +ACCT,6202,0W1,,7,14,9,10,9,4,4,,,,,,,,,1,,"Janakiraman, Surya N","Banik, Dipta",,,, +ACCT,6202,GW1,,10,3,3,1,,,2,,,,,1,,,,1,,"Sadka, Gil",,,,, +ACCT,6291,S91,,35,,,33,,,2,,,,,2,,,,,,"Zolton, Kathy",,,,, +ACCT,6301,001,,14,8,29,,,6,,,,,,,,,,,,"Li, Ningzhong","Kim, Jongha",,,, +ACCT,6301,0W1,,11,13,7,4,6,2,,,,,,3,,,,6,,"Ali, Ashiq","Kwon, Yeongmin",,,, +ACCT,6301,501,,4,17,14,11,5,1,3,,,,,2,,,,2,,"Ballew, Gregory","Mogesie, Rahel G",,,, +ACCT,6301,CH1,,28,1,,,,,,,,,,,,,,,,"Barden, John P",,,,, +ACCT,6301,GW1,,17,5,3,,1,,,,,,,1,,,,,,"Barden, John P",,,,, +ACCT,6301,MBC,,35,6,1,,2,,1,,,,,,,,,,,"Radhakrishnan, Suresh","Zhang, Ye",,,, +ACCT,6301,MBP,,20,,5,2,,,,,,,,,,,,3,,"Radhakrishnan, Suresh","Zhang, Ye",,,, +ACCT,6301,X01,,7,5,4,2,1,1,,,,,,,,,,2,,"Ali, Ashiq","Kwon, Yeongmin",,,, +ACCT,6305,002,,5,5,9,3,2,3,,,,,,1,,,,1,,"Li, Ningzhong","Kim, Jongha",,,, +ACCT,6305,501,,11,6,13,4,5,3,,,,,,,,,,,,"Li, Ningzhong","Kim, Jongha",,,, +ACCT,6320,0W1,,2,3,3,2,1,2,,,,,,,,,,,,"Cavusoglu, Huseyin","Li, Baorui",,,, +ACCT,6321,S01,,4,2,4,,,,,,,,,,,,,1,,"Scott, James",,,,, +ACCT,6330,501,,15,,4,16,,,10,,,,,4,,,,1,,"Cready, William M","Parupati, Sunil K",,,, +ACCT,6331,501,,7,11,9,8,6,2,2,,,,,1,,,,,,"Janakiraman, Surya N","Banik, Dipta",,,, +ACCT,6332,5W1,,9,,,9,,,1,,,,,1,,,,,,"Zolton, Kathy","Yayvak, Berk",,,, +ACCT,6333,501,,14,,,11,,,4,,,,,,,,,1,,"Zolton, Kathy","Yayvak, Berk",,,, +ACCT,6333,PPA,,20,,,11,,,3,,,,,,,,,1,,"Zolton, Kathy","Yayvak, Berk",,,, +ACCT,6334,0W1,,15,,,5,,,2,,,,,,,,,,,"Linsteadt, Chris C",,,,, +ACCT,6335,0W1,,19,10,2,12,3,2,2,,,,,1,,,,,,"Bortz, Tiffany A","Radhakrishnan, Shivani",,,, +ACCT,6336,501,,11,7,7,4,,,,,,,,,,,,,,"Mauriello, Joseph A","Tran, Bao G",,,, +ACCT,6341,0W1,,24,4,6,9,1,,,,,,,,,,,,,"Goodrich, Mary Beth W","Patne, Saylee Pramod",,,, +ACCT,6344,0W1,,11,17,7,8,2,3,1,,,,,,,,,1,,"Gurun, Umit G","Yayvak, Berk",,,, +ACCT,6344,PPA,,20,37,2,,1,,,,,,,,,,,,,"Gurun, Umit G","Yayvak, Berk",,,, +ACCT,6345,5W1,,4,4,2,1,,,,,,,,,,,,2,,"Janakiraman, Surya N","Banik, Dipta",,,, +ACCT,6350,501,,15,14,5,,,,,,,,,,,,,,,"Solcher, Steven J","Lipinski, Alisa A",,,, +ACCT,6350,S01,,3,4,1,2,,,,,,,,,,,,,,"Frost, Sandra M","Lipinski, Alisa A",,,, +ACCT,6353,501,,6,16,9,1,,,,,,,,,,,,,,"Solcher, Steven J","Lipinski, Alisa A",,,, +ACCT,6354,501,,12,1,1,4,5,3,5,,,,,1,,,,,,"Hanna, Dave T",,,,, +ACCT,6374,0W1,,9,16,7,4,,,,,,,,,,,,,,"Mauriello, Joseph A","Tran, Bao G",,,, +ACCT,6380,501,,4,11,3,6,,,,,,,,,,,,,,"Mauriello, Joseph A","Tran, Bao G",,,, +ACCT,6383,501,,3,,3,13,2,,,,,,,,,,,1,,"Bracy, Dana",,,,, +ACCT,6386,001,,33,13,4,7,3,,,,,,,,,,,,,"Mauriello, Joseph A","Tran, Bao G",,,, +ACCT,6392,501,,5,3,3,4,,,,,,,,,,,,,,"Mauriello, Joseph A","Tran, Bao G",,,, +ACN,5312,001,,3,3,4,5,2,,,,,,,,,,,1,,"Fearon, Danielle","Leung, Carole",,,, +ACN,5312,002,,3,7,1,5,,,1,,,,,,,,,1,,"Fearon, Danielle","Latteri, Christopher W",,,, +ACN,6323,001,,12,,,,,,,,,,,,,,,,,"Rennaker, Robert L",,,,, +ACN,6330,001,,9,5,2,3,1,,1,,,,,,,,,1,,"Guo, Jiahui",,,,, +ACN,6338,001,,18,,,7,,,,,,,,1,,,,,,"Sultana, Rukhsana",,,,, +ACN,6340,001,,,3,2,,1,1,4,,,,,,,,,7,,"Gu, Zirong",,,,, +ACN,6341,0H1,,18,1,,,,,,,,,,,,,,,,"Orrick, Erika D",,,,, +ACN,6345,001,,4,3,1,1,1,,,,,,,1,,,,,,"Rodriguez, Christa M",,,,, +ACN,6346,001,,22,,,5,,,1,,,,,,,,,1,,"Tavares Ferreira, Diana M",,,,, +ACN,6348,501,,8,1,,1,,,,,,,,,,,,,,"Golden, Richard M",,,,, +ACN,6373,0W1,,26,,1,2,,,,,,,,,,,,1,,"Jaquez, Kathryn M",,,,, +ACN,6395,001,,14,,,11,,,4,,,,,1,,,,,,"Wig, Gagandeep S",,,,, +ACN,6V71,013,,,,,,,,,,,,,,,,,1,9,"Golden, Richard M",,,,, +ACN,6V81,0H1,,5,3,3,1,,,,,,,,,,,,1,,"Maqbool, Mohsin",,,,, +ACN,7364,001,,4,4,3,,,,,,,,,,,,,,,"Rugg, Michael D",,,,, +ACTS,4303,001,1,2,1,1,1,1,3,2,2,1,1,,1,,,,,,"Humphreys, Natalia","Makhijani, Neha","Liu, Jingzhou",,, +ACTS,4304,001,2,1,1,2,3,4,2,,2,,,1,,,,,,,"Humphreys, Natalia","Zhao, Kun",,,, +ACTS,4307,001,4,9,3,2,,,,1,,,,,,,,,,,"Hong, Liang","Thomas, Yaga S",,,, +ACTS,4308,001,3,1,2,3,,2,,1,2,2,,2,6,,,,,,"Humphreys, Natalia","Makhijani, Neha","Yang, Haopeng",,, +AHST,1304,001,23,28,31,7,4,5,2,6,2,1,,,1,,,,2,,"McDonald, Jacquelyn D","Dolatyari, Mahdi","Morgan, George D",,, +AHST,1304,002,22,23,33,7,8,6,3,2,1,1,,,5,,,,3,,"McDonald, Jacquelyn D","Khoshniat, Ahmad","Harper, Joseph E",,, +AHST,2331,001,22,48,31,22,13,13,5,6,2,,2,1,10,,,,3,,"Rosen, Mark S","Razzaque, Farzana A","Esmail, Fatima N","Kang, Kyul","Ghahari Kermani, Arash", +AHST,2331,HN1,,14,8,2,,,,,,,,,,,,,,,"Rosen, Mark S",,,,, +AHST,2331,HN2,7,14,,1,1,,,,,,,,,,1,,,,"Hofland, Amy L",,,,, +AHST,3320,001,,2,4,2,11,3,1,3,,,,,,,,,,,"Doss, Erika",,,,, +AHST,3320,002,15,11,2,3,5,1,,,,,,,2,,,,,,"Alibhai, AliAsgar H",,,,, +AHTC,1100,001,,22,,,2,,,,,,1,,1,,,,,,"Hasan, Nasreen",,,,, +AHTC,1100,002,16,5,,1,4,3,,,2,,,1,1,,,,,,"Crabtree, Jacob D",,,,, +AHTC,1100,003,1,2,2,4,1,,2,1,,,1,,1,,,,,,"Roberts, Jazzmyn C",,,,, +AHTC,1100,004,16,2,5,3,,1,,2,1,,,,2,,,,,,"Lara, Cynthia C",,,,, +AHTC,1100,005,19,3,2,2,3,1,,3,,,,1,2,,,,,,"Marroquin, Irene",,,,, +AHTC,1100,0L1,15,,1,1,1,1,,,,1,1,,2,,,,,,"Lara, Cynthia C",,,,, +AHTC,1100,0L2,9,,,3,3,4,,,,1,1,,2,,,,,,"Marroquin, Irene",,,,, +AHTC,1100,0L3,5,8,3,4,2,1,2,4,,,,,5,,,,,,"Roberts, Jazzmyn C",,,,, +AMS,2300,001,15,6,4,3,2,1,3,,,,,,,,1,,,,"Hammonds, Kyle",,,,, +AMS,2341,001,1,9,16,11,15,4,,2,,,,,7,,,,2,,"Naqvi, Syed K",,,,, +AMS,2341,HN1,,11,5,2,3,,,,,,,,,,,,,,"Smith, Erin",,,,, +AMS,3316,0W1,16,8,4,1,3,3,1,1,1,,,,5,,1,,3,,"Winstead, Elizabeth L",,,,, +AMS,4300,5H1,4,3,1,4,,,1,,1,,,,,,,,,,"Ross, Alyssa N",,,,, +AMS,4305,5H1,,2,1,6,2,,,,,,,,,,,,,,"Cotton, Scott C",,,,, +AMS,4379,0W1,10,9,4,,1,1,,2,,,,,,,1,,,,"Winstead, Elizabeth L",,,,, +ANGM,2303,001,14,20,27,15,9,5,2,1,3,1,1,,,,,,,,"Grieshaber, Amy","Kerr, Rachel T","Akalkotkar, Uma G",,, +ANGM,2303,002,21,33,23,12,5,1,2,1,1,,,,,,,,,,"Grieshaber, Amy","Ahr, Allanah G","Fernandez, Daniel S",,, +ANGM,2305,0W1,14,19,15,9,5,8,6,2,3,1,1,,13,,,,3,,"Lim, Fengjie","Cressman, Benjamin I","Lam, Vy",,, +ANGM,2309,0W1,24,18,1,,,2,,1,,,,,1,,,,1,,"Fechter, Todd A","Wood, Lorin W",,,, +ANGM,2309,0W2,6,4,12,4,4,6,1,,2,1,,3,4,,,,1,,"Griffin, Troy","Khamsehnezhad, Mozhdeh",,,, +ANGM,2310,0H1,118,30,34,24,10,8,3,4,7,5,2,2,33,,,,13,,"Salter, Monika M","Cabrera, Michael A","Wheeler, Jonathan M","Bess, Michael C","Kusupati, Anish C","Abri, Zeinab" +ANGM,2315,001,10,14,25,19,7,15,4,,1,3,,1,,,,,,,"Veras de Souza, Christine","Plueger, Michael F",,,, +ANGM,2335,001,16,4,3,2,1,,,,,1,,,1,,,,,,"Marks, David",,,,, +ANGM,2345,001,3,6,6,2,2,2,,,4,1,,,3,,,,1,,"Gupta-Fitzgerald, Harold E",,,,, +ANGM,2345,002,5,,8,5,3,2,2,,2,,,,2,,,,,,"Marks, David",,,,, +ANGM,2345,003,5,6,7,3,1,1,,1,1,1,,,3,,,,1,,"Gupta-Fitzgerald, Harold E",,,,, +ANGM,2345,004,2,7,6,4,3,,,1,1,,,,2,,,,1,,"Marks, David",,,,, +ANGM,3304,001,1,3,4,1,5,1,1,,,,,,2,,,,1,,"Gardner, Frederick",,,,, +ANGM,3305,001,,3,8,7,,3,2,,2,,,,3,,,,2,,"Caldwell, Bryon A","Subochev, Andrei",,,, +ANGM,3305,002,,,5,8,5,6,1,2,1,,,,2,,,,,,"Caldwell, Bryon A","Gutierrez, Joseph W",,,, +ANGM,3306,001,5,7,12,1,,2,,1,,,1,,1,,,,,,"Price, Jeffrey T",,,,, +ANGM,3306,002,2,4,7,6,5,,1,,1,1,1,,2,,,,,,"Khamnouane, Singkham",,,,, +ANGM,3307,001,1,6,12,4,1,2,2,1,,,,,1,,,,,,"McCord, Peter A",,,,, +ANGM,3308,001,,3,3,1,6,3,2,3,1,1,1,,2,,,,3,,"Johnson, Casey A",,,,, +ANGM,3308,002,,5,3,1,1,2,1,4,1,1,,1,3,,,,4,,"Johnson, Casey A",,,,, +ANGM,3310,001,1,3,6,4,5,4,1,,1,,,,2,,,,1,,"Lim, Fengjie",,,,, +ANGM,3311,001,,,1,3,3,4,2,1,1,1,,,3,,,,,,"Lim, Fengjie",,,,, +ANGM,3311,002,,4,,2,6,1,1,1,,,,,1,,,,1,,"Johnson, Casey A",,,,, +ANGM,3312,101,2,1,5,2,2,,1,1,1,1,1,,,,1,,1,,"Salter, Monika M",,,,, +ANGM,3313,001,1,5,5,2,3,1,1,1,,,,,,,,,,,"McComber, Sean J","Piantino, Raquel C",,,, +ANGM,3315,001,5,2,11,5,2,3,1,,,,,1,1,,,,,,"Grieshaber, Amy",,,,, +ANGM,3321,001,1,4,3,1,1,5,,,1,,,,1,,,,1,,"Gardner, Frederick",,,,, +ANGM,3330,001,14,3,2,,,,,,,,,,,,,,,,"McCord, Peter A",,,,, +ANGM,3338,001,3,5,13,3,3,,,,1,,,,2,,,,,,"Griffin, Troy","Clarke-Gaar, Alissa C",,,, +ANGM,3338,501,13,4,,3,1,,1,1,2,,,,3,,,,2,,"Chaudhary, Anisha",,,,, +ANGM,3346,001,13,5,3,3,,,,,1,,1,,2,,1,,,,"Marks, David",,,,, +ANGM,3347,001,6,6,,1,2,1,,,,,,,,,,,,,"Gupta-Fitzgerald, Harold E",,,,, +ANGM,3365,001,11,11,4,,1,3,,,,,,,,,,,,,"Christopher, Timothy V","Schoonover, Richard",,,, +ANGM,3365,002,6,9,10,3,2,,,,,,,,,,,,,,"Christopher, Timothy V","Schoonover, Richard",,,, +ANGM,3366,001,15,2,6,3,4,1,,,,,,,1,,,,,,"Irby, Cameron L",,,,, +ANGM,3367,001,2,,5,9,7,2,2,1,,,,,2,,,,,,"Murray, Jack A",,,,, +ANGM,3367,002,15,5,,2,1,1,,,,,2,,4,,,,,,"Ayres, Cameron M",,,,, +ANGM,3368,002,1,2,1,2,2,2,2,2,1,,1,,3,,,,,,"Porritt, Joseph L",,,,, +ANGM,3368,0W1,2,3,3,5,3,,,,1,1,,,1,,,,,,"Chandler, Adam W",,,,, +ANGM,3369,001,,27,3,,1,,,,,,1,,2,,,,,,"Evans, Monica J",,,,, +ANGM,3370,001,14,3,6,3,,,2,1,,,,,1,,,,,,"Lewis, Timothy M","Obuobi, Samra",,,, +ANGM,3370,002,8,8,4,,1,2,1,,,1,,,3,,,,2,,"Lewis, Timothy M",,,,, +ANGM,3372,001,6,13,,,5,,,3,,,,,2,,,,,,"Gupta-Fitzgerald, Harold E",,,,, +ANGM,3373,101,13,,,,,,,,,,,,,,,,,,"Marks, David",,,,, +ANGM,4305,001,,,3,3,5,5,,1,,,1,,,,,,1,,"Caldwell, Bryon A",,,,, +ANGM,4305,501,5,2,4,,6,1,1,,,,,,,,,,,,"Manriquez, Robert J",,,,, +ANGM,4306,001,2,4,6,3,5,,1,,,,,,1,,,,2,,"Khamnouane, Singkham",,,,, +ANGM,4309,001,,7,1,2,4,2,1,,,1,,,1,,,,,,"Gardner, Frederick",,,,, +ANGM,4310,501,10,9,5,6,,,,,,,,,,,,,,,"Buxkamper, Adam M",,,,, +ANGM,4312,001,2,7,5,1,1,,,,,,,,3,,,,,,"Khamnouane, Singkham",,,,, +ANGM,4313,001,,1,2,3,,3,3,1,,,1,,2,,,,2,,"Lim, Fengjie",,,,, +ANGM,4317,001,,19,,,,,,,,,,,,,,,,,"Salter, Monika M",,,,, +ANGM,4317,002,,19,,,,,,,,,,,,,,,,,"McCord, Peter A",,,,, +ANGM,4319,002,,10,,,,,,,,,,,,,,,,,"Salter, Monika M","Johnson, Casey A",,,, +ANGM,4321,001,7,9,3,,,,,,,,,,,,,,,,"Khamnouane, Singkham",,,,, +ANGM,4322,001,5,3,,,,,,1,1,,,,,,,,,,"Veras de Souza, Christine",,,,, +ANGM,4350,001,2,6,1,,,,,,,,,,1,,,,,,"McComber, Sean J","Fechter, Todd A","Prado, Jordan B",,, +ANGM,4365,001,8,6,1,1,,1,,,,1,,,,,,,1,,"Christopher, Timothy V",,,,, +ANGM,4365,002,11,2,3,,1,,,,,1,,,,,,,1,,"Christopher, Timothy V",,,,, +ANGM,4367,001,2,2,5,5,6,1,4,,2,,,,2,,,,1,,"Chandler, Adam W",,,,, +ANGM,4368,001,4,6,5,3,2,3,2,2,,1,,,2,,,,,,"Chandler, Adam W",,,,, +ANGM,4370,101,4,2,6,1,1,4,,1,,,,,,,,,,,"Lewis, Timothy M",,,,, +ANGM,4373,001,,3,4,3,4,,1,1,,,,,2,,,,1,,"Caldwell, Bryon A",,,,, +ANGM,4376,001,17,,,,,,,,,,,,,,,,,,"Lewis, Timothy M",,,,, +ANGM,4376,002,15,1,,,,,,,,,,,,,,,,,"Chandler, Adam W","Kim, Da Hyun",,,, +ANGM,4379,001,4,5,1,,1,2,4,,,,,,,,,,,,"Gardner, Frederick",,,,, +ANGM,4379,002,5,3,4,,2,,,,,,,,2,,,,2,,"Gardner, Frederick",,,,, +ANGM,6305,001,,2,6,1,1,,,,,,,,,,,,,,"McCord, Peter A",,,,, +ANGM,6312,001,,5,5,,,,,,,,,,,,,,,,"Griffin, Troy",,,,, +ANGM,6313,001,,11,,,,,,,,,,,,,,,1,,"Fechter, Todd A",,,,, +ANGM,6316,001,,7,1,1,,,,,,,,,,,,,1,,"Salter, Monika M",,,,, +ARAB,1311,001,1,7,3,2,,1,,,,,,,,,,,,,"Anjum, Zafar",,,,, +ARHM,2340,001,10,3,1,2,1,1,,1,,,,,,,,,,,"Avram, Danielle M",,,,, +ARHM,3342,001,,2,2,2,3,1,,,,,,,1,,,,,,"Wickberg, Daniel B",,,,, +ARHM,6310,001,,18,1,,,,,,,,,,1,,,,1,,"Terranova, Charissa N","Cooley, Heidi R",,,, +ARTS,1301,0W1,110,9,6,7,3,1,1,2,,,,,,,,,,,"Wilder, James E","Ford, Angela","Zeng, Yuhui","Zhang, Shengxin",, +ARTS,1315,001,7,3,1,,1,,,,,,,,,,,,,,"Curry, Val",,,,, +ARTS,1316,001,3,4,4,1,1,,,,,,,,,,,,,,"Jafarpour, Zahra",,,,, +ARTS,1316,002,,4,7,3,1,,1,,,,1,,1,,,,,,"Higgins-Stirrup, Brynn",,,,, +ARTS,1316,003,8,3,3,2,,2,,,,,,,1,,,,,,"Takaloubighash, Maryam",,,,, +ARTS,1316,004,2,4,7,3,1,,1,,,,,,,,,,,,"Fridge, Brian D",,,,, +ARTS,1316,501,3,3,3,,2,,,,,,,,,,,,,,"Fridge, Brian D",,,,, +ARTS,2316,001,14,3,,1,,,,1,,,,,,,,,,,"Egan, Trey T",,,,, +ARTS,2316,002,7,9,2,,,,,,,,,,,,,,,,"Song, Haoyi",,,,, +ARTS,2316,003,8,3,,,2,,,,,,,,1,,,,1,,"Akinwole, Oluwadare (Dare)",,,,, +ARTS,2348,001,4,9,2,,,,,1,,,,,,,,,1,,"Williams, Thomas E",,,,, +ARTS,2350,001,2,8,3,2,1,,,,,,,,,,,,,,"Waligore, Marilyn",,,,, +ARTS,2350,002,4,8,2,,1,,,,,,,,,,,,1,,"Baigmoradi, Fatemeh",,,,, +ARTS,2380,001,2,6,2,1,2,,,,,,,,1,,,,1,,"Egan, Trey T",,,,, +ARTS,2380,501,3,5,,,,,,,,,,,2,,,,,,"Curry, Val",,,,, +ARTS,2381,001,2,5,1,1,,,,,,,,,,,,,1,,"Cochran, Kristen N",,,,, +ARTS,3340,5H1,,7,,1,,,,,,,,,1,,,,1,,"Loving, Emily A",,,,, +ARTS,3341,001,,14,,,,,,1,,,,,,,,,,,"Shi, Carle",,,,, +ARTS,3363,001,1,8,2,1,1,,1,2,1,,,,1,,,,,,"Tady, Lorraine T",,,,, +ARTS,3366,501,1,3,5,4,2,2,,,,,,,,,,,,,"Higgins-Stirrup, Brynn",,,,, +ARTS,3367,001,1,4,4,4,2,2,,,,,,,,,,,,,"Higgins-Stirrup, Brynn",,,,, +ARTS,3367,002,4,5,2,,,2,,,,,,,,,,,,,"Min, Inki A",,,,, +ARTS,3368,001,3,2,,,3,1,,,,,,,1,,,,,,"Reyes, Marcela",,,,, +ARTS,3369,001,3,5,2,,1,,,,,,,,,,,,,,"Tady, Lorraine T",,,,, +ARTS,3371,002,4,4,3,2,,1,,1,,,,,,,,,1,,"Durant, Stephanie D",,,,, +ARTS,3372,001,,10,7,,,,,,,,,,1,,,,,,"Loving, Emily A",,,,, +ARTS,3375,001,1,6,1,,,,,,,,,,,,,,2,,"Cochran, Kristen N",,,,, +ARTS,3377,001,2,9,2,3,1,,1,,,,,,,,,,1,,"Waligore, Marilyn",,,,, +ARTS,3379,001,,3,6,5,1,,1,,,,,,,,,,,,"Palmer, Marcy A",,,,, +ARTS,3382,001,3,8,,1,1,,,,,,,,2,,,,,,"Tady, Lorraine T",,,,, +ARTS,3383,001,,3,5,5,4,1,,,,,,,,,,,,,"Higgins-Stirrup, Brynn",,,,, +ARTS,4310,001,4,11,2,1,,,,,,,,,,,,,,,"Avram, Danielle M",,,,, +ARTS,4368,001,7,10,,,,,,,,,,,,,,,,,"Pomara, John J",,,,, +ATCM,2300,001,,165,5,16,49,4,9,17,4,6,7,,9,,,,3,,"Balsamo, Anne","Costa De Souza, Flavia","Nguyen, Thi Kim Cuong","Rahman, Maruf","Amartey, Belinda","Alake, Olaoluwa J" +ATCM,2301,001,11,7,3,3,1,1,,,,1,,1,2,,,,,,"Zamaniderkani, Vajihe",,,,, +ATCM,2301,002,5,8,3,4,4,3,,2,,,,,,,,,1,,"Asgharpour, Hadi",,,,, +ATCM,2301,003,5,6,6,1,1,2,1,1,,1,1,1,3,,,,,,"De Leon, Jennifer M",,,,, +ATCM,2301,004,1,9,9,1,2,2,2,1,,1,,,1,,,,1,,"Vo, Baotran N",,,,, +ATCM,2301,0W1,4,8,7,2,2,1,,,,,1,1,2,,,,,,"Trosper, Elizabeth M","Chan, Stephany T","Duong, Tu Anh",,, +ATCM,2301,0W2,6,2,6,,2,4,3,,,1,,,1,,,,3,,"Trosper, Elizabeth M","Chan, Stephany T","Duong, Tu Anh",,, +ATCM,2301,501,13,4,4,3,,1,1,1,,,1,1,,,,,,,"Ashkaboosi, Maryam",,,,, +ATCM,2301,502,8,2,3,2,1,4,,1,1,2,1,,4,,,,1,,"Jones, Jazmine Q",,,,, +ATCM,2301,503,3,8,7,1,2,2,,4,1,,,,1,,,,1,,"Budd, Jessie C",,,,, +ATCM,2301,504,7,5,6,3,3,,,2,,,,,2,,,,2,,"Doust-Haghighi, Elham",,,,, +ATCM,2302,001,9,3,8,1,2,2,,,,1,,2,1,,,,,,"De Leon, Jennifer M",,,,, +ATCM,2302,002,13,3,4,2,1,1,1,,2,,,1,1,,,,,,"Ashkaboosi, Maryam",,,,, +ATCM,2302,003,8,6,4,2,2,1,1,,,,1,,4,,,,,,"Ashouri, Shaghayegh",,,,, +ATCM,2302,004,14,7,1,2,3,,,2,,,,,1,,,,,,"Gupta, Suvash",,,,, +ATCM,2302,005,1,4,5,1,3,4,2,1,,2,1,,4,,,,1,,"Marder, Amanda K","Johnson, Olga A","Vahed Khoshknab, Tina",,, +ATCM,2302,006,4,6,7,2,3,1,2,2,,,,,2,,,,,,"Marder, Amanda K","Vahed Khoshknab, Tina",,,, +ATCM,2302,0H1,5,3,2,5,1,2,4,3,,1,1,,2,,,,,,"Barreiro, Isi J",,,,, +ATCM,2302,501,3,5,3,4,4,6,1,,,1,,,3,,,,,,"Clement, Shonte",,,,, +ATCM,2302,502,4,5,7,,2,1,,,2,2,,1,4,,,,,,"Clement, Shonte",,,,, +ATCM,2302,503,2,3,2,5,1,3,1,5,,1,1,1,2,,,,1,,"Barreiro, Isi J",,,,, +ATCM,2321,001,,2,10,6,4,3,2,1,,,,,2,,,,,,"Imaoka, Laura B","Vo, Angelene H",,,, +ATCM,2322,001,15,22,12,12,6,5,4,3,2,1,,1,1,,,,,,"Fraley, James M","Haborak, Fiona K","Hernandez, Luke A",,, +ATCM,2330,002,6,10,7,1,3,1,,,1,,1,,,,,,,,"Welwood, Samantha F",,,,, +ATCM,2330,0W1,,2,3,5,3,2,,2,4,,2,,5,,,,1,,"Nielsen, Christina R","Winter, Sabine",,,, +ATCM,2335,001,4,6,9,1,2,5,,1,1,,,,1,,,,,,"Starzer, Kenneth W",,,,, +ATCM,2335,501,3,,8,3,5,1,,2,1,1,1,1,4,,,,,,"Starzer, Kenneth W",,,,, +ATCM,2340,001,4,58,11,9,9,1,,2,,2,1,,2,,,,,,"Gooch, John C","Guo, Yu","Cole, Abby",,, +ATCM,2350,001,12,11,4,,,1,,,,,,,1,,,,,,"Yu, Yiding",,,,, +ATCM,2350,002,17,3,5,1,,1,1,1,,,,,,,,,,,"Rojas Ponce, Diana S","Bhatia, Parul",,,, +ATCM,2350,501,13,6,6,1,1,,1,,,,,,1,,,,,,"Nair, Vinayak",,,,, +ATCM,2355,001,1,3,2,1,1,,1,1,1,,2,1,2,,,,4,,"Marder, Amanda K",,,,, +ATCM,2360,0W1,30,3,3,,,1,,3,,,,,3,,,,,,"Cox, Norman L",,,,, +ATCM,3301,001,,1,7,5,,2,,1,,,,,1,,,,,,"Whitlock, Kathryn",,,,, +ATCM,3301,002,12,4,1,1,,,,,,,,,1,,,,,,"Heaslip, Audra","Ayodabo, Sunday J",,,, +ATCM,3301,003,1,3,,2,4,,1,2,,,1,1,3,,,,,,"Pietsch, Samuel R",,,,, +ATCM,3301,004,7,2,3,2,2,1,,,,,,,1,,,,,,"Heaslip, Audra","Ayodabo, Sunday J",,,, +ATCM,3301,005,7,6,1,1,,,2,,1,,,,1,,,,,,"Heaslip, Audra","Rahman, Mohammad K",,,, +ATCM,3301,006,5,4,3,1,2,,1,,,,,,1,,,,,,"Heaslip, Audra","Rahman, Mohammad K",,,, +ATCM,3320,501,10,6,3,,2,2,,1,,,,1,2,,,,,,"Rheams, David C",,,,, +ATCM,3325,501,9,11,1,,2,4,,1,,,,,,,,,1,,"Rheams, David C",,,,, +ATCM,3336,001,,6,2,1,7,,,2,,,,,1,,,,,,"McKinney, Mark",,,,, +ATCM,3336,002,5,15,4,2,3,1,,,,,,,,,,,,,"McKinney, Mark",,,,, +ATCM,3336,003,12,1,2,4,3,3,,,,,,,,,,,1,,"Miller, Elisa K",,,,, +ATCM,3337,001,,1,12,3,,3,1,,,,,,4,,,,,,"Miller, Elisa K",,,,, +ATCM,3337,0W1,18,8,1,1,1,,,,,,,,,,,,,,"Wood, Harold G",,,,, +ATCM,3337,0W2,14,13,1,1,,,,,,,,,1,,,,,,"Wood, Harold G",,,,, +ATCM,3337,501,,5,6,4,2,2,1,1,,,2,,2,,,,,,"Miller, Elisa K",,,,, +ATCM,3340,001,21,3,1,2,,1,,,,,,,2,,,,,,"Cox, Norman L",,,,, +ATCM,3340,002,22,4,1,,,,,1,,1,,,1,,,,,,"Cox, Norman L",,,,, +ATCM,3340,003,17,2,3,3,3,,,1,,,,,1,,,,,,"Cox, Norman L",,,,, +ATCM,3350,001,2,4,6,2,2,4,,1,2,,,2,2,,,,1,,"Nair, Vinayak",,,,, +ATCM,3350,0H1,8,4,5,2,2,1,1,1,2,1,,,3,,,,,,"Hewitt, Sharon A",,,,, +ATCM,3350,0W1,1,2,7,3,2,,1,,3,,,2,5,,,,2,,"Hewitt, Sharon A",,,,, +ATCM,3355,001,6,5,1,4,3,1,3,,3,,,,,,,,3,,"Scott, Andrew F",,,,, +ATCM,3388,001,4,6,4,4,3,1,,,,,1,,,,,,,,"Fraley, James M",,,,, +ATCM,3388,002,4,7,11,1,2,1,,,,,,,2,,,,,,"Fraley, James M",,,,, +ATCM,4320,001,1,6,7,3,,,,,1,,,,1,,1,,,,"Shukla, Nishanshi A",,,,, +ATCM,4326,001,6,4,4,2,,,1,,1,,,,,,,,,,"Fraley, James M",,,,, +ATCM,4330,001,1,6,6,4,6,2,,2,,,,,,,,,1,,"Burrough, Xtine L",,,,, +ATCM,4337,0W1,8,8,3,2,2,3,1,1,1,,,,1,,,,,,"Wood, Harold G",,,,, +ATCM,4337,0W2,10,12,4,2,1,,,,,,,,,,,,,,"Wood, Harold G",,,,, +ATCM,4340,001,7,12,4,1,3,,,2,,,,,,,,,1,,"McKinney, Mark",,,,, +ATCM,4350,0H1,3,3,1,,2,1,1,,1,,,1,2,,,,,,"Hewitt, Sharon A",,,,, +ATCM,4350,0W1,4,3,3,2,3,3,1,2,,,,,4,,,,2,,"Hewitt, Sharon A",,,,, +ATCM,4351,001,,20,3,1,,2,2,,1,,,,,,,,,,"Sweet, Kevin J",,,,, +ATCM,4363,001,2,5,3,,,,1,,1,,,,2,,,,,,"Nielsen, Christina R",,,,, +ATCM,4364,501,4,10,8,1,1,,,,,,,,,,,,,,"McKinney, Mark",,,,, +ATCM,4384,0H1,3,9,13,3,4,1,2,1,,,,,,,,,2,,"Johnson, Janet L",,,,, +ATCM,4384,0H2,8,9,5,3,5,2,,5,1,,,,,,,,1,,"Johnson, Janet L",,,,, +ATCM,4384,0H3,17,20,1,,1,,,,,,,,3,,,,1,,"Sen Gupta, Karl S",,,,, +ATCM,4397,002,4,4,2,,2,1,,,,,,,,,,,,,"Miller, Elisa K",,,,, +ATCM,4397,0H1,9,3,4,2,,1,,,,,,,,,,,,,"Rojas Ponce, Diana S",,,,, +ATCM,4397,0H2,2,9,,,1,,,,1,,,,,,,,,,"Terry, Dean D",,,,, +ATCM,4397,0W1,5,2,6,2,2,1,1,,,1,,,1,,,,1,,"Grieshaber, Amy",,,,, +ATCM,6322,001,,9,1,,,,,1,,,,,,,,,,,"Sweet, Kevin J",,,,, +ATCM,6375,001,,10,,,,,,,,,,,,,,,,,"Nguyen, Josef D",,,,, +AUD,6113,001,,,,,,,,,,,,,,,,,,11,"Cokely, Carol G",,,,, +AUD,6122,103,,10,,,,,,,,,,,,,,,,,"Clark, Jackie L","Heussner, Sophia B",,,, +AUD,6303,001,,10,1,,3,,,,,,,,,,,,,,"Lobarinas, Edward",,,,, +AUD,6305,0H1,,8,2,2,3,,,,,,,,,,,,,,"Jahn, Kelly N",,,,, +AUD,6310,001,,8,3,,2,1,,,,,,,,,,,,,"Mosley, Cornetta",,,,, +AUD,7253,001,,14,3,6,4,,,,,,,,,,,,,,"Griffiths, Scott K",,,,, +AUD,7280,070,,,,,,,,,,,,,,,,,,15,"Clark, Jackie L","Heussner, Sophia B",,,, +AUD,7321,001,,5,4,3,1,1,,,,,,,,,,,,,"Lobarinas, Edward",,,,, +AUD,7327,001,,10,,,4,,,1,,,,,,,,,,,"Clark, Jackie L","Heussner, Sophia B",,,, +AUD,7338,001,,5,5,4,1,,,,,,,,,,,,,,"Cokely, Carol G","Crow, Sarah E",,,, +AUD,7352,001,,12,2,,,,,,,,,,,,,,,,"Gohmert, Andrea K",,,,, +AUD,7V80,001,,,,,,,,,,,,,,,,,,14,"Mosley, Cornetta",,,,, +AUD,7V80,009,,,,,,,,,,,,,,,,,,11,"Griffiths, Scott K",,,,, +AUD,7V82,001,,,,,,,,,,,,,,,,,,15,"Griffiths, Scott K",,,,, +AUD,8V97,064,,,,,,,,,,,,,,,,,,14,"Cokely, Carol G",,,,, +BA,1310,001,6,6,9,16,12,5,,,,,,,1,,,,4,,"Cheung, Hung Yui",,,,, +BA,1310,501,1,5,15,5,4,7,8,1,,5,2,1,1,,,,1,,"Zhao, Xiaodan",,,,, +BA,1310,502,4,11,8,13,4,8,2,2,,,,,,,,,1,,"Cheung, Hung Yui",,,,, +BA,1320,001,3,8,17,13,3,7,4,1,,,1,,2,,,,1,,"Blueshtein, Moran","Goyal, Tarini","Ganthi, Lok Sundar",,, +BA,1320,002,13,22,8,10,,3,2,,,,,,1,,,,,,"Lewin, Peter","Konda, Ravi Kiran Reddy",,,, +BA,1320,003,3,6,9,13,6,12,4,2,,,2,,1,,,,1,,"Blueshtein, Moran","Goyal, Tarini","Ganthi, Lok Sundar",,, +BA,1320,501,5,16,17,5,10,,2,3,,,,,,,,,1,,"Lewin, Peter","Konda, Ravi Kiran Reddy",,,, +BA,3300,001,,9,6,8,7,6,4,7,1,,,,,,,,,,"Siegenthaler, Simon",,,,, +BA,3300,002,,14,4,12,6,1,5,1,1,,,1,2,,,,2,,"Siegenthaler, Simon",,,,, +BA,3300,003,4,7,7,10,9,8,3,,,,,,,,,,,,"Zhou, Junya",,,,, +BA,4090,001,,,,,,,,,,,,,,10,,,,,"Henderson, Thomas C",,,,, +BA,4090,091,,,,,,,,,,,,,,27,,,,,"Henderson, Thomas C",,,,, +BA,4090,092,,,,,,,,,,,,,,15,,,2,,"Dam, Van C",,,,, +BA,4095,0W1,,,,,,,,,,,,,,129,,,,,"Owens, Dawn M","Granger, Angela L",,,, +BA,4095,0W2,,,,,,,,,,,,,,76,,1,,,"Owens, Dawn M","Granger, Angela L",,,, +BA,4V90,093,,,,,,,,,,,,,,18,,,,,"Henderson, Thomas C",,,,, +BBSU,1100,001,17,1,,1,,,,1,1,,,1,,,,,,,"Villarreal, Mariaa A",,,,, +BBSU,1100,002,13,3,2,3,1,,,,,1,,,,,,,,,"Boynton, Catherine",,,,, +BBSU,1100,003,26,4,2,,,2,3,1,,,1,,,,,,,,"Taylor, Ryan B",,,,, +BBSU,1100,004,20,6,3,,,,,,1,,,,,,,,,,"Villarreal, Mariaa A",,,,, +BBSU,1100,005,27,2,5,1,1,1,,,,,,,,,,,,,"Grimmer, Leslie A",,,,, +BBSU,1100,006,22,7,5,5,1,1,2,,,,,,,,,,,,"Grimmer, Leslie A",,,,, +BBSU,1100,007,33,5,2,,1,,,,,,,,,,,,,,"Hamilton, Anna L",,,,, +BBSU,1100,008,25,5,4,2,2,,,1,,,,,1,,,,,,"Pierce, Corey E",,,,, +BBSU,1100,009,26,3,4,2,1,,,,,,1,,1,,,,,,"Boynton, Catherine",,,,, +BBSU,1100,010,27,8,2,3,,,,,,,,,,,,,,,"Pierce, Corey E",,,,, +BBSU,1100,0L1,21,3,1,3,2,,2,,1,,1,,1,,,,,,"Camacho, Kristina S",,,,, +BBSU,1100,0L2,24,3,3,,2,4,,,,,,,,,,,,,"Camacho, Kristina S",,,,, +BCOM,1300,001,2,3,17,7,3,3,1,,2,1,,,,,,,1,,"Herman, Emily L",,,,, +BCOM,1300,002,8,11,9,2,3,3,,1,1,,1,,1,,,,,,"Stewart, Julie M","Patel, Nirmit Pradip",,,, +BCOM,1300,003,17,7,6,5,1,,,,1,,,1,1,,,,,,"Stewart, Julie M","Patel, Nirmit Pradip",,,, +BCOM,1300,004,15,6,6,5,1,5,,,,,,,1,,,,,,"Stewart, Julie M","Patel, Nirmit Pradip",,,, +BCOM,1300,005,12,15,8,1,1,,1,,1,,,,1,,,,,,"Berardi, Caryn S",,,,, +BCOM,1300,006,1,10,14,2,6,2,1,1,2,,,,1,,,,,,"de los Santos, Veronica A",,,,, +BCOM,1300,007,1,5,15,11,3,,3,,2,,,,,,,,,,"Pitchford, Bethany","Bhimisetty, Maria P",,,, +BCOM,1300,008,2,15,12,3,3,2,1,,,,2,,,,,,,,"Harrison, Megan",,,,, +BCOM,1300,009,13,9,6,5,2,2,1,,,,,1,1,,,,,,"McCrady, Victoria D","Jethe Bhanushali, Mrudula S",,,, +BCOM,1300,010,8,4,6,8,2,1,,,1,2,,,2,,,,,,"McCrady, Victoria D","Jethe Bhanushali, Mrudula S",,,, +BCOM,1300,011,8,6,21,1,,1,,,,,,1,2,,,,,,"McCrady, Victoria D","Jethe Bhanushali, Mrudula S",,,, +BCOM,1300,012,13,4,12,2,4,1,1,,1,1,,,1,,,,,,"McCrady, Victoria D","Jethe Bhanushali, Mrudula S",,,, +BCOM,1300,013,1,5,12,6,3,5,3,1,1,1,,,1,,,,,,"Gilliland, Michaella W",,,,, +BCOM,1300,014,,7,6,3,5,3,4,2,1,,,,,,,,,,"Herman, Emily L",,,,, +BCOM,1300,015,5,14,7,6,3,2,,,,,1,,,,,,,,"McCrady, Victoria D","Jethe Bhanushali, Mrudula S",,,, +BCOM,1300,016,12,10,9,3,2,,2,2,1,,,,,,,,,,"Cordova, Denise","Bhimisetty, Maria P",,,, +BCOM,1300,017,,6,12,4,9,4,1,2,,,,1,1,,,,,,"Postolos, Christine A",,,,, +BCOM,1300,019,9,10,6,5,2,2,1,1,4,,,,,,,,,,"McCrady, Victoria D","Jethe Bhanushali, Mrudula S",,,, +BCOM,1300,0L1,3,12,9,4,1,,,,1,,,,1,,,,,,"Olshansky, Alexander",,,,, +BCOM,1300,0L2,16,11,5,1,2,1,1,2,,,,,,,,,1,,"Cordova, Denise","Bhimisetty, Maria P",,,, +BCOM,1300,0L3,6,10,9,2,,,2,,,,,,,,,,,,"Olshansky, Alexander",,,,, +BCOM,1300,502,4,11,11,5,3,1,,,1,,,2,1,,,,,,"Ali, Shazia",,,,, +BCOM,1300,503,7,7,9,3,1,2,1,1,,,1,,5,,,,1,,"Moore, Jason",,,,, +BCOM,1300,505,6,4,12,5,2,4,1,,,,1,,2,,,,,,"Blockley, Caylin",,,,, +BCOM,1300,506,2,4,8,5,2,3,1,,1,,,1,1,,,,,,"Pitchford, Bethany","Bhimisetty, Maria P",,,, +BCOM,3300,001,2,7,12,9,4,2,,2,1,,,,,,,,,,"Fry, Jennifer L",,,,, +BCOM,3300,002,20,10,7,5,4,,,,,,,,1,,,,,,"Cordova, Denise",,,,, +BCOM,3300,003,,6,13,11,3,3,,1,2,1,,,,,,,,,"Fry, Jennifer L",,,,, +BCOM,3300,004,,6,12,9,9,2,,1,1,,,,,,,,,,"Watson, John M","Raviprolu, Jishnu V",,,, +BCOM,3300,005,,7,8,8,12,2,1,,,,,,1,,,,,,"Watson, John M","Raviprolu, Jishnu V",,,, +BCOM,3300,006,2,8,13,8,4,3,1,,,,,,,,,,,,"Watson, John M","Raviprolu, Jishnu V",,,, +BCOM,3300,008,6,9,10,5,3,2,,2,,,1,1,1,,,,,,"McCrady, Victoria D","Jethe Bhanushali, Mrudula S",,,, +BCOM,3300,009,11,11,10,3,,,1,,,,,1,1,,,,,,"Woods Bennett, Joy M",,,,, +BCOM,3300,010,9,12,10,4,,1,,,,1,,,2,,,,,,"Stewart, Julie M","Patel, Nirmit Pradip",,,, +BCOM,3300,011,,5,7,13,4,5,1,2,,,,,3,,,,,,"Watson, John M","Raviprolu, Jishnu V",,,, +BCOM,3300,012,,5,16,5,11,1,1,,,,,,1,,,,,,"Watson, John M","Raviprolu, Jishnu V",,,, +BCOM,3300,013,2,8,12,7,3,4,1,,1,1,,,,,,,,,"Pitchford, Bethany","Bhimisetty, Maria P",,,, +BCOM,3300,014,5,7,11,4,3,1,2,2,2,,,1,2,,,,,,"Moore, Jason",,,,, +BCOM,3300,015,5,11,10,6,5,1,1,,,,,,1,,,,,,"Cooper, Austin",,,,, +BCOM,3300,016,8,15,13,2,1,,,,1,,,,,,,,,,"Woods Bennett, Joy M",,,,, +BCOM,3300,017,11,5,12,4,,2,1,,,,1,,5,,,,1,,"Cordova, Denise","Bhimisetty, Maria P",,,, +BCOM,3300,0T1,,6,5,2,1,,3,,,,,,,,,,,,"Moore, Sarah E","Verma, Tanya Shree",,,, +BCOM,3300,501,10,9,10,2,2,1,,1,,,,,,,,,2,,"Loyless, Lauren",,,,, +BCOM,3300,502,9,7,10,5,1,2,,,1,2,2,,,,,,,,"Horner, Kimberly D",,,,, +BCOM,3300,503,2,7,8,16,2,3,,,,,,,,,,,,,"Ali, Shazia",,,,, +BCOM,3300,504,6,8,10,5,5,1,,1,1,1,,,1,,,,,,"McCrady, Victoria D","Jethe Bhanushali, Mrudula S",,,, +BCOM,4300,001,1,4,11,5,6,4,2,3,,,,,1,,,,2,,"Siddiqui, Farah",,,,, +BCOM,4300,002,8,4,10,4,6,4,1,1,,,1,,1,,,,,,"Blockley, Caylin",,,,, +BCOM,4300,003,,6,11,7,7,5,4,,,,,,,,,,,,"Moore, Sarah E","Verma, Tanya Shree",,,, +BCOM,4300,004,10,7,10,8,1,4,,,,,,,,,,,,,"Moore, Sarah E","Verma, Tanya Shree",,,, +BCOM,4300,005,3,12,13,6,3,2,1,,,,,,,,,,,,"Moore, Sarah E","Verma, Tanya Shree",,,, +BCOM,4300,006,4,11,12,7,3,2,1,,,,,,,,,,,,"Moore, Sarah E","Verma, Tanya Shree",,,, +BCOM,4300,007,,1,2,8,8,9,3,,2,2,1,1,2,,,,1,,"Lookadoo, Kathryn","Verma, Tanya Shree",,,, +BCOM,4300,008,,5,6,2,8,6,2,2,3,2,2,,1,,,,,,"Lookadoo, Kathryn","Verma, Tanya Shree",,,, +BCOM,4300,009,,21,4,,10,,,1,,,,,1,,,,2,,"Hornsby, Melanie",,,,, +BCOM,4300,010,1,6,11,8,5,4,2,2,,1,,,,,,,,,"Lookadoo, Kathryn","Verma, Tanya Shree",,,, +BCOM,4300,011,1,7,4,6,11,3,1,3,1,1,,2,,,,,,,"Lookadoo, Kathryn","Verma, Tanya Shree",,,, +BCOM,4300,012,9,19,8,5,3,1,,,,,,,,,,,,,"Cordova, Denise","Bhimisetty, Maria P",,,, +BCOM,4300,013,2,2,11,8,4,6,1,2,1,,,1,1,,,,1,,"Siddiqui, Farah",,,,, +BCOM,4300,014,2,13,16,5,2,2,,,,,,,,,,,,,"Postolos, Christine A",,,,, +BCOM,4300,015,,18,4,3,11,,1,1,,,,,,,,,1,,"Hornsby, Melanie",,,,, +BCOM,4300,016,1,3,5,5,6,7,3,3,1,,1,,1,,,,2,,"Pitchford, Bethany","Bhimisetty, Maria P",,,, +BCOM,4300,501,2,2,4,6,2,3,3,,2,1,,,,,,,2,,"Alvarez, Manolo",,,,, +BCOM,4300,503,,1,2,3,2,7,1,4,,2,,,,,,,,,"Cox, Chauncey",,,,, +BCOM,4300,504,3,2,21,6,4,3,,,1,,,,,,,,,,"Cooper, Austin",,,,, +BIOL,1318,001,,3,,,14,,,8,,,4,,6,,,,,,"Maitra, Meenakshi",,,,, +BIOL,2111,501,113,46,36,22,27,12,6,5,5,2,1,2,,,,,1,,"Srikanth, Uma",,,,, +BIOL,2111,502,28,11,24,11,14,17,13,9,5,8,4,3,4,,,,1,,"Gomez, Amy Jo M","Elhawary, Ezzeldin N","Ning, Dun",,, +BIOL,2111,503,82,59,28,19,15,12,9,,2,2,,1,3,,,,,,"Padmanabhan, Ramesh",,,,, +BIOL,2112,501,10,21,41,22,20,16,9,17,20,10,6,8,17,,,,6,,"Wilson, Michelle M",,,,, +BIOL,2281,301,2,6,3,5,2,2,,2,,,,,1,,,,,,"Huang, Yi","Griffin, Caylah",,,, +BIOL,2281,302,3,7,2,5,,,1,1,,1,,,,,,,1,,"Lin, Wen J","Raghavaraju, Nikhitha",,,, +BIOL,2281,303,2,4,4,6,1,2,2,,,1,1,,,,,,,,"Huang, Yi","Arugonda, Ravali",,,, +BIOL,2281,304,1,4,1,5,,5,1,2,1,1,,1,1,,,,,,"Lin, Wen J","Raghavaraju, Nikhitha",,,, +BIOL,2281,305,1,1,3,5,1,2,2,2,,1,,1,,,,,,,"Pickett, Elizabeth A","Bailey, Juanita A",,,, +BIOL,2281,306,1,2,2,3,,3,1,3,1,2,1,1,,,,,1,,"Davenport, Anne","Senu, Ebenezer",,,, +BIOL,2281,307,,2,3,3,2,3,2,2,1,1,,1,1,,,,,,"Lin, Wen J","Liu, Junyu",,,, +BIOL,2281,308,1,7,2,2,1,2,2,1,1,,,,2,,,,1,,"Davenport, Anne","Flores, Justin M",,,, +BIOL,2281,309,,3,1,5,4,2,2,1,2,,,,2,,,,,,"Lin, Wen J","Bailey, Juanita A",,,, +BIOL,2281,310,7,5,4,1,2,,1,2,,,,,,,,,,,"Pickett, Elizabeth A","Liu, Junyu",,,, +BIOL,2281,312,,4,6,2,2,3,1,1,2,,,1,,,,,,,"Tien, Hsin-Jung","Flores, Justin M",,,, +BIOL,2281,313,,4,2,2,4,2,3,2,,1,2,,,,,,,,"Lin, Wen J","Senu, Ebenezer",,,, +BIOL,2281,314,1,5,3,6,2,4,,1,,,,,1,,,,,,"Briggs, Alyssa A","Griffin, Caylah",,,, +BIOL,2281,315,2,7,2,3,1,3,3,1,,,,,,,,,,,"Pickett, Elizabeth A","Estrada, Bryan J",,,, +BIOL,2281,317,1,4,2,3,1,3,2,1,1,,1,,2,,,,,,"Huang, Yi","Estrada, Bryan J",,,, +BIOL,2311,001,113,46,36,22,27,12,6,5,5,2,1,2,,,,,3,,"Srikanth, Uma","Kwende, Sharon A","Maiti, Dibyo","Gomez, Jessica E","Suresh, Prarthana", +BIOL,2311,002,28,11,24,12,14,17,13,9,5,8,4,3,4,,,,4,,"Gomez, Amy Jo M","Elhawary, Ezzeldin N","Ning, Dun",,, +BIOL,2311,501,82,59,28,19,15,12,9,,2,2,,1,3,,,,,,"Padmanabhan, Ramesh","Winn, Emma A","Anand, Rithika","Sirimanna, Ridma H",, +BIOL,2312,001,10,21,41,22,20,16,9,17,20,10,6,8,17,,,,8,,"Wilson, Michelle M","Thomas, Nathaniel","Alemi, Parinazsadat","Camp, John M",, +BIOL,3203,101,8,9,3,3,1,,,,,,,,,,,,,,"Gomez, Amy Jo M","Wickramasinghe, Piumi B","Christensen, Priya M",,, +BIOL,3203,102,,7,8,2,4,1,,1,1,,,,,,,,,,"Davenport, Anne","Wickramasinghe, Piumi B","Dalvi, Hrishikesh H","Christensen, Priya M",, +BIOL,3203,103,1,6,9,5,2,1,,,,,,,,,,,,,"Davenport, Anne","Christensen, Priya M","Dalvi, Hrishikesh H",,, +BIOL,3203,104,20,2,,,,,,,,,,,,,,,,,"Palmer, Kelli L","Dhar, Roopal",,,, +BIOL,3303,001,30,47,30,21,27,23,9,12,,2,4,,1,,,,3,,"DeNisco, Nicole J","Dillon, Nicholas","Basu, Ujjaini","Yaqub, Muneer O","Zaheen Khan, Fabiha", +BIOL,3312,001,5,5,1,4,5,3,,1,1,1,1,,1,,,,1,,"Morcos Gonzalez, Alonso","Ziegler, Cheyenne E",,,, +BIOL,3318,001,8,12,22,16,9,8,2,1,3,2,,,,,,,2,,"Barber, Kathleen B","Evers, Anna N",,,, +BIOL,3320,001,1,4,,1,1,1,,1,,,1,1,1,,,,,,"Hajeri, Vinita","Walisundara, Walisundara M",,,, +BIOL,3320,002,1,3,3,,2,1,1,,,,,,1,,,,,,"Hajeri, Vinita","Walisundara, Walisundara M",,,, +BIOL,3325,001,14,32,6,2,,,,,,,,,,,,,,,"Sarcar, Subha","Dao, Alex",,,, +BIOL,3335,001,5,29,15,11,33,8,5,20,,,,,,,1,,3,,"Reitzer, Lawrence J","Petter, Andrew T","Uppuluri, Aparna",,, +BIOL,3357,001,,4,4,1,6,,,,,,1,,,,,,,,"Wu, Zhuoru","Tiwari, Suman",,,, +BIOL,3370,001,12,4,2,5,3,,1,1,1,1,4,,3,,,,2,,"Wu, Zhuoru","Tiwari, Suman",,,, +BIOL,3380,301,3,4,1,1,,1,1,,1,,1,1,,,,,,,"Mazambani, Simbarashe","Shi, Zhan",,,, +BIOL,3380,303,3,1,2,,7,,1,1,,2,,,4,,,,,,"Rippel, Scott A","Chacon Castro, Maria Del Carmen",,,, +BIOL,3380,304,2,6,4,4,,3,1,1,,,,,1,,,,,,"Mazambani, Simbarashe","Falah, Rafah M",,,, +BIOL,3380,305,,1,,1,2,2,4,1,3,,,,1,,,,1,,"Mazambani, Simbarashe","Rappazzo, Jacob M",,,, +BIOL,3380,306,,1,2,1,2,2,,,,1,,2,,,,,,,"Rippel, Scott A","Falah, Rafah M",,,, +BIOL,3380,307,1,3,8,6,,,1,2,1,,,,,,,,,,"Pan, Jing","Shi, Zhan",,,, +BIOL,3380,308,3,4,1,5,1,3,1,1,1,,,,,,,,1,,"Pan, Jing","Liu, Yihan",,,, +BIOL,3380,309,1,4,3,4,1,2,1,2,1,,,1,1,,,,,,"Mazambani, Simbarashe","Rappazzo, Jacob M",,,, +BIOL,3380,310,1,1,7,2,1,,1,4,1,,1,,,,,,,,"Pan, Jing","Liu, Yihan",,,, +BIOL,3385,001,,10,2,1,8,1,,6,,,1,,,,,,,,"Murchison, David F",,,,, +BIOL,3388,001,5,5,6,4,3,1,2,,,,,,,,,,1,,"Rippel, Scott A",,,,, +BIOL,3401,001,65,51,31,27,27,18,8,11,1,1,1,,1,,,,5,,"Dong, Xintong","Pickett, Elizabeth A","Le, Alyssa","Balasundarasekar, Bhavani","Balaji, Sharan Kumar","Khuwaja, Waris Muhammad" +BIOL,3402,001,20,16,29,28,10,8,5,5,2,1,1,1,,,,,1,,"Srikanth, Uma","Delk, Nikki A","Patel, Umar J","Maity, Subhajit",, +BIOL,3402,002,10,14,11,4,7,5,4,5,4,1,,,1,,,,1,,"Sarcar, Subha","Nelson, Ashlianne A",,,, +BIOL,3455,301,4,2,2,3,1,4,2,2,5,,1,2,4,,,,4,,"Padmanabhan, Ramesh","Ramirez, Ruben D",,,, +BIOL,3455,302,,2,5,5,2,3,4,,3,2,2,,3,,,,2,,"Padmanabhan, Ramesh","Ramirez, Ruben D",,,, +BIOL,3455,303,8,6,5,1,4,2,3,1,4,1,,1,,,,,,,"Wu, Zhuoru","Ramirez, Ruben D","Gong, Hanling",,, +BIOL,3455,304,1,,,2,2,4,5,3,3,5,2,1,1,,1,,6,,"Maitra, Meenakshi","Ramirez, Ruben D","Veera, Kavya",,, +BIOL,3455,305,1,1,2,1,4,1,2,3,6,3,1,3,2,,,,3,,"Maitra, Meenakshi","Ramirez, Ruben D","Veera, Kavya","Langley, Lyndsey",, +BIOL,3455,306,4,3,2,4,3,5,2,1,,2,1,,4,,,,4,,"Huang, Yi","Ramirez, Ruben D","Gong, Hanling",,, +BIOL,3455,801,6,3,5,4,2,7,,1,2,,1,2,2,,,,,,"Wu, Zhuoru","Ramirez, Ruben D","Deese, Alexander R",,, +BIOL,3455,802,,2,1,3,3,4,2,4,3,1,1,1,4,,,,4,,"Huang, Yi","Ramirez, Ruben D","Deese, Alexander R",,, +BIOL,3456,301,3,5,3,3,5,1,2,2,1,,1,2,,,,,,,"Sarcar, Subha","Yu, Wen-Ho","Spence, Lindsay J",,, +BIOL,3456,302,2,5,3,3,2,1,,3,2,,,,1,,,,,,"Yu, Wen-Ho",,,,, +BIOL,3456,303,,1,1,1,1,4,1,1,,1,2,,,,,,,,"Yu, Wen-Ho",,,,, +BIOL,3456,801,2,5,5,3,4,3,1,2,1,2,1,1,,,,,2,,"Yu, Wen-Ho",,,,, +BIOL,3461,001,13,46,24,25,30,10,2,2,,,1,,1,,,,1,,"Gavva, Sandhya R","Wicherts, Dylan M","Budhathoki, Prakriti","Liyana Withanage, Nadeesha Tharangani",, +BIOL,3461,002,13,32,30,17,18,22,15,9,11,2,2,1,7,,,,3,,"Boyd, Stefanie D","Akter, Zakia","Zhi, Jiahe","Salamat, Narges","Zhabilov, Dannie", +BIOL,3461,003,31,51,23,11,29,15,7,4,6,2,3,1,3,,,,,,"Boyd, Stefanie D","Akter, Zakia","Zhi, Jiahe","Salamat, Narges","Zhabilov, Dannie", +BIOL,3462,001,1,10,12,15,8,7,5,4,5,3,,2,2,,,,,,"Candas, Mehmet","Sunder Singh, Jacqulene Preethi","Maity, Tuhina",,, +BIOL,3V00,002,8,7,2,4,3,1,2,,,1,,,,,,,,,"Sadat, Eva L","Afolami, Olufemi Ifeoluwa",,,, +BIOL,3V00,0W1,9,17,1,2,,,,,,,1,,,,,,,,"Candas, Mehmet",,,,, +BIOL,4302,024,8,1,,,1,,,,,,,,,,,,,,"Ramirez, Ruben D",,,,, +BIOL,4302,055,,15,,,,,,,,,,,,,,,,,"Lin, Wen J",,,,, +BIOL,4302,060,,14,,,,,,,,,,,,,,,,,"Wilson, Michelle M",,,,, +BIOL,4302,066,16,,,,,,,,,,,,,,,,,,"Padmanabhan, Ramesh",,,,, +BIOL,4325,001,,6,7,13,14,3,2,3,,,,,1,,,,,,"Candas, Mehmet",,,,, +BIOL,4345,001,,95,5,4,4,1,1,,1,1,1,,1,,,,,,"Wilson, Michelle M","Hossain, Md Liakat","Parupalli, Preethi",,, +BIOL,4360,001,3,7,,1,2,,,1,,,,1,,,,,,,"Pickett, Elizabeth A",,,,, +BIOL,4371,001,,46,,,2,,,,,,,,,,,,1,,"Sanchez, Erica L","Hisam, Fatima",,,, +BIOL,4380,301,14,6,2,,,,,,,,,,,,,,,,"Sadat, Eva L","Aleman, Jayden",,,, +BIOL,4380,302,7,7,4,2,,1,1,,1,,,,,,,,,,"Gomez, Amy Jo M","Shryock, Douglas G",,,, +BIOL,4380,303,10,5,5,1,,1,,1,,,,,,,,,,,"Sadat, Eva L","Hari Prasad, Vineeth",,,, +BIOL,4380,304,15,7,1,,,,,1,,,,,,,,,,,"Sadat, Eva L","Joshi, Ketki",,,, +BIOL,4380,306,7,1,1,4,4,3,,2,1,,,,,,,,,,"Gomez, Amy Jo M","Konakalla, Anisha Reddy",,,, +BIOL,4385,001,1,17,,1,13,,,2,,,1,,,,,,,,"Murchison, David F",,,,, +BIOL,5312,001,,5,2,2,3,2,,,,,,,,,,,1,,"Morcos Gonzalez, Alonso","Ziegler, Cheyenne E",,,, +BIOL,5375,001,,12,4,8,4,1,,1,,,,,,,,,2,,"Pan, Jing",,,,, +BIOL,5376,501,,3,7,14,17,,,4,,,,,,,,,,,"Xuan, Zhenyu","Xu, Linyi",,,, +BIOL,5420,001,,31,,,27,,,1,,,,,,,,,,,"Kim, Tae Hoon","Miller, Edmund A",,,, +BIOL,5460,001,,,,15,6,,,,,,,,,,,,2,,"Xuan, Zhenyu","Zhang, Michael Q","Zhang, Nan",,, +BIOL,6100,001,,,,,,,,,,,,,,,,,1,16,"Hong, Tian",,,,, +BIOL,6252,001,,,,,,,,,,,,,,,,,,16,"Hong, Tian","Zhang, Michael Q",,,, +BIOL,6342,001,,13,1,,,,,,,,,,,,,,,,"Joshi, Purna A",,,,, +BIOL,6343,001,,5,5,1,4,1,,,,,,,,,,,,,"Srikanth, Uma","Sapkota, Darshan","Lalami, Hamza","Suresh, Prarthana",, +BIOL,6373,001,,9,1,4,5,4,2,3,,,,,2,,,,,,"Winkler, Duane D",,,,, +BIOL,6398,001,,14,,,,,,,,,,,,,,,,,"Boll, Joseph",,,,, +BIS,1100,001,,26,1,,,,,,,,,,2,,,,,,"Werhnyak, Larissa",,,,, +BIS,1100,002,28,2,,,,,,,,,,,,,,,,,"Lusk, Marc L",,,,, +BIS,1100,003,,31,,1,,,,,,,,,1,,,,,,"Werhnyak, Larissa",,,,, +BIS,1100,004,20,15,1,,,,,,,,,,,,,,,,"Lusk, Marc L",,,,, +BIS,1100,005,,28,1,,,,,1,,,1,,,,,,1,,"Naqvi, Syed K",,,,, +BIS,1100,006,,29,,,1,,,,,,,,,,,,,,"Naqvi, Syed K",,,,, +BIS,1100,501,,9,,,3,,,,,,,,1,,,,,,"Naqvi, Syed K",,,,, +BIS,1100,502,16,3,1,,,1,,,,,,,,,,,,,"Lusk, Marc L",,,,, +BIS,2190,0W1,4,8,1,5,1,,3,,,,,,1,,,,2,,"Dornback, Sarah",,,,, +BIS,2190,0W2,11,7,,,,,1,,,,,,1,,,,,,"Edwards, Christopher W",,,,, +BIS,2190,0W3,16,5,1,1,,,,1,,,,1,,,,,1,,"Henry, Loreen S",,,,, +BIS,3320,001,2,3,6,1,2,,,,,,,,1,,,,2,,"Jones, June A",,,,, +BIS,3320,002,12,4,2,,1,,,,,,,,,,,,,,"Lusk, Marc L",,,,, +BIS,3320,003,6,6,6,,,,,,,,,,1,,,,,,"Lusk, Marc L",,,,, +BIS,3320,004,4,12,5,2,2,,,,1,,,,1,,,,,,"Wright, David A",,,,, +BIS,3320,005,15,5,2,,1,1,1,,,,,,1,,,,,,"Hammonds, Kyle",,,,, +BIS,3320,0W1,8,4,5,1,1,2,,1,,,1,,2,,,,1,,"Hammonds, Kyle",,,,, +BIS,3320,501,1,5,9,,,,,,,,,,,,,,1,,"Wright, David A",,,,, +BIS,3320,502,1,1,2,,,3,,,1,,2,,4,,,,,,"Jones, June A",,,,, +BIS,4306,0W1,1,2,4,2,1,2,2,,2,1,,,,,,,,,"Simpson, Carrie M",,,,, +BLAW,2301,001,6,8,3,7,10,11,5,15,1,4,5,1,2,,,,5,,"Gamino, John P",,,,, +BLAW,2301,002,3,6,2,9,14,12,6,12,5,5,4,,1,,,,4,,"Gamino, John P",,,,, +BLAW,2301,003,,74,3,5,2,,1,,,,,,,,,,,,"Polze, Matthew M",,,,, +BLAW,2301,004,1,19,9,8,4,5,4,4,3,,2,,,,,,,,"Sutton, Walter L","Mariano, Dylan N",,,, +BLAW,2301,005,,15,15,12,13,,4,,,,,,,,,,,,"Baloul, Mirna A","Mariano, Dylan N",,,, +BLAW,2301,0L1,,55,8,7,11,1,,,1,,2,2,,,,,,,"Polze, Matthew M",,,,, +BLAW,2301,501,,8,6,7,6,12,10,4,6,,7,,5,,,,13,,"Betanzos, Christina L","Surani, Sanya R",,,, +BLAW,2301,502,,13,13,2,12,10,8,2,11,,7,,2,,,,3,,"Betanzos, Christina L","Surani, Sanya R",,,, +BLAW,2301,503,,15,12,5,7,9,10,7,10,,4,,5,,,,1,,"Betanzos, Christina L","Surani, Sanya R",,,, +BLAW,2301,504,4,11,9,11,16,,3,2,,,,,,,1,,,,"Baloul, Mirna A","Mariano, Dylan N",,,, +BLAW,2301,HO1,,7,6,7,2,2,2,,,,,,,,,,,,"Polze, Matthew M",,,,, +BLAW,2301,HON,,7,4,4,9,3,2,,,,,,,,,,1,,"Polze, Matthew M",,,,, +BLAW,3301,501,2,2,4,14,11,3,5,2,1,1,,,2,,,,2,,"Minchey, Kevin","Berbarie, Edward",,,, +BLAW,4301,001,2,21,12,5,,,,,,,,,,,,,,,"Sutton, Walter L",,,,, +BMEN,1100,101,3,6,11,2,,,,,,,,,,,,,,,"Myers, Kathleen M","Trevino, Paulina I","Zhao, Wanyu","Najjari, Aryan",, +BMEN,1100,102,1,4,4,3,3,,,1,,,,,,,,,,,"Myers, Kathleen M","Trevino, Paulina I","Zhao, Wanyu","Najjari, Aryan",, +BMEN,1100,103,6,6,3,6,,,,1,1,,,,,,,,,,"Myers, Kathleen M","Trevino, Paulina I","Zhao, Wanyu","Najjari, Aryan",, +BMEN,1100,104,3,3,1,1,2,,,1,,,,,,,,,,,"Myers, Kathleen M","Trevino, Paulina I","Zhao, Wanyu","Najjari, Aryan",, +BMEN,1100,105,1,7,1,2,2,,,,1,,1,,1,,,,2,,"Myers, Kathleen M","Zhao, Wanyu","Trevino, Paulina I","Najjari, Aryan",, +BMEN,1100,1L1,5,7,5,2,1,,,1,1,,,,,,1,,,,"Myers, Kathleen M","Trevino, Paulina I","Zhao, Wanyu","Najjari, Aryan",, +BMEN,1208,301,3,7,2,2,1,2,2,1,,,,,2,,,,1,,"Shihab, Rafiul Hossain","Meyer, Clark A","Myers, Kathleen M","Rios, Evelin",, +BMEN,1300,001,6,8,6,2,1,1,1,2,,,,,,,,,,,"Good, Levi B","Pandala, Niharika",,,, +BMEN,1300,002,6,4,3,5,5,,,2,,,2,,,,,,1,,"Good, Levi B","Pandala, Niharika","Wu, Yupeng",,, +BMEN,1300,003,7,2,2,7,4,1,,1,,2,,,1,,,,2,,"Shihab, Rafiul Hossain","Gopalakrishnan, Swaminathan",,,, +BMEN,1300,004,6,5,3,4,3,2,,,1,,1,,3,,,,1,,"Shihab, Rafiul Hossain","Gopalakrishnan, Swaminathan","Wu, Yupeng",,, +BMEN,2320,001,10,1,4,3,6,1,3,3,,3,,1,2,,,,5,,"Ferruzzi, Jacopo","Nguyen, Victor V","Chavez, Chastity C","Sanjuan Bermudez, Angelica",, +BMEN,2320,002,14,4,4,4,4,2,2,5,2,,2,,1,,,,,,"Rivera, Christian","Chavez, Chastity C","Nguyen, Victor V","Sanjuan Bermudez, Angelica",, +BMEN,3220,101,6,3,2,1,1,2,,,,1,,,1,,,,1,,"Ali, Tariq M","Nammi, Satweka",,,, +BMEN,3220,102,7,6,3,1,,,,,,,,,,,,,,,"Ali, Tariq M",,,,, +BMEN,3220,103,6,3,1,,2,2,1,,,,,,,,,,1,,"Ali, Tariq M","Azami, Amirhossein",,,, +BMEN,3220,104,7,7,1,2,,1,,,,,,,1,,,,,,"Ali, Tariq M","Nayak, Ritika",,,, +BMEN,3302,001,7,13,,2,1,,2,1,,,,,2,,,,,,"Kim, Brian N","Bapanapalli, Vishnu Saket S",,,, +BMEN,3302,002,5,6,3,,,2,,1,1,,,,,,,,,,"Meyers, Eric C","Bapanapalli, Vishnu Saket S",,,, +BMEN,3310,001,8,5,3,1,1,2,1,1,3,,,,2,,,,,,"Rivera, Christian","Carnes, Connor K",,,, +BMEN,3315,001,2,9,,1,5,,1,8,,,,,1,,,,2,,"Schmidtke, David W","Neema, Naomie M",,,, +BMEN,3315,002,7,13,5,2,4,1,,,,,,,,,,,,,"Gao, Yongsheng","Wu, Yupeng",,,, +BMEN,3320,001,8,7,5,7,9,6,3,5,4,,,,6,,,,1,,"Ali, Tariq M","Nammi, Satweka",,,, +BMEN,3325,001,1,4,6,2,2,,1,,,,,,1,,,,,,"Levene, Stephen D","Warren, Jeremy L",,,, +BMEN,3331,001,4,7,4,4,1,,,,,,,,,,,,,,"Dingal, Polimyr Caesar Dave P","Marquez, Christine Ardelle O",,,, +BMEN,3331,002,3,18,2,,,,,,,,,,1,,,,,,"Jones, Caroline",,,,, +BMEN,3332,001,1,5,6,9,6,7,7,3,6,2,,,1,,,,2,,"Good, Levi B","Ghaderi, Mohammadaref",,,, +BMEN,3341,001,3,17,7,6,5,5,,2,,,2,1,1,,,,,,"Myers, Kathleen M","Shihabeddin, Tarik",,,, +BMEN,3350,001,6,5,5,2,1,,2,,1,,,,2,,,,,,"Brown, Katherine G","Nammi, Satweka",,,, +BMEN,3380,001,,3,3,1,3,4,2,3,1,,,,1,,,,,,"Good, Levi B","Taylor, Hudson R",,,, +BMEN,3399,001,7,7,1,9,6,,4,,1,1,,1,1,,,,1,,"Varner, Victor","Zamani, Elham",,,, +BMEN,4301,001,23,6,,,2,,,1,,,,,,,,,,,"Porter, Benjamin A",,,,, +BMEN,4310,501,,30,,1,2,,,1,,,,,,,,,,,"Li, You","Taylor, Hudson R",,,, +BMEN,4360,001,8,7,11,5,1,4,,,,,,,1,,,,,,"Obaid, Girgis A","Mabbun, Kaye M",,,, +BMEN,4370,001,3,4,2,,4,,,,1,,,,1,,,,1,,"Brown, Katherine G",,,,, +BMEN,4371,001,4,1,5,,3,2,,,,,,,,,,,,,"Ding, Yichen",,,,, +BMEN,4388,001,,5,5,13,5,2,,,,,,,,,,,,,"Polk, Todd W","Tjahjono, Nathaniel S",,,, +BMEN,4388,003,,4,10,10,3,1,1,,1,,,,,,,,,,"Polk, Todd W","Tjahjono, Nathaniel S",,,, +BMEN,4389,001,,7,7,7,2,2,4,1,,,,,,,,,,,"Polk, Todd W","Tjahjono, Nathaniel S",,,, +BMEN,4V95,001,,4,,1,2,,,2,,,,,,,,,1,,"Levene, Stephen D",,,,, +BMEN,6329,001,,17,,,1,,,,,,,,,,,,,,"Porter, Benjamin A",,,,, +BMEN,6337,001,,17,1,,,,,,,,,,,,,,,,"Hill, Roger J",,,,, +BMEN,6342,001,,17,,,,,,,,,,,,,,,,,"Rodrigues, Danieli B",,,,, +BMEN,6345,001,,16,,3,3,,,,,,,,,,,,,,"Schmidtke, David W",,,,, +BMEN,6355,001,,11,1,3,,,,,,,,,,,,,,,"Prasad, Shalini",,,,, +BMEN,6373,001,,15,6,2,2,,,1,,,,,,,,,,,"Bian, Fang",,,,, +BMEN,6393,5H1,,19,1,,,,,,,,,,,,,,,,"Cogan, Stuart",,,,, +BMEN,6395,001,,14,,,,,,,,,,,,,,,,,"Hays, Seth A",,,,, +BMEN,7088,001,,,,,,,,,,,,,,,,,,52,"Feng, Xu",,,,, +BMEN,7188,001,,24,3,4,1,1,,,,,,,,,,,,,"Feng, Xu",,,,, +BMEN,7340,001,,25,2,3,,,,,,,,,,,,,,,"Bian, Fang",,,,, +BMEN,8V70,015,,,,,,,,,,,,,1,,,,,9,"Prasad, Shalini",,,,, +BPS,4305,001,9,2,17,7,18,4,1,1,1,,,,,,,,,,"Lee, Jennifer","Yan, Xinyu",,,, +BPS,4305,501,10,14,9,10,2,7,4,1,2,,,,,,,,,,"Lee, Jennifer","Yan, Xinyu",,,, +BPS,4305,502,13,14,12,5,3,3,3,,3,,,,,,,,,,"Lee, Jennifer","Yan, Xinyu",,,, +BPS,4395,001,5,20,7,4,4,7,2,,,,,,,,,,,,"Kheirandish, Ali",,,,, +BPS,4395,002,,50,,,,,,,,,,,,,,,,,"Parks, David",,,,, +BPS,4395,003,4,16,14,1,8,,1,2,,,1,,,,,,,,"Goodrich, Mary Beth W","Patne, Saylee Pramod",,,, +BPS,4395,004,7,24,12,1,,1,1,,,,,,,,,,,,"Kumar, Arun",,,,, +BPS,4395,005,1,30,5,2,12,,,,,,,,,,,,,,"Henderson, Thomas C",,,,, +BPS,4395,006,4,18,24,1,3,,,,,,,,,,,,,,"Penton, Kimia",,,,, +BPS,4395,007,,11,23,12,3,,,,,,,,,,,,,,"Segelhorst, Jon P",,,,, +BPS,4395,008,,4,6,,3,2,,,,,,,,,,,1,,"An, Constance",,,,, +BPS,4395,009,,39,,,9,,,2,,,,,,,,,,,"Clinton, Shaun",,,,, +BPS,4395,501,21,19,8,2,,,,,,,,,,,,,,,"Kitamura, Yuko",,,,, +BPS,4395,502,3,9,18,2,9,3,,3,,,,,1,,,,,,"Velayudham, Senthilnatha",,,,, +BPS,4396,001,2,10,26,4,2,1,,2,1,,,,,,,,,,"Albrecht, Maria",,,,, +BPS,4396,002,7,23,8,6,2,1,,,1,,,,,,,,,,"Kheirandish, Ali",,,,, +BPS,6310,0W1,,16,16,13,6,,,,,,,,,,,,1,,"Lin, Zhiang","Jiang, Rui",,,, +BPS,6310,CH1,,23,,,,,,,,,,,,,,,,,"Gustin, Jan D",,,,, +BPS,6310,MBC,,14,3,,24,,,,,,,,,,,,,,"Qian, Cuili","Liu, Yilin",,,, +BPS,6310,X01,,13,,,6,,,1,,,,,,,,,,,"Peng, Mike W",,,,, +BPS,6332,501,,7,,,3,,,,,,,,,,,,,,"Dess, Gregory G","Song, You-Xiang",,,, +BPS,6332,GW1,,14,,,1,,,,,,,,,,,,,,"Thurgood, Keith L",,,,, +BPS,6V99,X01,,5,10,3,1,1,,,,,,,,,,,,,"Strickland, Warren L",,,,, +BUAN,4090,091,,,,,,,,,,,,,,11,,,,,"Akarte, Prajakti V",,,,, +BUAN,4373,001,1,2,,1,,1,1,1,2,,2,,,,,,1,,"Ramezani, Rasoul","Shankar, Nandhakumar Raj",,,, +BUAN,6009,001,,,,,,,,,,,,,,,,,,21,"Thomas, Sunela S",,,,, +BUAN,6009,091,,,,,,,,,,,,,,,,,,10,"Thomas, Sunela S",,,,, +BUAN,6312,001,,16,9,9,11,9,8,3,,,,,1,,,,,,"Liu, Quanquan","Kim, Haeun","Narra, Siva Srinivas",,, +BUAN,6312,002,,5,4,9,3,1,1,,,,,,,,,,1,,"Blueshtein, Moran","Goyal, Tarini",,,, +BUAN,6312,003,,12,8,18,6,3,5,,,,,,,,,,,,"Liu, Quanquan","Kim, Haeun","Narra, Siva Srinivas",,, +BUAN,6312,0W1,,8,3,9,6,1,1,,,,,,2,,,,1,,"Blueshtein, Moran","Goyal, Tarini",,,, +BUAN,6312,501,,12,12,12,11,8,4,3,,,,,1,,,,,,"Liu, Quanquan","Kim, Haeun","Narra, Siva Srinivas",,, +BUAN,6312,502,,13,14,11,12,7,6,2,,,,,,,,,,,"Chudik, Alexander","Botcha, Sumana",,,, +BUAN,6312,S01,,9,11,12,9,4,4,2,,,,,3,,1,,,,"Liu, Quanquan","Kim, Haeun","Narra, Siva Srinivas",,, +BUAN,6312,SW1,,6,2,2,2,1,,,,,,,,,,,,,"Blueshtein, Moran",,,,, +BUAN,6320,001,,26,14,5,4,4,,,,,,,,,,,1,,"El-khodari, Gasan E","Tiwari, Saksham",,,, +BUAN,6320,002,,17,19,15,5,,,,,,,,,,,,1,,"Srikanth, Kannan","Duddu, Sravanthi",,,, +BUAN,6320,004,,10,14,4,4,,,,,,,,,,,,,,"Wu, Lidong","Rajendra, Chethan",,,, +BUAN,6320,006,,18,7,11,2,,,,,,,,,,,,,,"Wu, Lidong","Rajendra, Chethan",,,, +BUAN,6320,007,,14,10,8,5,3,1,,,,,,,,,,1,,"Pandian, Thiru","Mokkapati Sridhar, Karthik","Nisthala, Venkat Bhargav",,, +BUAN,6320,008,,19,22,15,2,,,,,,,,,,,,,,"Srikanth, Kannan","Duddu, Sravanthi",,,, +BUAN,6320,009,,4,3,7,4,3,3,3,,,,,3,,,,,,"Cavusoglu, Huseyin","Li, Baorui",,,, +BUAN,6320,0W1,,6,4,3,5,4,1,,,,,,1,,,,,,"Cavusoglu, Huseyin","Li, Baorui",,,, +BUAN,6320,501,,25,17,9,1,1,,,,,,,2,,,,,,"El-khodari, Gasan E","Tiwari, Saksham",,,, +BUAN,6320,S01,,38,13,6,,,,,,,,,1,,,,,,"Swamy, Venkat",,,,, +BUAN,6320,S02,,33,5,4,,,,,,,,,3,,,,,,"Swamy, Venkat",,,,, +BUAN,6320,SW1,,8,3,4,4,,,,,,,,,,,,,,"Ryu, Young U",,,,, +BUAN,6333,501,,25,12,6,5,4,1,,,,,,1,,,,,,"Shadid, Waseem G","Kiarie, Maryanne W",,,, +BUAN,6335,501,,9,12,7,2,,,1,,,,,,,,,1,,"Samant, Mandar","Dhanasekaran, Janani",,,, +BUAN,6335,502,,7,16,9,1,,,2,,,,,,,,,,,"Samant, Mandar","Dhanasekaran, Janani",,,, +BUAN,6335,SW1,,20,13,3,1,,,,,,,,1,,,,,,"Narayan, Ravishankar L",,,,, +BUAN,6337,001,,18,13,26,2,,,,,,,,,,,,,,"Shahrokhi Tehrani, Shervin","Yousefi Pour, Vahid",,,, +BUAN,6337,0W1,,1,13,9,11,2,,,,,,,,,,,,,"Subramanian, Upender","Pain, Krishnendu",,,, +BUAN,6337,501,,11,17,26,3,,,,,,,,,,,,,,"Shahrokhi Tehrani, Shervin","Yousefi Pour, Vahid",,,, +BUAN,6337,S01,,5,9,11,15,3,2,1,,,,,,,,,,,"Allison, Kyle",,,,, +BUAN,6337,SW1,,5,4,3,2,,,,,,,,1,,,,1,,"Subramanian, Upender",,,,, +BUAN,6340,501,,7,6,2,4,,,,,,,,,,,,,,"Lavastida, Thomas","Mudunuri, Devamsh Varma",,,, +BUAN,6341,001,,11,24,5,5,1,,,,,,,,,,,,,"Meng, Zixuan","Sarraf, Keshav",,,, +BUAN,6341,003,,13,12,10,3,4,,,,,,,,,,,,,"Meng, Zixuan","Sarraf, Keshav",,,, +BUAN,6341,501,,16,7,10,5,1,1,,,,,,,,,,,,"Meng, Zixuan","Sarraf, Keshav",,,, +BUAN,6341,S02,,28,6,2,5,3,1,,,,,,,,1,,,,"Zemoodeh, Amir",,,,, +BUAN,6342,001,,20,15,6,3,1,,1,,,,,,,,,,,"El-khodari, Gasan E","Yang, Yunxuan M",,,, +BUAN,6342,501,,3,2,10,1,2,4,2,,,,,,,,,,,"Singh, Harpreet","Wei, Ning",,,, +BUAN,6342,S01,,10,14,12,11,3,1,,,,,,,,,,1,,"Singh, Harpreet",,,,, +BUAN,6344,002,,3,2,1,3,3,1,1,,,,,1,,,,,,"Maru, Vatsal K","Paluru, Vaishnavi",,,, +BUAN,6344,0W1,,6,3,3,3,,,,,,,,,,,,1,,"Mehra, Amit","Paluru, Vaishnavi",,,, +BUAN,6344,S01,,6,3,1,13,5,,7,,,,,1,,,,,,"Allison, Kyle",,,,, +BUAN,6346,001,,15,6,10,3,,,,,,,,,,,,,,"El-Youssef, Rami","Patel, Sakshi Jayesh",,,, +BUAN,6346,0W3,,3,2,3,3,1,,1,,,,,,,,,,,"Bradbury, Judd D","Patel, Sakshi Jayesh","Raghu, Tarun",,, +BUAN,6346,501,,14,13,5,,1,,,,,,,,,,,,,"Kamalzadeh, Hossein","Patel, Sakshi Jayesh",,,, +BUAN,6346,503,,9,12,2,2,1,,,,,,,,,,,,,"El-khodari, Gasan E","Tiwari, Saksham",,,, +BUAN,6346,SW1,,8,7,17,6,,,,,,,,,,,,,,"Perez, Jerry",,,,, +BUAN,6356,001,,11,3,4,12,5,,2,,,,,,,,,,,"Tarala, Magesh","Kulkarni, Prajwal Prahllad Rao",,,, +BUAN,6356,002,,25,9,6,3,2,,,,,,,,,,,,,"Zhang, Zhe","Rangala, Sai Nikhel",,,, +BUAN,6356,004,,25,11,3,2,1,,,,,,,,,,,,,"Zhang, Zhe","Rangala, Sai Nikhel",,,, +BUAN,6356,006,,22,14,6,2,1,,,,,,,,,,,,,"Zhang, Zhe","Rangala, Sai Nikhel",,,, +BUAN,6356,502,,11,13,7,5,2,,,,,,,,,,,,,"Lee, Heeseung","Khan, Afnan Anwar",,,, +BUAN,6356,S01,,23,19,7,5,1,,1,,,,,1,,,,,,"Shrivastava, Prakash C",,,,, +BUAN,6356,S03,,20,15,4,2,,,1,,,,,2,,,,,,"Shrivastava, Prakash C",,,,, +BUAN,6356,S04,,5,2,2,1,,,,,,,,,,,,,,"Parker, Jason A",,,,, +BUAN,6356,SW1,,3,3,2,2,3,1,,,,,,2,,,,1,,"Tarala, Magesh",,,,, +BUAN,6357,S01,,29,6,,1,2,1,,,,,,,,,,,,"Johnston, Walter L",,,,, +BUAN,6358,001,,9,3,1,3,3,2,,,,,,1,,,,,,"Bradbury, Judd D","Paluru, Vaishnavi",,,, +BUAN,6359,001,,13,1,10,6,4,,1,,,,,1,,,,1,,"Sethi, Avanti P","Singh, Manjot",,,, +BUAN,6359,002,,9,8,5,3,7,1,2,,,,,1,,,,1,,"Toptal, Aysegul","Sibam, Patnala",,,, +BUAN,6359,003,,9,5,6,2,6,2,,,,,,,,,,,,"Whalen, Tristan G","Mukhopadhyay, Avik",,,, +BUAN,6359,005,,12,12,6,3,4,4,2,,,,,1,,,,,,"Whalen, Tristan G","Mukhopadhyay, Avik",,,, +BUAN,6359,006,,3,3,6,4,6,5,6,,,,,3,,,,,,"Toptal, Aysegul","Sibam, Patnala",,,, +BUAN,6359,0W2,,4,1,5,3,2,,3,,,,,4,,,,,,"Ahadi, Khatereh","Saxena, Mani","Gatne, Sushmita Sunil",,, +BUAN,6359,501,,16,2,5,3,4,5,5,,,,,,,,,,,"Ramezani, Rasoul","Nguyen, Trung B",,,, +BUAN,6359,S01,,10,2,4,3,1,2,1,,,,,1,,,,,,"Brussolo, Monica E",,,,, +BUAN,6359,S02,,8,1,3,2,3,2,1,,,,,2,,,,,,"Ramezani, Rasoul",,,,, +BUAN,6359,S03,,21,9,5,11,6,3,1,,,,,2,,,,,,"Whalen, Tristan G",,,,, +BUAN,6359,SW1,,7,3,4,2,2,1,,,,,,1,,,,,,"Brussolo, Monica E",,,,, +BUAN,6382,001,,4,6,1,5,1,1,,,,,,,,,,,,"Singh, Harpreet","Wei, Ning",,,, +BUAN,6382,501,,20,21,11,3,1,,,,,,,,,,,,,"El-Youssef, Rami","Cai, Shuzhang",,,, +BUAN,6382,SW1,,4,1,6,6,1,,,,,,,,,,,,,"Shekhar, Gaurav",,,,, +BUAN,6383,002,,4,2,4,3,1,,1,,,,,,,,,1,,"Menon, Syam S","Vissapragada, Ramya Rajeswari",,,, +BUAN,6383,0W1,,7,,1,2,5,,,,,,,,,,,,,"Menon, Syam S","Vissapragada, Ramya Rajeswari",,,, +BUAN,6385,001,,13,1,1,1,,,4,,,,,,,,,,,"Shekhar, Gaurav","Yadav, Abhishekkumar Rajaram",,,, +BUAN,6390,001,,50,7,2,,,,,,,,,,,,,,,"Thomas, Sunela S","Soni, Raj P",,,, +BUAN,6390,002,,7,12,19,17,5,,1,,,,,,,,,,,"Alvarez, Jose",,,,, +BUAN,6390,S01,,25,2,,,,,1,,,,,,,,,,,"Johnston, Walter L",,,,, +BUAN,6392,0W1,,6,7,11,6,,,,,,,,,,,,,,"Mehra, Amit","Vissapragada, Ramya Rajeswari",,,, +BUAN,6392,501,,3,5,2,2,2,,,,,,,,,,,,,"Alvarez, Jose",,,,, +BUAN,6392,SW1,,9,6,9,7,,,,,,,,,,,,,,"Mehra, Amit",,,,, +BUAN,6398,002,,17,10,3,3,6,,5,,,,,3,,,,,,"Nguyen, Hien T","Trivedi, Prachi Rajendra",,,, +BUAN,6398,003,,11,10,13,6,4,1,2,,,,,1,,,,,,"Nguyen, Hien T","Trivedi, Prachi Rajendra",,,, +BUAN,6398,0W1,,11,2,3,1,2,1,2,,,,,,,,,,,"Ramezani, Rasoul","Nguyen, Trung B",,,, +BUAN,6398,501,,10,15,10,2,8,,1,,,,,1,,,,,,"Nguyen, Hien T","Trivedi, Prachi Rajendra",,,, +BUAN,6398,S01,,8,6,6,5,6,3,1,,,,,,,,,,,"Nguyen, Hien T",,,,, +BUAN,6398,S02,,14,7,14,10,10,3,1,,,,,,,,,,,"Nguyen, Hien T",,,,, +BUAN,6V98,001,,,,,,,,,,,,,1,,,,,79,"Thomas, Sunela S",,,,, +BUAN,6V98,S01,,,,,,,,,,,,,,,,,,11,"Shekhar, Gaurav",,,,, +CE,1100,001,29,15,5,2,5,,2,1,1,,4,,1,,,,,,"Ahmed, Shaheen","Habibi Dehsheikhi, Mostafa","Eroglu, Omer",,, +CE,1100,002,32,19,3,2,1,2,1,,,,,,,,,,,,"Ahmed, Shaheen","Eroglu, Omer","Habibi Dehsheikhi, Mostafa",,, +CE,1202,001,5,4,7,2,4,5,1,1,1,1,2,1,2,,,,1,,"Abulaiha, Haifa","Dhole, Sameer R","Nayemuzzaman, Sk",,, +CE,2301,002,3,6,,,2,1,3,2,,1,3,,1,,1,,2,,"Fahimi, Babak","Rafiei, Vahid",,,, +CE,2301,003,3,1,1,2,,2,,1,,,,,2,,,,,,"Friedman, Joseph S","Qi, Tianxi",,,, +CE,2305,001,,,2,1,4,,3,,2,,,,1,,,,,,"Daescu, Ovidiu","Truong, Nhat V",,,, +CE,2305,003,,2,3,5,9,2,,1,,,,,,,,,,,"Raichel, Benjamin A",,,,, +CE,2305,004,,3,4,3,4,2,2,,,,,,,,,,,,"Bereg, Sergey","Truong, Nhat V",,,, +CE,2310,001,,8,9,3,6,4,4,1,,,3,,2,,,,1,,"Abulaiha, Haifa","Brigner, Wesley H","Karanika, Athanasia","Dhole, Sameer R","Nayemuzzaman, Sk", +CE,2310,002,2,5,6,4,6,3,2,1,1,,2,,3,,,,2,,"Abulaiha, Haifa","Karanika, Athanasia","Brigner, Wesley H","Dhole, Sameer R","Nayemuzzaman, Sk", +CE,3161,051,4,13,5,7,3,,,,,,,,,,,,,,"Mezenner, Rabah","Islam, Farzana",,,, +CE,3161,091,1,4,8,7,5,1,1,2,,,,,2,,,,,,"Mezenner, Rabah","Islam, Farzana",,,, +CE,3201,001,1,12,4,1,1,1,3,,,,1,,,,,,,,"Nikoubin Boroujeni, Tooraj","Jain, Dipali D","Abbasnia, Alma","Duraisamy Swamikannan, Lena",, +CE,3201,002,3,12,,,,,,,,,1,,,,,,,,"Nikoubin Boroujeni, Tooraj","Jain, Dipali D","Abbasnia, Alma","Duraisamy Swamikannan, Lena",, +CE,3202,002,2,11,8,1,6,1,,1,,,2,,,,,,,,"Overzet, Lawrence J","Tayeb Naimi, Shideh","Koech, Mercy C","Showrov, Md Shadman Sakib",, +CE,3202,003,,2,4,9,5,,,4,,,,,,,,,,,"Kiasaleh, Kamran","Mahbub, Mohammed Nahiyan","Kazemikia, Danial","Showrov, Md Shadman Sakib",, +CE,3303,001,6,6,5,7,9,8,7,8,1,,,,4,,,,,,"Sisman, Berrak","Du, Zongyang",,,, +CE,3311,001,1,7,,2,2,2,2,5,5,,,,,,,,,,"Lee, Gil S","Neelapureddy, Uttam Reddy",,,, +CE,3311,002,1,2,,5,1,2,,5,2,,,,1,,,,,,Kenneth K,"Sosa Portillo, Walter E",,,, +CE,3320,001,4,6,3,4,3,1,,,,,,,,,,,,,"Pedram, Hossein","Kamalzadeh, Moojan",,,, +CE,3320,002,3,11,2,,2,1,,1,1,,3,,,,,,,,"Nikoubin Boroujeni, Tooraj","Kumar, Hiranya Garbha",,,, +CE,3345,005,1,3,2,2,2,,,,,,,,,,,,,,"Erbatur, Serdar",,,,, +CE,3354,002,1,1,,2,4,1,,2,,,,,,,,,,,"Paulk, Mark C",,,,, +CE,4201,001,,37,,,,,,,,,,,,,,,1,,"Tamil, Lakshman S",,,,, +CE,4304,001,3,11,2,8,5,3,1,3,,,,,,,,,1,,"Makris, Georgios","Kontarinis, Apostolos",,,, +CE,4304,501,,6,1,1,1,2,1,1,,,,,,,,,1,,"Shamsi, Kaveh","Kontarinis, Apostolos",,,, +CE,4337,001,,5,3,4,5,1,2,,,,,,,,,,,,"Davis, Chris I","Zhang, Baoming","Zhang, Yue",,, +CE,4337,002,,2,1,,2,2,,,3,1,1,,,,,,,,"Zhao, Yi","Li, Ruosen",Jishnu J,,, +CE,4337,003,,1,2,,1,1,2,1,,,2,,,,,,,,"Karami, Gity","Golivand Darvishvand, Fateme",,,, +CE,4337,502,,1,1,1,1,3,3,,,,1,,3,,,,1,,"Salazar, Elmer E","Averill, Matthew C",,,, +CE,4337,503,3,2,3,1,,2,1,,,,,,1,,,,,,"Karami, Gity","Golivand Darvishvand, Fateme","Li, Ruosen",,, +CE,4337,504,,1,6,2,1,2,,2,1,,2,,,,,,1,,"Zhao, Yi","Tenali, Pranuthi",,,, +CE,4337,505,,1,1,6,1,1,1,2,1,,,,,,1,,,,"Davis, Chris I","Xu, Zexin","Saha, Pritom K",,, +CE,4348,501,12,6,6,7,7,3,3,3,3,,,3,,,,,,,"Christiansen, Michael G","Sakib, Md Nazmus","Das, Souvik",,, +CE,4370,001,6,9,6,,1,1,,,,,,,,,,,,,"Swartz, William P","Ezechukwu, Dismas N","Delaram, Zeinab",,, +CE,4370,002,2,6,,,3,1,1,1,,,,,,,,,,,"Pedram, Hossein","Delaram, Zeinab",,,, +CE,4388,001,2,15,,,1,1,,,,,,,,,,,,,"Tacca, Marco",,,,, +CE,4388,002,4,14,1,,,,,,,,,,,,,,,,"Tacca, Marco",,,,, +CE,4389,001,,20,,5,,,,,,,,,,,,,,,"Tacca, Marco",,,,, +CE,5325,501,,10,,,,1,,,,,,,,,,,1,,"Swartz, William P","Qazi, Srijeet S",,,, +CE,6302,001,,27,1,1,1,,,1,,,,,,,,,,,"Nikoubin Boroujeni, Tooraj","Hashemi Esmaeilabad, Seyed Saeed",,,, +CE,6304,001,,14,13,1,2,2,,,,,,,,,,,,,"Pedram, Hossein","Delaram, Zeinab","Daneshnazar, Milad",,, +CE,6304,002,,6,2,,1,1,,,,,,,,,,,,,"Pedram, Hossein","Efe, Lutfu E",,,, +CE,6320,001,,10,34,11,8,,,,,,,,1,,,,,,"Basu, Kanad","Ahmed, Shakil",,,, +CE,6325,501,,2,3,2,1,2,,,,,,,,,,,,,"Sechen, Carl M","Feng, Jinkun","Wick, Lucas M",,, +CE,6330,001,,13,,,,,,,,,,,,,,,,,"Shamsi, Kaveh",,,,, +CE,6370,001,,11,4,3,1,,,1,,,,,,,,,,,"Carrion Schaefer, Benjamin",,,,, +CGS,2301,001,9,13,,15,11,4,5,9,2,,6,,8,,1,,6,,"O'Toole, Alice J","Krishan, Rushale",,,, +CGS,2301,002,2,4,8,10,10,1,3,1,1,,1,,1,,,,4,,"Guo, Jiahui","Massett, Roy J",,,, +CGS,3346,501,3,20,,,2,,,,,,,,1,,,,2,,"Estevez, Leonardo",,,,, +CGS,3361,001,9,1,,,2,1,,2,1,,,,,,,,,,"Roark, Dana A","Cortez, Jared I",,,, +CGS,4352,001,,6,3,2,3,1,,1,2,,,,,,,,1,,"Kim, Jin Ryong","Singhal, Yatharth","Pratap, Ashish",,, +CGS,4353,0H1,6,6,,2,2,2,1,,,,,,1,,,,,,"Orrick, Erika D",,,,, +CGS,4359,501,2,7,,,3,,,1,,,,,,,,,,,"Rypma, Bart P","Ma, Jessica",,,, +CHEM,1111,101,4,9,3,4,3,,2,1,2,,,1,,,,,,,"Farvid, Seyedmajid","Antany, Damary S","Osborn, Emily",,, +CHEM,1111,102,17,6,1,2,2,1,,,,,,,,,,,,,"Hashami, Zohreh","Paul, Saptarshi",,,, +CHEM,1111,103,12,8,1,5,1,1,,,1,,,,1,,,,,,"Abeykoon, Nimali C","Chakrabarty, Sumon",,,, +CHEM,1111,104,10,8,,2,1,1,3,,,,,1,2,,,,,,"Qin, Yanping","Kim, Hyunseo",,,, +CHEM,1111,105,8,12,1,2,4,2,,,,,,,1,,,,,,"Ge, Jing","Antany, Damary S",,,, +CHEM,1111,106,12,7,2,4,2,,2,,,,,,,,,,,,"Ge, Jing","Hoot, Robert E",,,, +CHEM,1111,107,15,10,2,1,1,,1,,,,,,,,,,,,"Abeykoon, Nimali C","Chakrabarty, Sumon",,,, +CHEM,1111,108,9,8,4,2,1,1,4,,1,,,,,,,,,,"Qin, Yanping","Kim, Hyunseo",,,, +CHEM,1111,109,10,11,5,,1,,1,,,,,,,,,,1,,"Farvid, Seyedmajid","Osborn, Emily",,,, +CHEM,1111,110,13,11,,1,2,1,,,,,,,1,,,,,,"Gavva, Sandhya R","Labedis, Bruce M",,,, +CHEM,1111,111,21,3,,,4,,,,,,1,,,,,,,,"Panapitiya, Nimanka P","Ayers, Lyndsay C",,,, +CHEM,1111,112,20,2,1,1,,,2,,,,,,1,,,,,,"Hashami, Zohreh","Vs, Sushma",,,, +CHEM,1111,113,21,8,,,,,,,,,,,1,,,,,,"Qin, Yanping","Jayasuriya, Danidu M","Koti, Neelima",,, +CHEM,1111,114,10,9,4,,2,2,,1,,,,,1,,,,,,"Qin, Yanping","Fernando, Shehan H","Koti, Neelima",,, +CHEM,1111,115,21,5,2,,,1,,,,,,,,,,,,,"Anka, Fadwa H","Agamendran, Nithish",,,, +CHEM,1111,116,20,5,2,2,,,1,,,,,,,,,,,,"Abeykoon, Nimali C","Agamendran, Nithish",,,, +CHEM,1111,117,4,7,5,2,3,,,2,1,3,,,,,,,,,"Farvid, Seyedmajid","Pal, Aakash",,,, +CHEM,1111,118,11,9,3,1,4,,,,,,,,1,,,,,,"Khan, Saba","Saini, Piyush",,,, +CHEM,1111,119,17,6,2,1,1,2,,,,,,,1,,,,,,"Qin, Yanping","Qasimi, Esmail",,,, +CHEM,1111,120,11,7,6,1,2,,,,,,,,1,,,,,,"Abeykoon, Nimali C","Vu, Mai P",,,, +CHEM,1111,121,6,11,4,5,2,1,,,,,,,1,,,,,,"Farvid, Seyedmajid","Jorapur, Soham R",,,, +CHEM,1111,122,6,10,,4,3,,,1,,1,,,1,,,,1,,"Gavva, Sandhya R","Pal, Aakash",,,, +CHEM,1111,123,17,5,3,,1,1,1,1,,,,,,,,,,,"Qin, Yanping","Ghafari, Mozhdeh","Mahulkar, Pranav S",,, +CHEM,1111,124,23,1,,1,2,,,,,1,,,,,,,,,"Anka, Fadwa H","Mustafa, Md.",,,, +CHEM,1111,125,10,9,2,5,2,1,,,,1,,,,,,,,,"Khan, Saba","Farris, Wilson L",,,, +CHEM,1111,126,17,8,1,1,,1,1,,,,,,,,,,,,"Khan, Saba","Farris, Wilson L",,,, +CHEM,1111,127,19,7,3,,,,,,,,,,,,,,,,"Anka, Fadwa H","Mustafa, Md.",,,, +CHEM,1111,128,16,10,2,,2,,,,,,,,,,,,,,"Tran, Daniel N","Fernando, Shehan H",,,, +CHEM,1111,129,13,6,6,2,1,,,,,,,1,1,,,,,,"Qin, Yanping","Jayasuriya, Danidu M",,,, +CHEM,1111,130,19,7,1,1,,,,,,,,,1,,,,,,"Anka, Fadwa H","Koti, Neelima",,,, +CHEM,1111,131,12,7,3,3,2,,,1,,,1,,,,,,,,"Hashami, Zohreh","Hu, Saizhen",,,, +CHEM,1111,132,13,8,2,3,2,1,,1,,,,,,,,,,,"Qin, Yanping","Qasimi, Esmail",,,, +CHEM,1111,133,15,7,5,1,,,,,,,1,1,,,,,,,"Khan, Saba","Saini, Piyush",,,, +CHEM,1111,134,14,7,3,2,2,1,,,,,,,,,,,,,"Hashami, Zohreh","Vs, Sushma",,,, +CHEM,1111,135,19,8,1,,2,,,,,,,,,,,,,,"Abeykoon, Nimali C","Shohag, S M Anyet Ullah",,,, +CHEM,1111,136,15,7,3,1,1,1,,,,,,,1,,,,,,"Cortes, Sergio","Maharana, Priyanka",,,, +CHEM,1111,137,20,5,1,,,2,1,,,,,,,,,,,,"Dissanayake, Dushanthi S","Nguyen, Trang",,,, +CHEM,1111,138,23,4,1,2,,,,,,,,,,,,,,,"Hashami, Zohreh","Hu, Saizhen",,,, +CHEM,1111,139,14,8,3,2,,1,,,,,,,,,,,,,"Tripathi, Kiran","Ghafari, Mozhdeh",,,, +CHEM,1111,140,15,9,5,,,1,,,,,,,,,,,,,"Wijenayake, Sumudu N","Maharana, Priyanka","Mahulkar, Pranav S",,, +CHEM,1111,141,18,5,2,1,,1,,,,1,,,,,,,,,"Wijenayake, Sumudu N","Mahulkar, Pranav S","Nguyen, Trang",,, +CHEM,1111,142,14,6,4,,1,1,1,,,1,1,,,,,,,,"Qin, Yanping","Nguyen, Trang","Paul, Saptarshi",,, +CHEM,1111,143,10,8,,2,4,1,1,2,,,1,,1,,,,,,"Gavva, Sandhya R","Mazhar, Noreen",,,, +CHEM,1111,601,8,11,1,3,2,2,,2,,,,,,,,,1,,"Sisk, Joshua R","Osborn, Emily","Shohag, S M Anyet Ullah",,, +CHEM,1111,602,6,12,1,5,3,,,1,,,,,1,,,,,,"Sisk, Joshua R","Labedis, Bruce M","Shohag, S M Anyet Ullah",,, +CHEM,1111,603,3,11,3,,6,,1,3,1,1,,,,,,,,,"Sisk, Joshua R","Vu, Mai P","Ghafari, Mozhdeh",,, +CHEM,1111,604,7,15,1,1,4,1,,,,,,,,,,,,,"Sisk, Joshua R","Jorapur, Soham R","Ghafari, Mozhdeh",,, +CHEM,1111,605,11,12,2,4,,,1,,,,,,,,,,,,"Tran, Daniel N","Hoot, Robert E",,,, +CHEM,1111,606,10,3,3,7,3,1,,1,,2,,,,,,,,,"Tripathi, Kiran","Mazhar, Noreen",,,, +CHEM,1111,607,10,11,1,4,,1,1,,,,1,,1,,,,,,"Panapitiya, Nimanka P","Ayers, Lyndsay C",,,, +CHEM,1112,101,13,4,5,2,1,2,,1,,2,,,,,,,,,"Huang, Yu","Ullah, Najeeb",,,, +CHEM,1112,102,5,6,4,1,4,2,4,,,,,1,3,,,,,,"Huang, Yu","Ullah, Najeeb",,,, +CHEM,1112,103,10,8,2,1,1,,1,,1,,,,2,,,,1,,"Huang, Yu","Kim, Gyeongseo",,,, +CHEM,1112,104,9,6,1,4,1,,3,1,1,,,,4,,,,,,"Tripathi, Kiran","Kim, Gyeongseo",,,, +CHEM,1112,105,11,9,2,4,2,1,,,,,,,1,,,,,,"Tripathi, Kiran","Brown, Monet R",,,, +CHEM,1115,HN1,6,24,,,,,,,,,,,,,,,,,"Sibert, John W",,,,, +CHEM,1311,001,17,49,27,23,21,19,21,15,24,3,13,1,14,,,,10,,"Huang, Yu",,,,, +CHEM,1311,002,12,39,26,22,21,23,15,16,23,12,9,5,14,,,,14,,"Anka, Fadwa H",,,,, +CHEM,1311,003,10,24,17,21,21,17,18,25,21,6,12,5,34,,,,20,,"Dieckmann, Gregg R",,,,, +CHEM,1311,004,3,20,15,20,24,25,15,29,18,9,11,8,36,,,,16,,"Dieckmann, Gregg R",,,,, +CHEM,1311,005,17,38,21,12,34,25,14,16,21,10,8,6,13,,,,24,,"Taylor, Stephanie M",,,,, +CHEM,1311,006,13,38,19,23,24,16,19,15,29,10,5,7,14,,,,19,,"Taylor, Stephanie M",,,,, +CHEM,1312,001,16,16,24,6,16,22,7,16,25,14,10,4,32,,,,12,,"Sra, Amandeep K","Bonnand, Evan F","Darwin, Cary","Shende, Prapti M",, +CHEM,1315,HN1,10,8,3,2,1,,3,2,1,,,,,,,,,,"Sibert, John W",,,,, +CHEM,2233,301,14,9,3,,,,,,,,,,,,,,,,"Cortes, Sergio","Walimuni Mudiyanselage, Chamila Sandaruwan B","Li, Baowen",,, +CHEM,2233,302,13,10,1,,,2,,,,,,,,,,,,,"Tran, Daniel N","Amini-Harandi, Zahra",,,, +CHEM,2233,303,14,9,1,2,,,,,,,,,,,,,,,"Wijenayake, Sumudu N","Adams, Derik A",,,, +CHEM,2233,304,24,,,,1,1,,,,,,,,,,,,,"Cortes, Sergio","Amini-Harandi, Zahra","Pradhan, Subham",,, +CHEM,2233,305,19,6,1,,,,,,,,,,,,,,,,"Wijenayake, Sumudu N","Walimuni Mudiyanselage, Chamila Sandaruwan B","Rajapaksha Mudiyanselage, Gaveshika Madushani Rajapaksha",,, +CHEM,2233,306,15,5,,2,3,,,,,,,,,,,,,,"Panapitiya, Nimanka P","Li, Baowen","Rajapaksha Mudiyanselage, Gaveshika Madushani Rajapaksha",,, +CHEM,2233,307,9,12,1,,1,1,,,,,,,,,,,,,"Tran, Daniel N","Sharma, Shreya",,,, +CHEM,2233,308,9,14,2,,,1,,,,,,,,,,,,,"Panapitiya, Nimanka P","Baird, Marriah",,,, +CHEM,2323,001,24,48,15,17,15,8,7,5,2,2,1,,,,,,1,,"Wijenayake, Sumudu N","Deo, Nitish Kumar",,,, +CHEM,2323,002,4,11,6,9,10,8,6,12,9,7,6,3,1,,,,6,,"Ahn, Jung-Mo","Neal, Henry",,,, +CHEM,2323,003,10,28,12,11,16,16,14,8,7,5,6,,6,,,,4,,"Tran, Daniel N",,,,, +CHEM,2323,004,5,8,14,8,6,12,11,17,8,15,15,,17,,,,4,,"Cortes, Sergio","Gaspar, Miguel A",,,, +CHEM,2323,005,8,30,18,14,16,11,11,9,9,7,3,,4,,2,,2,,"Thompson, Christina M","Elmore, Scott T",,,, +CHEM,2323,501,28,48,6,16,5,6,14,2,9,6,3,,3,,,,4,,"Panapitiya, Nimanka P","De Aquino Veras, Sophia",,,, +CHEM,2325,001,20,14,6,7,8,7,5,2,5,5,4,,23,,2,,7,,"Novak, Bruce M",,,,, +CHEM,2325,002,53,17,3,7,7,4,7,9,8,2,3,,16,,,,7,,"Novak, Bruce M",,,,, +CHEM,2327,HN1,2,11,1,5,4,1,2,,,,,,,,,,,,"Biewer, Michael C","Popa, Marius S","Nath, Jyotishka",,, +CHEM,2401,001,1,2,1,2,4,2,,3,,,,,,,,,,,"Dissanayake, Dushanthi S","Cahill, Marshall C","Naseiro, Connor B",,, +CHEM,2401,002,1,5,4,,,2,,,,,,,1,,,,,,"Dissanayake, Dushanthi S","Relix, Daniel E","Parsamian, Perouza",,, +CHEM,2401,003,4,3,1,2,1,2,,,1,,,,1,,,,,,"Sra, Amandeep K","Darwin, Cary","Hildebrand, Dax J",,, +CHEM,3321,001,4,4,8,1,6,7,3,1,,,,,2,,,,,,"Torabifard, Hedieh","Aranda, Aidely",,,, +CHEM,3322,001,,20,,,18,,,5,,,,,3,,,,,,"Murza, Adrian C",,,,, +CHEM,3341,001,6,2,5,2,3,3,4,4,2,1,1,,3,,,,1,,"Sibert, John W",,,,, +CHEM,3461,001,1,6,4,3,5,2,,,,,,,,,,,,,"Gavva, Sandhya R","Wicherts, Dylan M","Budhathoki, Prakriti","Liyana Withanage, Nadeesha Tharangani",, +CHEM,3461,002,3,6,5,7,6,4,3,1,2,,2,1,1,,,,1,,"Boyd, Stefanie D","Akter, Zakia","Zhi, Jiahe","Salamat, Narges","Zhabilov, Dannie", +CHEM,3461,003,6,10,5,5,5,3,,2,,,,1,1,,,,1,,"Boyd, Stefanie D","Akter, Zakia","Zhi, Jiahe","Salamat, Narges","Zhabilov, Dannie", +CHEM,3472,001,,3,6,3,1,,1,,,2,,,3,,,,,,"Hashami, Zohreh","Hasna Begam, Mohammed Nazar","Igie, Nosakhare F","Wang, Ziqi","Beck, Erling","Subramanian, Yaamini" +CHEM,3472,002,,4,1,3,3,2,1,1,,,2,,3,,,,,,"Abeykoon, Nimali C","Wang, Ziqi","Igie, Nosakhare F","Beck, Erling","Subramanian, Yaamini","Hasna Begam, Mohammed Nazar" +CHEM,5314,001,,12,,,,,,,,,,,,,,,,,"Nielsen, Steven O",,,,, +CHEM,5331,001,,12,7,4,3,,,,,,,,,,,,,,"Delaney, Connor P",,,,, +CHEM,5334,001,,7,,,5,1,,,,,,,,,,,,,"Ferraris, John P",,,,, +CHEM,5341,001,,2,3,3,8,1,,,,,,,,,,,,,"Balkus, Kenneth J",,,,, +CHEM,5355,001,,9,6,9,1,,,,,,,,,,,,,,"Pantano, Paul",,,,, +CHEM,5361,001,,9,6,,4,1,,,,,,,,,,,,,"D'Arcy, Sheena M",,,,, +CHEM,6100,001,,,,,,,,,,,,,,,,,,117,"Romiti, Filippo",,,,, +CHEM,6V39,501,,6,2,2,,,,,,,,,,,,,,,"Sterling, Alistair J",,,,, +CHEM,8V91,024,,,,,,,,,,,,,,,,,,12,"Stefan, Mihaela C",,,,, +CHEM,8V91,046,,,,,,,,,,,,,,,,,,11,"Fasan, Rudi",,,,, +CHIN,1311,001,12,,3,,2,,,,,,,,,,,,,,"Chen, Bei",,,,, +CHIN,1312,001,6,2,1,,,1,,,,,,,,,,,,,"Chen, Bei",,,,, +CHIN,2311,001,13,1,,,,,,,,,,,,,,,,,"Chen, Bei",,,,, +CLDP,2314,001,1,1,3,1,11,1,2,,1,,1,2,,,,,,,"Atchison, Kristin J","Padilla Cardoso, Mayra A",,,, +CLDP,2314,0W1,,2,3,4,,3,,3,2,2,1,,1,,,,2,,"Drew, Linda M","Hsieh, Uan-Luen",,,, +CLDP,3303,001,5,5,4,1,3,,1,,,,,,,,,,,,"Trail, Amy M","Lewicki, Jane M",,,, +CLDP,3305,001,,13,,,3,,,,,,,,,,,,1,,"Jett, Whitney G",,,,, +CLDP,3310,001,,18,,,2,,,2,,,,,,,,,,,"Timmons, Lisa N","Delfosse, Camille M",,,, +CLDP,3310,0W1,,13,,,2,,,,,,,,,,,,,,"Bonner, Deborah","Gutierrez, Alyssa M",,,, +CLDP,3332,001,1,21,11,2,5,,,1,1,,,,,,,,1,,"Holub, Shayla C","Heinrich, Melissa D",,,, +CLDP,3336,001,1,3,2,3,2,,,,,,,,1,,,,,,"Atchison, Kristin J",,,,, +CLDP,3339,0H1,,4,1,,3,2,,2,3,,1,,1,,,,,,"Huxtable-Jester, Karen J","Sudheesh, Athul",,,, +CLDP,3342,0W1,,29,,,1,,,,,,,,,,,,,,"Bonner, Deborah","Liu, Yiyao",,,, +CLDP,3362,001,,20,,1,15,,1,2,,,,,2,,,,,,"Mills, Candice M","Gholap, Neha P",,,, +CLDP,3394,0H1,,18,,,,,,1,,,,,,,,,1,,"Grant, Meridith G","Smitherman, Israel W",,,, +CLDP,4344,001,,12,,,4,,,2,,,1,,,,,,,,"Timmons, Lisa N","Redig, Samantha L",,,, +CLDP,4347,001,,2,2,2,2,2,,1,,,,,1,,,,,,"Nelson Taylor, Jackie A","Li, Yue","Peacock, Dru D",,, +CLDP,4V90,001,6,2,,,2,,,,,,,,,,,,,,"Maese, Maria Amalia",,,,, +CLDP,4V90,002,,14,,,,,,,,,,,1,,,,,,"Capili, Conrad R",,,,, +COMD,6110,0W1,,,,,,,,,,,,,,,,,,10,"Kenedi, A Helen I",,,,, +COMD,6112,0W1,,,,,,,,,,,,,,,,,,13,"Walsh, Diane G",,,,, +COMD,6222,001,,97,,,,,,,,,,,,,,,,,"Lougeay, Janice",,,,, +COMD,6240,001,,23,,,1,,,,,,,,,,,,,,"Touchstone, Emily W",,,,, +COMD,6305,001,,,,,,,,,,,,,,,,,,34,"Frankford, Saul A","Mundayoor, Saranya A",,,, +COMD,6307,0H1,,9,3,1,,,,,,,,,,,,,,,"Evans, Julia L","Sharma, Susmi",,,, +COMD,6308,001,,73,,,,,,,,,,,,,,,,,"Rich, Judith B",,,,, +COMD,6320,001,,35,,,11,,,,,,,,,,,,,,"Aldridge, Michelle A","Kenedi, A Helen I",,,, +COMD,6330,001,,,,,,,,,,,,,,,,,,10,"Stillman, Robert D",,,,, +COMD,6330,002,,,,,,,,,,,,,,,,,,10,"Rich, Judith B",,,,, +COMD,6330,004,,,,,,,,,,,,,,,,,,10,"Neale, Hannah D",,,,, +COMD,6330,005,,,,,,,,,,,,,,,,,,10,"Klimkowski, Hillary E",,,,, +COMD,6330,006,,,,,,,,,,,,,,,,,,10,"Trail, Amy M",,,,, +COMD,6330,069,,,,,,,,,,,,,,,,,,10,"Kenedi, A Helen I",,,,, +COMD,6330,080,,,,,,,,,,,,,,,,,,10,"Carter, Jessica A",,,,, +COMD,6330,122,,,,,,,,,,,,,,,,,,10,"Sale, Felicity F",,,,, +COMD,6330,144,,,,,,,,,,,,,,,,,,12,"Walsh, Diane G",,,,, +COMD,6330,165,,,,,,,,,,,,,,,,,,10,"Aldridge, Michelle A",,,,, +COMD,6330,169,,,,,,,,,,,,,,,,,,10,"Kenedi, A Helen I",,,,, +COMD,6377,001,,72,,,8,,,,,,,,,,,,,,"Kenedi, A Helen I","Sale, Felicity F",,,, +COMD,6378,001,,17,,,4,,,,,,,,,,,,,,"Klimkowski, Hillary E","Sale, Felicity F",,,, +COMD,6V09,001,,39,,,,,,,,,,,,,,,,,"Aldridge, Michelle A",,,,, +COMD,7098,001,,,,,,,,,,,,,,,,,,18,"Touchstone, Emily W",,,,, +COMD,7204,501,,32,,,,,,,,,,,,,,,,,"Cook, Julie D",,,,, +COMD,7221,001,,16,,,3,,,,,,,,,,,,,,"Carter, Jessica A",,,,, +COMD,7222,001,,51,,,,,,,,,,,,,,,,,"Touchstone, Emily W",,,,, +COMD,7301,501,,25,,,,,,,,,,,,,,,,,"Morris, Rebecca L",,,,, +COMD,7309,001,,9,,2,7,,,1,,,,,,,,,,,"Hart, John",,,,, +COMD,7336,001,,12,1,1,,,,,,,,,,,,,,,"Rollins, Pamela R",,,,, +COMM,1311,001,10,27,17,6,7,3,5,1,2,,,,2,,,,,,"Totusek, Patricia F",,,,, +COMM,1311,002,,3,3,7,5,4,,,,,,,1,,,,,,"Baker, Barbara L",,,,, +COMM,1311,003,11,6,1,1,1,1,,1,,,,,,,,,2,,"Sova, Melodee L",,,,, +COMM,1311,004,4,16,1,,1,,1,,,,,,,,,,,,"Totusek, Patricia F",,,,, +COMM,1311,005,10,9,2,,,,1,1,,,,,,,,,,,"McCown, Gregory S",,,,, +COMM,1311,006,7,10,1,4,,,1,,,,,,,,,,1,,"Tanner, Lari J",,,,, +COMM,1311,0H1,6,7,3,4,,,,,,,,,1,,,,1,,"Tanner, Lari J",,,,, +COMM,1311,0H2,1,10,3,3,1,1,1,1,,,,,,,,,2,,"Sluder, Jeanne",,,,, +COMM,1311,0H3,4,4,4,2,1,,4,1,2,,,,1,,,,1,,"Sova, Melodee L",,,,, +COMM,1311,0H4,8,5,5,3,,,,,,,,,1,,,,2,,"Sova, Melodee L",,,,, +COMM,1311,0H5,,6,7,5,1,2,,,,,,2,,,,,1,,"Sluder, Jeanne",,,,, +COMM,1311,0W1,2,11,3,3,,3,,,,,,,1,,,,,,"Templeton, Allison A",,,,, +COMM,1311,0W2,5,7,5,2,2,,2,,,,,,,,,,1,,"Templeton, Allison A",,,,, +COMM,1311,0W3,9,6,2,,2,1,,,,,,,2,,,,2,,"Moss, Daniel J",,,,, +COMM,1311,0W4,3,5,4,2,1,3,3,,1,,1,,,,,,1,,"Williams, Alecia N",,,,, +COMM,1311,0W5,2,6,4,2,1,,,,,,3,1,3,,,,,,"Williams, Alecia N",,,,, +COMM,1311,0W6,7,6,2,2,,2,,1,,,,,1,,,,1,,"Sova, Melodee L",,,,, +COMM,1311,0W7,8,7,4,3,,1,,,,,,,1,,,,,,"Sova, Melodee L",,,,, +COMM,1311,0W8,5,3,7,5,,2,,,,,,,2,,,,,,"Fraley, James M",,,,, +COMM,1311,0W9,1,9,5,3,2,1,,,1,,,,,,,,1,,"Mckee-Williams, Candie D",,,,, +COMM,1315,001,1,11,4,1,3,3,,,,,,,1,,,,,,"Templeton, Allison A",,,,, +COMM,1315,0H1,17,5,,,,,,,,,,,,,,,2,,"Saenz, Michael A",,,,, +COMM,1315,0H2,4,18,1,,1,,,,,,,,,,,,,,"Hernandez-Katz, Melissa M",,,,, +COMM,1315,0H3,6,5,4,2,1,1,,1,,,,3,,,,,1,,"Templeton, Allison A",,,,, +COMM,1315,0H4,1,7,6,3,3,1,1,1,,,,,1,,,,,,"Gonzales, Sarah",,,,, +COMM,1315,0H5,5,12,3,2,,,1,,,,,,1,,,,,,"Farr, Natalie D",,,,, +COMM,1315,0H6,5,10,3,,2,1,,,,,1,,2,,,,,,"Farr, Natalie D",,,,, +COMM,1315,0H7,9,6,1,2,2,1,,,1,,,,1,,,,,,"Hernandez-Katz, Melissa M",,,,, +COMM,1315,0H8,2,5,,3,2,2,1,,,,,1,3,,,,,,"Aranda, Johnson",,,,, +COMM,1315,0H9,3,7,1,1,2,1,2,,,,,,4,,,,3,,"Aranda, Johnson",,,,, +COMM,1315,0W1,18,2,1,,,1,,,,,,,,,,,,,"Cannon, Charles",,,,, +COMM,1315,0W2,17,2,,1,2,1,,1,,,,,,,,,,,"Cannon, Charles",,,,, +COMM,1315,0W3,,2,2,1,1,3,2,3,1,,,,4,,,,,,"Bromberg, Mike",,,,, +COMM,1315,0W4,2,3,3,3,2,1,1,2,1,,,,2,,,,1,,"Bromberg, Mike",,,,, +COMM,1320,001,4,10,2,1,,3,,1,1,,,,2,,,,,,"Sova, Melodee L",,,,, +COMM,2310,0W1,3,5,4,1,,2,,,1,1,,,4,,,,1,,"Glauser, Janece B",,,,, +COMM,3342,0H1,3,9,,,2,2,1,,,,,,1,,,,,,"Johnson, Janet L",,,,, +COMM,3351,001,1,2,2,2,1,,,4,3,,,,,,,,,,"Baker, Barbara L",,,,, +COMM,3353,001,3,5,,2,1,,,2,,,,,2,,,,,,"Totusek, Patricia F",,,,, +COMM,4314,5W1,1,5,2,3,1,,1,,1,,,1,1,,,,1,,"King, Carie S",,,,, +CRIM,1301,001,11,16,8,1,4,1,1,1,1,1,1,,2,,,,,,"Karmakar, Anasuya",,,,, +CRIM,1301,0W1,15,37,18,7,9,3,2,3,1,,,1,1,,,,,,"Hull, Kerrie Ann",,,,, +CRIM,1307,001,8,34,39,12,13,4,1,,,2,2,2,5,,,,,,"Lee, Jaebom",,,,, +CRIM,1307,0W1,27,35,8,4,1,2,1,,1,2,2,2,3,,,,1,,"Vasquez, Arthur G","Jiru, Gurmessa B",,,, +CRIM,2306,0W1,,34,10,3,3,,1,2,,,1,1,2,,,,1,,"Papageorgiou, Anthony J",,,,, +CRIM,2313,0W1,10,6,5,4,4,2,3,1,,2,2,1,2,,,,2,,"Getty, Ryan M","Chidozie, Eustace",,,, +CRIM,2316,001,3,2,13,3,1,,,,1,,,,,,,,,,"Mcchriston, Marvin",,,,, +CRIM,2317,0W1,20,10,6,1,2,1,1,,1,,,,1,,,,,,"Hong, Sunmin",,,,, +CRIM,3300,0W1,13,26,11,7,9,8,2,5,,1,1,1,4,,,,2,,"Worrall, John L","Gross, Meeghan A",,,, +CRIM,3301,001,10,8,4,1,2,,,,,,,1,1,,,,,,"Getty, Ryan M","Chidozie, Eustace",,,, +CRIM,3302,001,6,8,4,3,2,4,,,,,1,,4,,,,,,"Lee, Yeungjeom","Lee, Insang",,,, +CRIM,3303,001,16,4,6,1,2,1,,2,,,,,4,,,,,,"Vasquez, Arthur G","Islam, Mohammad Touhidul",,,, +CRIM,3309,001,23,12,4,2,,,,1,1,,,,,,,,,,"Olszewski, Hailey",,,,, +CRIM,3310,001,1,8,2,,5,2,,,,1,1,,2,,,,,,"Yoon, Minyeong",,,,, +CRIM,3312,0W1,30,20,3,2,4,,1,,1,,1,,1,,,,,,"Vasquez, Arthur G","Islam, Mohammad Touhidul","Jiru, Gurmessa B",,, +CRIM,3319,0W1,,35,19,9,3,4,1,1,1,,,,4,,,,,,"Wang, Wenyi",,,,, +CRIM,4311,0W1,8,5,8,7,4,4,,,1,,,,1,,,,,,"Manuel, Samantha A",,,,, +CRIM,4315,001,25,9,4,4,5,,1,,,,,,,,,,1,,"Vasquez, Arthur G","Jiru, Gurmessa B",,,, +CRIM,4322,0H1,,3,5,5,1,4,3,1,5,1,3,,3,,,,2,,"Vieraitis, Lynne M","Escobedo, Allison E",,,, +CRIM,4396,001,2,8,3,5,2,,1,1,1,,,,,,,,,,"Boots, Denise P","Adjadeh, John-Paul E",,,, +CRIM,6301,0W1,,11,4,2,2,,,3,,,,,,,,,,,"Lee, Yeungjeom",,,,, +CRIM,6303,501,,4,3,2,,,,1,,,,,,,,,,,"Vieraitis, Lynne M",,,,, +CRIM,6381,0W1,,13,2,,,1,,,,,,,,,,,,,"Burton, Alexander",,,,, +CRWT,2301,001,10,4,2,,,,,,,,,,1,,,,,,"Baker, Matthew W",,,,, +CRWT,2301,002,,4,7,3,3,1,,,,,,,1,,,,,,"Bhatt, Jenny",,,,, +CRWT,2301,003,,19,,,,,,,,,,,,,,,,,"Minzer, Karen","Martinez, Manuel L",,,, +CRWT,2301,004,14,,,,1,,,,,,,,3,,,,1,,"Pena, Daniel",,,,, +CRWT,2301,005,3,3,6,1,1,1,,1,,,,,2,,,,1,,"Bhatt, Jenny",,,,, +CRWT,2301,006,14,1,1,,1,,,,1,,,,,,,,1,,"Murphey, Samantha",,,,, +CRWT,2301,007,8,3,,3,2,,,1,,1,,,,,,,1,,"Baker, Matthew W",,,,, +CRWT,2301,501,5,5,1,1,,1,,1,,,,,2,,,,1,,"Luttrell, Andrea",,,,, +CRWT,2301,502,,18,,,,,,,,,,,,,,,,,"Minzer, Karen","Martinez, Manuel L",,,, +CRWT,3306,001,11,,,,,,,,,,,,,,,,1,,"Ogbaa, Maurine",,,,, +CRWT,3306,002,,14,1,,,,,,,,,,,,,,,,"Martinez, Manuel L",,,,, +CRWT,3330,501,,,7,1,,1,,,,,,1,,,,,,,"Vincent, Shelby D",,,,, +CRWT,3351,001,1,6,5,,1,1,,,,,,,,,,,,,"Stone, Naomi S",,,,, +CRWT,3354,501,,11,2,1,,,,,,,,,,,,,,,"Goldberg, Paula",,,,, +CRWT,4355,001,1,7,1,,1,,,,,,,,,,,,,,"Goldberg, Paula",,,,, +CS,1200,001,22,59,24,6,4,1,,2,,,2,,,,,,,,"Christiansen, Michael G",,,,, +CS,1200,002,20,18,10,8,4,2,,,3,,1,,1,,,,,,"Srivastava, Aditya",,,,, +CS,1200,003,56,45,29,13,3,1,1,,,,,,1,,,,,,"Christiansen, Michael G",,,,, +CS,1200,004,27,26,11,7,6,4,2,2,1,,,,3,,,,,,"Srivastava, Aditya",,,,, +CS,1200,005,20,31,8,13,14,7,3,2,,,1,,2,,,,,,"Srivastava, Aditya",,,,, +CS,1200,0L1,26,37,11,8,6,2,,2,1,1,,,,,,,,,"Smith, Klyne",,,,, +CS,1200,501,54,46,15,7,8,5,,2,,1,1,2,1,,,,,,"Smith, Klyne",,,,, +CS,1200,502,46,50,18,14,6,1,,,1,,1,,1,,,,,,"Christiansen, Michael G",,,,, +CS,1200,HON,,12,5,5,8,1,,1,,,,,,,,,,,"Cole, John P",,,,, +CS,1325,001,14,28,11,16,17,2,5,12,1,,1,,4,,,,6,,"Chappidi, Sruthi",,,,, +CS,1325,002,14,44,12,13,26,7,2,8,,1,3,1,3,,,,2,,"Chappidi, Sruthi",,,,, +CS,1337,001,11,5,,3,5,2,2,3,5,,2,,12,,,,3,,"Razo-Razo, Miguel Angel",,,,, +CS,1337,002,4,5,,1,9,2,1,5,2,1,,,12,,,,14,,"Smith, Jason W",,,,, +CS,1337,004,5,3,4,4,1,4,5,1,2,,2,3,13,,,,4,,"Srinivasan, Srimathi",,,,, +CS,1337,5W1,5,10,10,7,11,3,3,,,,1,,3,,,,,,"Dollinger, Scott M",,,,, +CS,1436,001,10,13,5,4,8,1,1,5,3,3,2,2,4,,,,2,,"Ricks, Brian",,,,, +CS,1436,002,4,13,15,7,4,6,3,1,1,,3,,5,,,,2,,"Narayanasami, Priya",,,,, +CS,1436,003,4,17,7,3,7,2,3,4,3,3,,,6,,,,3,,"Willson, James",,,,, +CS,1436,004,,7,14,15,9,5,4,2,,4,1,,3,,,,,,"Solanki, Nidhiben M",,,,, +CS,1436,005,11,13,,8,3,,5,3,,4,6,,10,,,,1,,"Karrah, Shyam S",,,,, +CS,1436,006,,17,17,11,6,6,2,,,1,2,,2,,,,,,"Solanki, Nidhiben M",,,,, +CS,1436,007,1,3,7,4,6,11,7,4,,3,3,2,10,,,,,,"Thompson, Laurie A",,,,, +CS,1436,008,,5,5,4,5,6,5,9,4,4,3,1,11,,,,3,,"Thompson, Laurie A",,,,, +CS,1436,009,12,14,4,8,5,4,4,4,3,,2,,2,,,,3,,"Ricks, Brian",,,,, +CS,1436,010,3,19,16,3,6,4,,2,3,1,,,5,,,,,,"Arnold, Gordon L",,,,, +CS,1436,011,2,11,10,8,6,5,1,2,,1,,,4,,,,,,"Arnold, Gordon L",,,,, +CS,1436,012,24,8,7,9,1,2,1,1,2,3,2,1,3,,,,,,"Srinivasan, Srimathi",,,,, +CS,1436,013,21,10,6,3,2,9,4,2,2,2,1,1,2,,,,,,"Srinivasan, Srimathi",,,,, +CS,1436,015,15,13,,12,7,,5,1,,3,4,,3,,,,1,,"Karrah, Shyam S",,,,, +CS,1436,0L1,4,6,3,2,4,4,,1,1,1,1,,4,,,,1,,"Willson, James",,,,, +CS,1436,0L3,10,5,3,2,14,9,4,4,,1,2,1,4,,,,,,"Veerasamy, Jeyakesavan",,,,, +CS,1436,502,10,9,13,4,2,8,1,8,1,2,2,2,1,,,,,,"Narayanasami, Priya",,,,, +CS,2305,001,2,29,11,14,23,8,9,6,1,,1,,,,,,,,"Daescu, Ovidiu","Truong, Nhat V",,,, +CS,2305,002,1,6,8,8,17,5,7,7,1,2,2,,,,,,1,,"Ouyang, Jessica J",,,,, +CS,2305,003,5,24,11,9,22,8,3,5,1,1,1,1,,,,,3,,"Raichel, Benjamin A",,,,, +CS,2305,004,1,20,13,11,24,12,9,8,,,1,,1,,,,1,,"Bereg, Sergey","Truong, Nhat V",,,, +CS,2305,005,6,34,18,13,21,9,4,5,,1,1,,2,,,,4,,"Gibney, Daniel J",,,,, +CS,2305,HN1,4,20,4,1,2,1,,,1,,,,,,,,,,"Bereg, Sergey",,,,, +CS,2336,001,6,26,11,9,2,1,1,,1,,,,1,,,,,,"Peterson, Erik A",,,,, +CS,2336,002,2,14,11,14,7,3,1,1,,,1,,,,,,,,"Feng, Ranran",,,,, +CS,2336,003,3,14,9,4,7,2,1,7,1,,1,,2,,,,7,,"Smith, Jason W",,,,, +CS,2336,004,9,24,9,5,2,1,2,,,,,,2,,,,1,,"Arnold, Gordon L",,,,, +CS,2336,005,7,13,11,10,6,7,3,,1,,,,,,,,,,"Veerasamy, Jeyakesavan",,,,, +CS,2336,006,3,19,10,7,4,4,2,1,,2,,,4,,,,1,,"Arnold, Gordon L",,,,, +CS,2336,007,6,4,8,3,9,7,2,9,4,2,,,,,,,3,,"Kumar, Ramana R",,,,, +CS,2336,008,4,20,9,10,3,3,,1,2,,,,,,,,,,"Peterson, Erik A",,,,, +CS,2336,009,4,14,5,22,11,1,,,,,,,,,,,,,"Satpute, Meghana N",,,,, +CS,2336,501,,12,3,7,15,6,2,5,,1,3,,,,,,1,,"Stallbohm, Zachary E",,,,, +CS,2336,502,9,17,7,4,7,1,,3,,,2,2,1,,,,1,,"Khan, Kamran Z",,,,, +CS,2336,503,4,13,6,6,14,,2,4,,,1,,3,,,,5,,"Sims, David I",,,,, +CS,2336,504,1,12,5,10,16,3,,4,,,2,,1,,,,,,"Khan, Kamran Z",,,,, +CS,2337,002,13,16,3,10,11,,2,1,,,,,1,,,,3,,"Smith, Jason W",,,,, +CS,2337,003,18,16,5,6,2,4,1,3,,,2,1,1,,,,,,"Veerasamy, Jeyakesavan",,,,, +CS,2337,0W1,9,16,13,4,2,2,2,2,,,,,4,,,,,,"Dollinger, Scott M",,,,, +CS,2340,001,1,6,5,8,12,14,4,6,,,2,,2,,,,,,"Nguyen, Nhut","Guo, Xiaosu",,,, +CS,2340,002,14,7,11,5,4,9,3,6,5,,7,,,,,,,,"Karami, Gity","Guo, Xiaosu",,,, +CS,2340,003,,5,7,4,9,2,,6,,,3,,17,,,,9,,"Cole, John P",,,,, +CS,2340,004,2,10,4,11,9,5,9,8,,,1,,4,,,,3,,"Nguyen, Nhut","Guo, Xiaosu",,,, +CS,2340,005,3,8,3,4,7,5,3,3,5,2,6,,6,,,,4,,"Zhao, Yi","Guo, Xiaosu",,,, +CS,2340,006,,9,7,9,7,5,4,4,2,1,3,1,1,,,,4,,"Wang, Alice","Guo, Xiaosu",,,, +CS,2340,008,3,12,15,14,7,7,8,3,2,,,,1,,,,,,"Jaffal, Wafa","Guo, Xiaosu",,,, +CS,2340,501,,10,5,9,10,9,9,9,1,,3,,4,,,,1,,"Nguyen, Nhut","Guo, Xiaosu",,,, +CS,2340,502,4,8,4,3,9,9,4,6,3,5,,1,3,,1,,,,"Wang, Alice","Guo, Xiaosu",,,, +CS,3162,051,,96,14,8,3,,3,1,,,,,1,,,,3,,"Srivastava, Aditya",,,,, +CS,3162,052,5,83,5,18,17,,,5,1,,,,,,,,1,,"Cole, John P",,,,, +CS,3162,091,,79,12,,4,2,3,3,2,,2,,7,,,,2,,"Srivastava, Aditya",,,,, +CS,3162,092,2,52,23,23,33,5,,1,,,,,1,,,,,,"Cole, John P",,,,, +CS,3341,001,,1,5,2,11,9,3,6,7,2,5,4,5,,,,1,,"Guo, Huizhen","Rajapakshage, Himasha Miurangi W",,,, +CS,3341,002,33,9,16,8,5,15,6,6,6,1,1,,3,,,,2,,"Chandra, Noirrit K","Akter, Rozina",,,, +CS,3341,003,,4,3,2,5,6,5,5,6,3,1,,7,,,,,,"Guo, Huizhen","Mathew, Minu Maria",,,, +CS,3341,004,,2,2,,1,4,7,5,3,,6,,9,,,,1,,"Guo, Huizhen","Mathew, Minu Maria",,,, +CS,3341,005,4,4,6,3,8,6,8,1,3,,2,2,2,,,,,,"Jiang, Shengjie","Rajapakshage, Himasha Miurangi W",,,, +CS,3341,006,7,6,7,12,5,6,3,4,4,4,3,2,8,,,,2,,"Jiang, Shengjie","Rajapakshage, Himasha Miurangi W",,,, +CS,3341,007,,7,,4,11,,19,16,,5,1,,,,,,2,,"Smiley, Octavious A","Akter, Rozina",,,, +CS,3341,008,1,5,,1,13,,21,16,,4,,,2,,,,1,,"Smiley, Octavious A","Akter, Rozina",,,, +CS,3341,HON,13,8,4,4,2,1,,,,,,,,,,,,,"Haas, Zygmunt J",,,,, +CS,3345,001,7,13,3,3,13,7,4,6,2,1,,,,,,,,,"Chappidi, Sruthi","Mao, Dongyu",,,, +CS,3345,002,14,13,5,9,7,3,,7,,,4,,1,,,,2,,"Hamdy, Omar Mohamed","Mao, Dongyu",,,, +CS,3345,003,4,11,4,3,8,6,7,3,1,,,1,4,,,,1,,"Nemec, Andrew S",,,,, +CS,3345,004,5,10,9,2,2,6,3,2,3,2,1,1,5,,,,5,,"Alagar, Sridhar",,,,, +CS,3345,005,2,17,6,10,7,8,3,1,,,,,,,,,2,,"Erbatur, Serdar",,,,, +CS,3345,006,6,5,5,3,5,5,3,2,4,3,6,2,8,,,,3,,"Alagar, Sridhar",,,,, +CS,3345,501,1,17,,17,17,5,,4,1,,,,2,,,,1,,"Khan, Kamran Z",,,,, +CS,3345,502,,10,7,5,13,9,,6,,,2,,1,,,,,,"Khan, Kamran Z",,,,, +CS,3345,503,3,10,2,6,12,5,4,5,,,5,,4,,,,,,"Chappidi, Sruthi","Mao, Dongyu",,,, +CS,3345,HON,5,17,5,3,2,,,,,,,,,,,,,,"Fox, Emily K",,,,, +CS,3354,001,5,29,15,9,2,1,1,,,,,,1,,,,,,"Feng, Ranran",,,,, +CS,3354,002,2,8,9,11,7,10,3,6,2,1,1,,,,,,,,"Paulk, Mark C",,,,, +CS,3354,003,17,14,13,7,4,2,1,1,1,,1,,3,,,,,,"Nouroz Borazjany, Mehra",,,,, +CS,3354,004,5,34,7,7,4,,,,,,,,,,,,,,"Maweu, Barbara","Wei, Songtao",,,, +CS,3354,005,21,10,11,5,4,5,1,,,,,,1,,1,,1,,"Nouroz Borazjany, Mehra",,,,, +CS,3354,006,10,17,14,13,5,4,,,,,,,,,,,,,"Narayanasami, Priya",,,,, +CS,3354,007,6,12,17,7,7,3,3,,,,1,,,,,,,,"Narayanasami, Priya",,,,, +CS,3354,008,11,20,9,6,5,4,,,,,,,1,,,,,,"Nouroz Borazjany, Mehra",,,,, +CS,3354,501,8,27,21,4,2,1,,,,,,,,,,,,,"Srinivasan, Srimathi",,,,, +CS,3354,502,,13,6,9,13,1,3,3,,,,,3,,,,,,"Maweu, Barbara","Wei, Songtao",,,, +CS,3377,001,2,9,7,6,9,6,7,2,3,1,2,,1,,,,2,,"Min, Richard K","Song, Xiaoyu",,,, +CS,3377,002,3,8,7,10,14,10,5,1,,,2,,1,,,,3,,"Min, Richard K",,,,, +CS,3377,003,3,19,7,27,11,2,2,1,,,1,,,,,,,,"Satpute, Meghana N",,,,, +CS,3377,005,6,13,8,18,14,2,3,1,2,,,,,,,,,,"Satpute, Meghana N",,,,, +CS,3377,006,1,9,1,2,28,9,,8,,,4,1,2,,,,2,,"Belkoura, Mohamed Amine",,,,, +CS,3377,0W1,12,35,13,5,6,1,1,2,,,,,,,,,1,,"Dollinger, Scott M",,,,, +CS,3377,502,,6,3,4,27,3,2,13,2,1,5,,3,,,,,,"Belkoura, Mohamed Amine",,,,, +CS,4141,101,3,7,3,3,3,,,,,,,,1,,,,,,"Becker, Eric W","Rouhani, Hamid",,,, +CS,4141,102,16,3,,,,,,,,,,,,,,,1,,"Becker, Eric W","Park, Jaehyun",,,, +CS,4141,103,10,5,3,,1,,,,1,,,,,,,,,,"Becker, Eric W","Pham, To Kim Bao",,,, +CS,4141,104,15,4,,,,,,,,,,,,,,,,,"Becker, Eric W","Dakshit, Sristi",,,, +CS,4141,105,5,8,3,1,2,,,,,,,,,,,,,,"Becker, Eric W","Rouhani, Hamid",,,, +CS,4141,106,6,11,2,1,,,,,,,,,,,,,,,"Becker, Eric W","Rouhani, Hamid",,,, +CS,4141,107,16,2,,,1,,,1,,,,,,,,,,,"Becker, Eric W","Park, Jaehyun",,,, +CS,4141,108,11,7,1,1,,,,,,,,,,,,,,,"Becker, Eric W","Pham, To Kim Bao",,,, +CS,4141,109,16,2,1,,,,,,,,,,,,,,,,"Becker, Eric W","Dakshit, Sristi",,,, +CS,4141,110,17,,1,,,1,,,,,,,1,,,,,,"Becker, Eric W","Park, Jaehyun",,,, +CS,4141,111,13,5,1,,,1,,,,,,,,,,,,,"Becker, Eric W","Pham, To Kim Bao",,,, +CS,4141,112,7,9,2,,1,,,,,,,,,,,,,,"Becker, Eric W","Rouhani, Hamid",,,, +CS,4141,113,16,3,,,1,,,,,,,,,,,,,,"Becker, Eric W","Dakshit, Sristi",,,, +CS,4141,114,15,1,,1,2,,,,,,,,1,,,,,,"Becker, Eric W","Park, Jaehyun",,,, +CS,4141,115,3,6,3,1,4,1,,1,,,,,,,,,,,"Becker, Eric W","Saha, Ramkrishna",,,, +CS,4141,116,18,1,,,,,,,,,,,1,,,,,,"Becker, Eric W","Park, Jaehyun",,,, +CS,4141,117,16,1,,1,1,,,,,,,,1,,,,,,"Becker, Eric W","Dakshit, Sristi",,,, +CS,4141,118,14,2,1,,,,,2,,1,,,,,,,,,"Becker, Eric W","Pham, To Kim Bao",,,, +CS,4141,601,9,6,1,,1,,1,1,,,,,,,,,,,"Becker, Eric W","Pham, To Kim Bao","Zhang, Jinheng",,, +CS,4141,602,16,1,,1,,,1,1,,,,,,,,,,,"Becker, Eric W","Dakshit, Sristi",,,, +CS,4141,603,9,9,,,,1,,,,,,,,,,,,,"Becker, Eric W","Rouhani, Hamid",,,, +CS,4141,604,4,8,3,3,2,,,,,,,,,,,,,,"Becker, Eric W","Saha, Ramkrishna",,,, +CS,4141,605,2,5,3,4,2,1,1,,1,1,,,,,,,,,"Becker, Eric W","Saha, Ramkrishna",,,, +CS,4141,606,9,6,2,1,,,,1,1,,,,,,,,,,"Becker, Eric W","Rouhani, Hamid",,,, +CS,4141,607,14,2,,,,,,,1,,,,,,,,,,"Becker, Eric W","Dakshit, Sristi",,,, +CS,4141,608,1,7,3,2,2,,2,1,,,,,,,,,,,"Becker, Eric W","Saha, Ramkrishna",,,, +CS,4141,609,2,9,3,2,,,1,,,1,,,,,,,,,"Becker, Eric W","Saha, Ramkrishna",,,, +CS,4141,610,11,5,,2,,,,,,,,,1,,,,1,,"Becker, Eric W","Rouhani, Hamid","Pham, To Kim Bao","Zhang, Jinheng",, +CS,4334,002,,3,,,3,,,4,,,1,,,,,,,,"Biswas, Saikat","Sarkar, Soham",,,, +CS,4337,001,1,10,7,9,10,8,5,,,,,,1,,,,2,,"Davis, Chris I","Zhang, Baoming","Zhang, Yue",,, +CS,4337,002,1,6,6,4,9,8,7,7,2,3,2,,3,,,,,,"Zhao, Yi","Li, Ruosen",Jishnu J,,, +CS,4337,003,8,11,13,6,6,5,3,2,4,,1,,1,,,,,,"Karami, Gity","Golivand Darvishvand, Fateme",,,, +CS,4337,004,2,10,21,12,11,13,1,,,,,,,,1,,2,,"Davis, Chris I","Zhang, Yue","Xu, Zexin",,, +CS,4337,501,,8,22,17,5,1,2,3,,,,,1,,,,,,"Salazar, Elmer E","Ahmed, Meah T","Ailneni, Rakshitha Rao",,, +CS,4337,502,,4,12,12,18,1,1,4,1,,,,1,,,,1,,"Salazar, Elmer E","Averill, Matthew C",,,, +CS,4337,503,11,2,11,4,7,7,2,3,4,,5,,1,,,,,,"Karami, Gity","Golivand Darvishvand, Fateme","Li, Ruosen",,, +CS,4337,504,4,11,4,3,6,3,8,5,3,1,2,,1,,,,1,,"Zhao, Yi","Tenali, Pranuthi",,,, +CS,4337,505,,4,12,4,11,7,5,5,4,,1,,,,2,,1,,"Davis, Chris I","Xu, Zexin","Saha, Pritom K",,, +CS,4341,001,19,19,,5,12,3,4,2,3,,,,1,,,,1,,"DeGroot, Doug",,,,, +CS,4341,002,,24,9,8,8,5,,8,,,3,,5,,,,,,"Li, Bingzhe","Sensintaffar, Alex H",,,, +CS,4341,003,3,10,8,1,7,9,,13,3,,8,,6,,,,1,,"Wang, Alice","Dhulipala, Hridya","Ahmed, Sabbir",,, +CS,4341,005,8,9,10,5,6,3,,20,,,5,,3,,,,1,,"Hamdy, Omar Mohamed",,,,, +CS,4341,006,8,9,10,4,8,6,,13,2,,6,,3,,,,1,,"Wang, Alice","Ahmed, Sabbir","Dhulipala, Hridya",,, +CS,4341,501,24,15,4,7,8,3,,6,,,1,,1,,,,1,,"Hamdy, Omar Mohamed",,,,, +CS,4341,502,24,20,3,3,10,,3,4,,,,,1,,1,,1,,"DeGroot, Doug",,,,, +CS,4341,503,14,7,7,4,11,3,,16,,,6,,,,,,1,,"Hamdy, Omar Mohamed",,,,, +CS,4347,001,,15,14,10,13,4,5,3,,1,1,,1,,,,2,,"Solanki, Nidhiben M","Wang, Guanghua","Miao, Miao",,, +CS,4347,002,11,6,7,7,12,2,5,8,,6,5,2,2,,,,,,"Omer, Jalal S","Patel, Smit Soneshbhai",,,, +CS,4347,003,13,5,9,18,3,11,12,3,4,2,2,,4,,,,4,,"Omer, Jalal S","Wang, Yuxiao","Rong, Xiaokai","Patel, Smit Soneshbhai",, +CS,4347,004,1,15,18,10,13,6,5,3,,1,1,,,,1,,,,"Solanki, Nidhiben M","Aggarwal, Alakh",,,, +CS,4347,005,7,26,11,9,26,1,5,7,,1,,,1,,,,1,,"Cankaya, Ebru","Mulka, Sai Tharun Reddy",,,, +CS,4347,006,39,25,9,,3,,,,,,,,,,,,1,,"Becker, Eric W",,,,, +CS,4347,007,3,12,6,8,19,2,5,4,,,1,,1,,,,,,"Cankaya, Ebru","Mulka, Sai Tharun Reddy",,,, +CS,4347,501,10,7,1,5,4,8,8,3,1,4,3,3,3,,,,,,"Omer, Jalal S","Patel, Smit Soneshbhai","Wang, Yuxiao",,, +CS,4348,001,,2,4,4,,2,,3,,,3,,2,,,,3,,"Yen, I-Ling","Miao, Miao",,,, +CS,4348,002,7,10,2,12,13,6,6,3,2,,,,1,,,,3,,"Christiansen, Michael G","Sakib, Md Nazmus","Das, Souvik",,, +CS,4348,003,3,5,1,3,11,5,3,15,2,2,3,2,1,,,,4,,"Gupta, Neeraj K","Nanda, Souradeep","Li, Jia","Lee, Yi-Hui",, +CS,4348,004,24,12,6,7,3,1,3,4,,,3,,4,,,,3,,"Kim, Chung Hwan","Mukherjee, Kunal","Nik Khah, Arman",,, +CS,4348,005,53,2,,,1,,2,,,,,,,,,,,,"DeGroot, Doug",,,,, +CS,4348,006,2,7,6,8,9,7,6,6,5,1,2,,3,,,,,,"Gupta, Neeraj K","Li, Jia","Lee, Yi-Hui","Nanda, Souradeep",, +CS,4348,501,1,18,21,8,5,8,3,1,,,1,1,,,1,,,,"Salazar, Elmer E","Zhou, Yisheng",,,, +CS,4348,502,,24,15,12,6,5,1,1,1,1,1,1,1,,,,,,"Salazar, Elmer E","Pallapothula, Likhitha",,,, +CS,4348,HON,2,10,3,1,,1,,,,,,,,,,,,,"Prakash, Ravi","Lee, Yi-Hui",,,, +CS,4349,001,5,14,19,8,13,11,13,10,,5,5,2,,,,,2,,"Chitturi, Bhadrachalam",,,,, +CS,4349,002,3,20,27,21,17,11,6,1,,,,,,,,,1,,"Erbatur, Serdar",,,,, +CS,4349,003,8,18,,12,27,,4,13,,,2,,4,,1,,6,,"Darbari, Parisa","Li, Shengjie","Singhal, Yatharth",,, +CS,4349,004,5,12,9,15,18,11,10,13,5,2,1,2,1,,,,1,,"Fox, Emily K","Wu, Peilin","Weinzierl, Maxwell A",,, +CS,4349,005,2,13,13,13,15,3,8,8,2,3,6,,1,,,,5,,"Jue, Jason P","Xu, Ruoyu","Rath, Avilash S",,, +CS,4349,006,17,15,13,19,17,12,7,,4,,,,,,,,1,,"Erbatur, Serdar",,,,, +CS,4349,HON,,4,1,2,4,1,,,,,,,1,,,,,,"Willson, James",,,,, +CS,4352,001,,19,12,6,6,,3,2,,1,1,,,,,,,,"Kim, Jin Ryong","Singhal, Yatharth","Pratap, Ashish",,, +CS,4361,001,5,23,9,6,18,8,5,5,1,,,,,,,,,,"Kumar, Pushpa S","Allu, Sai Haneesh",,,, +CS,4361,002,4,18,13,9,10,5,1,2,,2,1,,3,,,,5,,"Guo, Xiaohu","Wang, Ningna",,,, +CS,4365,001,4,6,8,10,12,14,6,6,3,,,,,,,,3,,"Min, Richard K","Jiang, Kai",,,, +CS,4365,002,2,12,11,11,9,10,4,3,2,1,3,4,3,,,,2,,"Ng, Yu Chung Vincent","Nguyen, Khoi P",,,, +CS,4365,501,13,31,11,6,4,3,2,,,,,,,,,,,,"Guo, Yunhui","Mao, Ruiyu",,,, +CS,4371,001,,36,10,33,29,12,,,2,,1,,1,,,,3,,"Khan, Latifur R","Song, Zihe","Birashk, Amin",,, +CS,4372,501,33,45,19,12,4,1,1,,,,,,2,,,,1,,"Nagar, Anurag","Yang, Haoyuan","Zhang, Yifan",,, +CS,4375,001,19,18,19,12,6,1,1,,,,,,,,,,,,"Nagar, Anurag","Liu, Ziqi",,,, +CS,4375,002,1,7,5,11,9,8,4,2,6,,4,,5,,,,15,,"Ruozzi, Nicholas R","Vyas, Akshay",,,, +CS,4375,003,29,16,12,5,5,3,5,2,1,,,,1,,,,,,"Yang, Wei","Li, Tingxi","Rathnasuriya, Ravishka S",,, +CS,4375,501,16,9,9,4,12,6,7,6,2,2,2,6,3,,,,2,,"Skorupa Parolin, Erick","Xu, Ouyang","Pham, Truong Q",,, +CS,4376,001,2,9,9,8,10,6,6,2,1,1,2,1,,,,,,,"Zalila-Wenkstern, Rym","Paulk, Mark C","Alshomar, Ahmad",,, +CS,4384,001,10,13,12,7,9,4,5,10,,6,3,,3,,,,1,,"Gupta, Gopal","Kimbrell, Keegan M",,,, +CS,4384,002,7,7,15,16,10,13,6,3,,,2,,1,,,,1,,"Huynh, Dung T","Rivera Sanchez, Cynthia M",,,, +CS,4384,003,5,13,2,5,12,4,11,1,3,1,2,7,3,,,,4,,"Chitturi, Bhadrachalam",,,,, +CS,4384,004,,1,,1,3,7,6,13,15,6,7,3,7,,,,4,,"Ntafos, Simeon C","Maadugundu, Meghana Spurthi",,,, +CS,4384,005,,3,2,4,9,14,12,12,10,4,1,,3,,,,2,,"Ntafos, Simeon C","Yadavally, Aashish",,,, +CS,4386,501,7,8,5,12,18,1,1,8,1,3,3,1,10,,,,3,,"Gupta, Neeraj K","Ahmed, Meah T","Lee, Jaeseong",,, +CS,4389,001,3,15,7,8,21,3,8,5,2,1,1,1,,,,,2,,"Cankaya, Ebru",,,,, +CS,4390,001,1,9,11,23,11,4,6,4,2,1,,1,,,,,,,"Haas, Zygmunt J","Saadatfar, Rozhin",,,, +CS,4390,002,13,11,5,14,9,20,2,,1,,,,,,,,1,,"Hao, Shuang","Zhao, Yichen",,,, +CS,4390,003,3,8,13,15,15,7,1,5,,,,,1,,,,9,,"Jue, Jason P","Li, Congzhou",,,, +CS,4390,004,6,8,17,9,18,5,4,1,4,1,1,,2,,,,,,"Ding, Yi","Miah, Md Sanaullah",,,, +CS,4390,005,12,12,7,15,9,17,4,1,,,,,,,,,,,"Hao, Shuang","Hong, Shi Yin",,,, +CS,4391,001,,19,12,12,13,4,3,4,,,,,5,,,,2,,"Tian, Yapeng","Vasireddy, Siva Sai Nagender",,,, +CS,4392,001,35,14,9,3,5,,3,,2,,,,1,,,,,,"Feng, Ranran","Zhao, Ziyi",,,, +CS,4393,001,,6,,1,3,4,3,9,3,2,4,,,,,,3,,"Nguyen, Nhut","Omidi, Zahra",,,, +CS,4395,001,31,24,12,3,3,,1,,2,1,,,1,,,,,,"Chen, Zhiyu","Zhang, Mian",,,, +CS,4397,001,1,3,10,20,15,5,3,2,1,,,,,,,,2,,"Bastani, Farokh B","Hatfield, Cody R",,,, +CS,4485,0W1,124,145,60,40,31,14,,,2,,1,,,,,,2,,"Razo-Razo, Miguel Angel","Cole, John P","Srivastava, Aditya","Gupta, Anand","Salih, Raed M", +CS,4V95,001,,12,1,,,,,,,,,,1,,,,,,"Mittal, Neeraj",,,,, +CS,5303,001,,30,9,2,2,,1,1,,,,,1,,,,1,,"Becker, Eric W",,,,, +CS,5330,001,,21,1,3,3,2,1,2,,,,,,,,,,,"Zhao, Yi",,,,, +CS,5333,001,,12,6,9,7,9,1,1,,,,,1,,,,1,,"Cobb, Jorge A",,,,, +CS,5333,002,,1,3,,,1,1,2,,,,,,,,,2,,"Desmedt, Yvo G",,,,, +CS,5343,001,,14,8,8,9,7,9,6,,,,,3,,,,2,,"Gupta, Neeraj K",,,,, +CS,5348,001,,30,11,6,6,1,,,,,,,,,,,1,,"Alagar, Sridhar",,,,, +CS,5390,003,,7,4,2,1,,,,,,,,,,,,,,"Jue, Jason P","Li, Congzhou",,,, +CS,5V81,001,,11,,,,,,,,,,,,,,,,,"Sarac, Kamil",,,,, +CS,6301,001,,25,13,11,11,1,1,1,,,,,1,,,,,,"Xiang, Yu",Jishnu J,,,, +CS,6301,002,,71,3,3,,,,,,,,,1,,,,,,"Wang, Xinda","Li, Youpeng",,,, +CS,6301,003,,14,,,,,,,,,,,,,,,,,"Ricks, Brian",,,,, +CS,6303,0W1,,31,1,1,2,1,,1,,,,,,,,,2,,"Cankaya, Ebru","Mohan, Sudharssan T",,,, +CS,6306,501,,38,3,1,,,,,,,,,,,,,,,"Ricks, Brian","Bansal, Rishita",,,, +CS,6313,001,,5,3,5,2,2,2,,,,,,1,,,,,,"Chen, Min","Kim, Jimi",,,, +CS,6313,002,,72,25,,3,2,1,,,,,,,,,,1,,"Becker, Eric W","Dhulipala, Hridya","Yan, Shuo",,, +CS,6314,001,,92,2,2,,,,,,,,,,,,,,,"Alagar, Sridhar",,,,, +CS,6314,002,,68,14,3,2,,,,,,,,,,,,,,"Karami, Gity","Pratap, Ashish","He, Kaiyu",,, +CS,6320,001,,11,24,15,11,3,1,,,,,,,,,,,,"Harabagiu, Sanda M","Ailneni, Rakshitha Rao","Weinzierl, Maxwell A",,, +CS,6320,002,,57,,,5,,,1,,,,,1,,,,,,"Erekhinskaya, Tatiana N","Omidi, Zahra","Li, Ruochen",,, +CS,6320,003,,55,9,5,,,,,,,,,,,,,,,"Du, Xinya",,,,, +CS,6323,001,,32,,,,,,,,,,,1,,,,1,,"Feng, Ranran","Zhang, Yifan",,,, +CS,6326,001,,66,10,,,1,,,,,,,,,,,,,"Alghofaili, Rawan","Tang, Xulong",,,, +CS,6331,001,,11,7,,,,,,,,,,1,,,,,,"Prabhakaran, Balakrishnan",,,,, +CS,6332,001,1,24,,2,4,,1,1,,,,,,,,,1,,"Jee, Kangkook",,,,, +CS,6335,001,,4,7,4,5,,,,,,,,,,,,,,"Hamlen, Kevin W","Averill, Matthew C",,,, +CS,6343,001,,2,2,6,1,,,,,,,,,,,,1,,"Yen, I-Ling",,,,, +CS,6344,001,,35,12,4,,4,2,1,,,,,,,,,2,,"Schweitzer, Haim","Mao, Wei",,,, +CS,6349,001,,7,4,3,5,3,,1,,,,,1,,,,,,"Sarac, Kamil","Das, Souvik",,,, +CS,6350,001,,54,37,5,1,,,,,,,,,,,,,,"Nagar, Anurag","Su, Ke","Ononto, Akib J",,, +CS,6350,002,,17,7,4,1,,,,,,,,,,,,,,"Nagar, Anurag","Ononto, Akib J",,,, +CS,6350,M01,,10,5,,,,,,,,,,,,,,,,"Nagar, Anurag",,,,, +CS,6360,001,,24,10,14,9,7,4,7,,,,,,,,,,,"Omer, Jalal S","Mohan, Sudharssan T","Song, Zihe",,, +CS,6360,002,,18,4,8,4,1,,,,,,,,,1,,,,"Wu, Wei L","Wang, Guanghua",,,, +CS,6360,501,,24,29,17,2,2,,,,,,,,,,,,,"Davis, Chris I","Saha, Pritom K",,,, +CS,6363,001,,10,8,4,12,7,,,,,,,1,,,,1,,"Chitturi, Bhadrachalam",,,,, +CS,6363,002,,9,20,24,6,4,,,,,,,,,,,1,,"Raichel, Benjamin A","Hossain, Md Billal",,,, +CS,6363,003,,21,15,8,13,3,1,,,,,,,,,,3,,"Huynh, Dung T","Kamal, Minhas","Hossain, Md Billal","Rivera Sanchez, Cynthia M",, +CS,6364,001,,31,24,5,7,2,,,,,,,,,,,,,"Harabagiu, Sanda M","Weinzierl, Maxwell A",,,, +CS,6364,002,,22,17,14,12,1,,,,,,,,,1,,,,"Natarajan, Sriraam","Nanda, Souradeep",,,, +CS,6364,501,,14,13,9,2,,,,,,,,,,,,,,"Min, Richard K","Bansal, Rishita",,,, +CS,6375,002,,11,18,17,10,8,,1,,,,,,,,,1,,"Iyer, Rishabh K","Pham, Truong Q",,,, +CS,6375,003,,20,7,9,9,6,4,4,,,,,3,,,,3,,"Gogate, Vibhav G","Malhotra, Brij Gulsharan",,,, +CS,6375,004,,12,13,6,3,1,,,,,,,,,,,,,"Yang, Wei","Rathnasuriya, Ravishka S",,,, +CS,6375,005,,22,5,,6,1,1,,,,,,,,,,,,"Maung, Crystal","Mao, Wei",,,, +CS,6377,001,,3,,,1,2,2,,,,,,,,,,3,,"Desmedt, Yvo G",,,,, +CS,6378,001,,12,7,2,6,3,,,,,,,1,,,,5,,"Mittal, Neeraj","Nik Khah, Arman",,,, +CS,6382,001,,19,2,8,4,,,,,,,,,,,,,,"Du, Ding Z","Su, Ke",,,, +CS,6390,001,,6,3,4,8,5,,1,,,,,,,,,1,,"Cobb, Jorge A","Li, Jia",,,, +CS,6396,001,,3,5,4,,2,,,,,,,,,,,,,"Bastani, Farokh B","Hatfield, Cody R",,,, +CS,7301,001,,28,,,,1,,,,,,,,,,,,,"Chen, Feng",,,,, +CS,8V07,065,,,,,,,,,,,,,,,,,,13,"Khan, Latifur R",,,,, +DANC,1305,001,8,26,,3,5,,1,,,,,,1,,,,,,"Johnson, Melissa A",,,,, +DANC,1305,HN1,11,11,2,,,,1,,,,,,,,,,,,"Saba, Monica M",,,,, +DANC,1310,001,15,13,4,3,4,1,,4,1,,2,,1,,,,,,"Callon, Cheryl",,,,, +DANC,1310,0H1,32,8,,1,2,,1,3,,,1,,,,,,,,"De Jesus, Marquita S",,,,, +DANC,1310,0H2,8,26,,,7,,1,2,,1,1,,1,,,,1,,"Duplantier, Hayley J",,,,, +DANC,1310,0W1,3,36,,1,9,,,,,,,,,,,,,,"Johnson, Melissa A",,,,, +DANC,2321,001,9,5,1,1,,,,1,,,,,1,,,,,,"Callon, Cheryl",,,,, +DANC,2332,001,4,6,1,,2,,,,,,,,1,,,,,,"Johnson, Melissa A",,,,, +DANC,2333,001,9,4,,1,1,,,1,,,,,,,,,,,"Johnson, Melissa A",,,,, +DBUA,7411,SH1,,11,,,,,,,,,,,,,,,2,,"Sarkar, Sumit","Radhakrishnan, Suresh","Peng, Mike W","Zhang, Huibing","Murthi, B P","Janakiraman, Ganesh" +DBUA,7412,SH1,,11,,,,,,,,,,,,,,,2,,"Mookerjee, Vijay S",,,,, +DBUA,7413,SH1,,4,1,2,3,,,,,,,,,,,,,,"Zentner, Alejandro","Botcha, Sumana",,,, +ECON,2301,001,18,25,7,10,25,5,9,12,2,2,4,2,4,,,,2,,"Ketsler, Luba","Chen, Meizhen",,,, +ECON,2301,002,6,15,16,21,20,16,11,9,4,1,2,2,2,,,,1,,"Yue, Wanwan","Ansari, Reza",,,, +ECON,2301,003,11,40,14,10,39,8,9,25,2,1,8,2,7,,,,2,,"Ketsler, Luba","Jones, Brandon S",,,, +ECON,2301,004,3,3,5,6,4,2,3,5,4,6,1,,1,,,,1,,"Islam, Azharul",,,,, +ECON,2301,501,13,2,2,2,6,,3,3,1,,4,,8,,,,4,,"Barua Soni, Prajyna P",,,,, +ECON,2302,001,2,19,2,6,24,14,6,10,2,6,12,,9,,,,10,,"Grover, William C","Jones, Steven J",,,, +ECON,2302,002,9,36,5,9,15,8,10,23,14,6,9,4,33,,,,15,,"Arce, Daniel G",,,,, +ECON,2302,003,5,8,2,2,5,2,3,5,4,3,2,3,2,,,,2,,"Yue, Wanwan","Ansari, Reza","Javadi, Milad",,, +ECON,2302,501,11,18,15,9,19,10,13,12,5,7,1,5,3,,,,1,,"Yue, Wanwan","Ansari, Reza","Javadi, Milad",,, +ECON,3310,001,3,9,2,2,4,2,8,4,2,,2,,1,,,,,,"Yue, Wanwan","Ansari, Reza",,,, +ECON,3310,501,,1,2,1,3,1,1,,,,1,,1,,,,1,,"Burton, Anne M","Hu, Taowen",,,, +ECON,3311,001,3,9,8,3,3,,,,,,,,,,,,,,"Sul, Donggyu","Pandey, Abhishek",,,, +ECON,3311,002,,2,3,5,3,,3,2,2,,2,,1,,,,,,"Granados, Camilo","Yu, Yiqun",,,, +ECON,3312,001,3,2,2,,1,3,2,3,1,,,,1,,,,,,"Valcarcel, Victor J",,,,, +ECON,3330,001,3,18,3,1,10,2,3,4,,,,,4,,,,1,,"Ketsler, Luba",,,,, +ECON,3330,002,7,27,10,2,11,1,2,4,,,,,,,,,,,"Ketsler, Luba",,,,, +ECON,3338,001,,7,5,1,5,2,1,2,,,,,,,,,1,,"Burton, Anne M",,,,, +ECON,3381,001,2,8,7,4,11,1,3,6,2,1,2,,3,,,,,,"Grover, William C",,,,, +ECON,4310,001,5,9,3,5,3,,,,,,,,,,,,,,"Arce, Daniel G",,,,, +ECON,4320,001,,4,8,2,7,1,1,1,,,,,,,,,1,,"Giertz, Seth","Li, Zhuoqun",,,, +ECON,4330,001,,1,9,3,4,6,1,,,,,1,,,,,,,"Giertz, Seth","Li, Zhuoqun",,,, +ECON,4332,501,2,5,1,2,1,,3,2,,,,,,,,,,,"Murdoch, James C",,,,, +ECON,4333,001,3,1,1,2,4,1,3,2,,,,,,,,,,,"Siqueira, Kevin J","Jin, Tong",,,, +ECON,4345,001,2,12,5,7,6,2,,3,,,,,1,,,,1,,"Miller, Darwin W",,,,, +ECON,4351,001,3,5,1,,2,3,2,1,,,3,,,,,,,,"Grover, William C",,,,, +ECON,4355,001,6,5,3,4,1,5,,1,,,,,1,,,,1,,"Li, Dong","Mou, Hao",,,, +ECON,4360,001,4,3,,2,2,1,3,3,,1,2,1,1,,,,1,,"Siqueira, Kevin J","Jin, Tong",,,, +ECON,4386,001,13,4,1,2,1,1,,1,1,,1,,,,,,,,"Panovska, Irina B","Johra, Fatema Tuj",,,, +ECON,6302,001,,9,1,2,,1,,,,,,,,,,,,,"Panovska, Irina B","Johra, Fatema Tuj",,,, +ECON,6305,501,,7,1,2,2,,,,,,,,2,,,,1,,"Grover, William C",,,,, +ECON,6331,551,,2,1,2,5,1,,,,,,,,,,,,,"Morales Leon, Maria C",,,,, +ECON,7309,001,,7,3,,4,1,,,,,,,,,,,,,"Li, Dong","Mou, Hao",,,, +ECS,1100,001,,243,,,30,,,6,,,,,7,,1,,1,,"Zhao, Yi",,,,, +ECS,1100,002,,257,,,25,,,5,,,,,7,,,,1,,"Porter, Benjamin A","Nonso-Anyakwo, Kenny K","Adebayo, Oredola A","Deatherage, Joseph L","Perry, Jonathan J","Edwards, Shanae L" +ECS,1100,003,,248,,,30,,,5,,,,,5,,,,,,"Porter, Benjamin A","Adebayo, Oredola A","Nonso-Anyakwo, Kenny K","Deatherage, Joseph L","Younis, Hazem Amr F","Perry, Jonathan J" +ECS,1100,005,,148,,,20,,,3,,,,,5,,,,,,"Henderson, Rashaunda M","Adebayo, Oredola A","Nonso-Anyakwo, Kenny K","Deatherage, Joseph L",, +ECS,1100,006,,251,,,26,,,8,,,,,8,,,,,,"McClain, Rebecca","Adebayo, Oredola A","Nonso-Anyakwo, Kenny K",,, +ECS,1100,0L1,,29,,,4,,,1,,,,,2,,,,,,"Perry, Jonathan J",,,,, +ECS,1100,0L2,,17,,,2,,,3,,,,,,,,,,,"Kumar, Pavan P","Edwards, Shanae L","Haider, Muhammad Luqman",,, +ECS,1100,0L3,,35,,,1,,,,,,,,,,,,,,"Edwards, Shanae L",,,,, +ECS,1100,5L1,,24,,,3,,,,,,,,1,,,,,,"Ocampo Diaz, Gerardo",,,,, +ECS,1100,5L2,,9,,,2,,,,,,,,,,,,,,"Younis, Hazem Amr F",,,,, +ECS,1100,5L3,,20,,,3,,,,,,,,,,,,,,"Haider, Muhammad Luqman",,,,, +ECS,1100,5L4,,14,,,3,,,,,,,,,,,,,,"Birsan, Vlad I",,,,, +ECS,2390,001,,,2,4,2,5,4,1,,1,,,,,,,,,"Crowder, Wade A",,,,, +ECS,2390,002,,,,4,7,2,4,,,,,,2,,,,,,"Crowder, Wade A",,,,, +ECS,2390,003,,,2,2,7,2,1,1,2,,1,,,,,,,,"Crowder, Wade A",,,,, +ECS,2390,004,,1,2,3,3,3,2,2,2,,,,1,,,,,,"Crowder, Wade A",,,,, +ECS,2390,005,1,7,7,1,2,1,,,,,,,,,,,,,"Mckee-Williams, Candie D",,,,, +ECS,2390,006,11,3,1,2,2,,,,,,,,,,,,,,"Glauser, Janece B",,,,, +ECS,2390,007,12,4,1,1,,1,,,,,,,,,,,,,"Glauser, Janece B",,,,, +ECS,2390,008,,4,13,1,,1,,,,,,,,,,,,,"Mckee-Williams, Candie D",,,,, +ECS,2390,009,16,2,1,,,,,,,,,,,,,,,,"Montgomery, Christina F",,,,, +ECS,2390,010,,8,8,1,,,2,,,,,,,,,,,,"Mckee-Williams, Candie D",,,,, +ECS,2390,011,4,6,6,,1,,1,,,,,1,,,,,,,"Skiles, Bradley W",,,,, +ECS,2390,012,8,3,3,1,3,1,,,,,,,,,,,,,"Hernandez-Katz, Melissa M",,,,, +ECS,2390,013,2,9,5,1,1,,1,,,,,,,,,,,,"Hernandez-Katz, Melissa M",,,,, +ECS,2390,014,16,2,,,1,,,,,,,,,,,,,,"Henderson, Lacey J",,,,, +ECS,2390,015,13,2,1,1,,1,1,,,,,,,,,,,,"Davis, Letitia A",,,,, +ECS,2390,016,,2,3,3,3,1,1,3,,1,,1,1,,,,,,"Mathur, Shivika",,,,, +ECS,2390,017,,3,5,3,4,,,2,,,,1,,,,,,,"Mathur, Shivika",,,,, +ECS,2390,0H1,7,3,3,3,1,2,,,,,,,,,,,,,"Johnson, Janet L",,,,, +ECS,2390,0H2,11,6,,,,1,,,,,,,1,,,,,,"Montgomery, Christina F",,,,, +ECS,2390,0H3,,16,2,1,,,,,,,,,,,,,,,"Hartmann, Jonathan",,,,, +ECS,2390,0H4,1,10,2,,3,3,,,,,,,,,,,,,"Hernandez-Katz, Melissa M",,,,, +ECS,2390,0H5,,16,3,,,,,,,,,,,,,,,,"Hartmann, Jonathan",,,,, +ECS,2390,0H6,,11,5,2,1,,,1,,,,,,,,,,,"Mckee-Williams, Candie D",,,,, +ECS,2390,0H7,10,2,4,2,,,,1,,,,,,,,,,,"Glauser, Janece B",,,,, +ECS,2390,0H8,12,4,1,,1,,1,,,,,,,,,,,,"Glauser, Janece B",,,,, +ECS,2390,0H9,11,1,1,,,1,2,,1,,,,2,,,,,,"Glauser, Janece B",,,,, +ECS,2390,0W1,,21,13,19,10,3,4,2,1,,1,1,4,,,,,,"Ryan, Christopher J",,,,, +ECS,2390,0W2,,21,30,10,6,3,1,2,4,1,,,2,,,,,,"Ryan, Christopher J",,,,, +ECS,2390,0W3,4,25,24,8,6,6,4,,,,,,3,,,,,,"Ryan, Christopher J",,,,, +ECS,2390,0W4,7,30,25,8,3,1,2,1,2,,,,1,,,,,,"Scally, Deborah A",,,,, +ECS,2390,0W5,,7,5,3,1,,,3,,,,,,,,,,,"Schlobohm, Maribeth L",,,,, +ECS,2390,0W6,8,8,3,,,,,,,,,,,,,,,,"Schlobohm, Maribeth L",,,,, +ECS,2390,0W7,3,5,3,3,2,2,1,,,,,,,,,,,,"Schlobohm, Maribeth L",,,,, +ECS,2390,501,4,10,2,,3,,,,,,,,,,,,,,"Scally, Deborah A",,,,, +ECS,2390,502,5,11,1,,1,,,,,,,,1,,,,,,"Scally, Deborah A",,,,, +ECS,2390,503,,14,,1,2,,,2,,,,,,,,,,,"Scally, Deborah A",,,,, +ECS,2390,504,,11,3,,2,,1,1,,,,,,,,,,,"Scally, Deborah A",,,,, +ECS,2390,505,,3,3,4,3,2,2,,,,,2,,,,,,,"Moore, Lindsay E",,,,, +ECS,2390,506,,4,,2,3,4,1,2,1,,,,1,,,,1,,"Moore, Lindsay E",,,,, +ECS,2390,HN1,13,4,1,,1,,,,,,,,,,,,,,"King, Carie S",,,,, +ECS,4392,001,,10,,,,,,,,,,,,,,,,,"Summers, Joshua D",,,,, +ECSC,4V78,001,,,,,,,,,,,,,,19,,,,,"Stewart, Mary Ann C",,,,, +ECSC,5177,001,,,,,,,,,,,,,,,,,,53,"Stewart, Mary Ann C",,,,, +ECSC,5179,001,,,,,,,,,,,,,,,,,,28,"Stewart, Mary Ann C",,,,, +ED,3314,001,3,4,5,2,,,1,,,,,,,,,,,,"Riddick, Danielle L",,,,, +ED,3314,501,9,2,3,,,,,,,,,,,,,,,,"Riddick, Danielle L",,,,, +ED,3315,0W1,,12,4,,2,,,,,,,,,,,,,,"Leek, Patricia A",,,,, +ED,3315,0W2,,7,3,,2,,,,,,,,,,,,,,"Leek, Patricia A",,,,, +ED,3339,0H1,,13,2,2,3,2,,1,1,1,,,,,,,,,"McNeel, Michele E",,,,, +ED,3340,501,7,9,3,2,1,1,1,,,,,,,,,,,,"Le, Brenda",,,,, +ED,3342,5H1,3,4,3,3,1,,,,,,,,1,,,,,,"Ashmore, Barbara A",,,,, +ED,3345,0W1,,11,4,3,1,2,1,1,,,,1,1,,,,,,"McNeel, Michele E",,,,, +ED,4301,0W1,5,3,2,1,1,,2,1,1,,,,1,,,,1,,"Simpson, Carrie M",,,,, +ED,4343,5H1,9,4,3,,,,,,,,,,,,,,,,"Hennessy, Emily T",,,,, +ED,4344,501,2,4,2,1,1,1,,,,,,,,,,,,,"Huisman, Ingrid",,,,, +ED,4351,001,15,6,6,2,,1,,,,,,,,,,,,,"Davis, Renee",,,,, +ED,4351,501,8,7,4,2,,,,1,,,,,,,,,,,"Davis, Renee",,,,, +ED,4352,001,,,2,6,5,7,2,,1,1,,,1,,,,,,"McNeel, Michele E",,,,, +ED,4353,501,10,4,,1,,,,,,,,,,,,,,,"Brooks, Lori",,,,, +ED,4357,001,,10,4,,,1,,,,,,,1,,,,,,"Leek, Patricia A",,,,, +ED,4361,501,7,3,2,,,,,,,,,,,,,,,,"Friedman, Meredith K",,,,, +ED,4363,001,,17,1,,2,,1,1,,,1,,1,,,,,,"Leek, Patricia A",,,,, +ED,4372,0W1,5,7,6,2,4,2,,1,,,,,,,,,,,"Christensen, Rhonda",,,,, +EE,1100,001,33,7,6,5,2,1,,,,,,,,,,,,,"Ahmed, Shaheen","Habibi Dehsheikhi, Mostafa","Eroglu, Omer",,, +EE,1100,002,29,13,3,4,3,,2,1,,,1,,4,,,,,,"Ahmed, Shaheen","Eroglu, Omer","Habibi Dehsheikhi, Mostafa",,, +EE,1202,001,11,13,15,6,10,5,4,4,2,1,,1,,,,,,,"Abulaiha, Haifa","Dhole, Sameer R","Nayemuzzaman, Sk",,, +EE,2301,001,1,5,,,2,,,3,1,,2,,1,,,,,,"Lee, Gil S","Neelapureddy, Uttam Reddy",,,, +EE,2301,002,,8,,1,,,2,3,,,2,,1,,,,,,"Fahimi, Babak","Rafiei, Vahid",,,, +EE,2301,003,3,8,3,,8,,4,3,,,,,2,,,,,,"Friedman, Joseph S","Qi, Tianxi",,,, +EE,2310,001,,11,4,6,2,4,2,3,2,,1,,1,,,,1,,"Abulaiha, Haifa","Brigner, Wesley H","Karanika, Athanasia","Dhole, Sameer R","Nayemuzzaman, Sk", +EE,2310,002,4,8,4,7,4,3,2,1,2,,4,,,,,,1,,"Abulaiha, Haifa","Karanika, Athanasia","Brigner, Wesley H","Dhole, Sameer R","Nayemuzzaman, Sk", +EE,3161,051,4,10,5,4,4,1,,,,,,,,,,,,,"Mezenner, Rabah","Islam, Farzana",,,, +EE,3161,091,,3,7,5,8,2,,,,,,1,2,,,,,,"Mezenner, Rabah","Islam, Farzana",,,, +EE,3201,001,5,17,3,1,,2,,,,,1,,,,,,1,,"Nikoubin Boroujeni, Tooraj","Jain, Dipali D","Abbasnia, Alma","Duraisamy Swamikannan, Lena",, +EE,3201,002,2,12,2,2,,,1,,,,1,,,,,,,,"Nikoubin Boroujeni, Tooraj","Jain, Dipali D","Abbasnia, Alma","Duraisamy Swamikannan, Lena",, +EE,3202,002,3,9,9,,4,,1,2,,,1,,,,,,,,"Overzet, Lawrence J","Tayeb Naimi, Shideh","Koech, Mercy C","Showrov, Md Shadman Sakib",, +EE,3202,003,,7,1,9,,1,,3,,,,,1,,,,,,"Kiasaleh, Kamran","Mahbub, Mohammed Nahiyan","Kazemikia, Danial","Showrov, Md Shadman Sakib",, +EE,3302,001,1,3,2,3,3,4,4,2,2,,,,8,,,,,,"Busso Recabarren, Carlos A","Mote, Pravin C",,,, +EE,3302,002,2,12,,4,8,6,4,2,,,,,2,,,,,,"Fumagalli, Andrea","Rahim, Muhammad Ridwanur",,,, +EE,3310,001,,9,,,7,,,1,,,2,,,,,,1,,"Dutta, Sourav","Parvez, Mohammad Salman",,,, +EE,3310,002,,5,9,5,5,3,2,4,,,,,3,,,,,,"Pourkamali Anaraki, Siavash","Daneshnazar, Milad",,,, +EE,3311,001,1,5,,2,4,4,,2,2,,,,1,,,,,,"Lee, Gil S","Neelapureddy, Uttam Reddy",,,, +EE,3311,002,,5,4,7,3,2,3,1,4,1,,,4,,,,,,Kenneth K,"Sosa Portillo, Walter E",,,, +EE,3320,001,4,2,4,2,2,5,2,,1,,,,,,,,1,,"Pedram, Hossein","Kamalzadeh, Moojan",,,, +EE,3320,002,3,17,2,,2,,4,,2,,,,,,,,,,"Nikoubin Boroujeni, Tooraj","Kumar, Hiranya Garbha",,,, +EE,3320,003,5,3,2,1,1,,2,,3,1,1,5,2,,,,,,"Nourani, Mehrdad","Hashemi Esmaeilabad, Seyed Saeed",,,, +EE,4201,001,,17,,,,,,,,,,,1,,,,,,"Tamil, Lakshman S",,,,, +EE,4202,001,,16,,,,,,,,,2,,,,,,1,,"Henderson, Rashaunda M","Saha, Nabanita",,,, +EE,4301,001,1,7,1,3,8,2,1,1,,,,,1,,,,1,,"Heins, Matthew S","Jones, Colby W",,,, +EE,4301,002,2,10,3,2,5,6,3,1,1,,1,,1,,,,1,,"Heins, Matthew S","Jones, Colby W",,,, +EE,4304,001,,3,,2,1,2,,,1,1,,,,,,,1,,"Makris, Georgios","Kontarinis, Apostolos",,,, +EE,4304,501,,11,2,2,2,1,,,,,,,1,,,,1,,"Shamsi, Kaveh","Kontarinis, Apostolos",,,, +EE,4310,001,1,8,5,3,8,6,9,6,7,1,,,4,,,,,,"Abbas, Waseem","Yao, Yifan",,,, +EE,4330,001,7,14,12,7,2,1,,,1,,,,,,,,,,"Young, Chadwin D","Parvez, Mohammad Salman",,,, +EE,4340,001,2,10,5,1,10,6,1,,2,,,,1,,,,4,,"Ma, Dongsheng","Ghosh, Prosenjit Kumar",,,, +EE,4361,001,2,1,1,1,2,2,1,2,,,,,2,,,,4,,"Panahi, Issa M","Zahedi Moghaddam, Javad",,,, +EE,4363,001,6,10,8,7,7,7,5,,2,1,,,2,,,,9,,"Gardner, Matthew","Khan, Salek A",,,, +EE,4365,001,,7,7,9,9,2,3,,1,,,,,,,,,,"Saquib, Mohammad","Qazi, Srijeet S",,,, +EE,4368,001,1,8,3,1,3,2,3,1,1,,1,,2,,,,1,,"Lehmann, Randall E","Lin, Jia-Cong",,,, +EE,4370,001,4,14,3,3,5,2,,1,,,,,2,,,,2,,"Swartz, William P","Ezechukwu, Dismas N","Delaram, Zeinab",,, +EE,4370,002,6,3,6,,2,3,2,1,,,,,,,,,1,,"Pedram, Hossein","Delaram, Zeinab",,,, +EE,4388,001,4,21,,,,,,,,,,,,,,,,,"Tacca, Marco",,,,, +EE,4388,002,2,12,,,,1,,,,,,,,,,,,,"Tacca, Marco",,,,, +EE,4388,005,,12,1,,,2,,1,,,,,,,,,,,"Skinner, Neal G",,,,, +EE,4389,001,,20,8,2,,,,,,,,,,,,,,,"Tacca, Marco",,,,, +EE,4391,001,,7,,1,4,1,2,1,1,,,,,,,,,,"Overzet, Lawrence J","Tayeb Naimi, Shideh","Tayab, Sahanah",,, +EECT,6325,501,,10,10,5,3,3,,1,,,,,,,,,,,"Sechen, Carl M","Feng, Jinkun","Wick, Lucas M",,, +EECT,6326,001,,9,13,3,,,,,,,,,1,,,,,,"Liu, Jin","Shen, Shilong",,,, +EECT,6378,001,,5,6,1,,,,,,,,,,,,,,,"Lee, Hoi","Yao, Yifan",,,, +EEDG,5325,501,,26,,,1,,,,,,,,,,,,1,,"Swartz, William P","Qazi, Srijeet S",,,, +EEDG,6301,001,,11,1,1,2,1,,3,,,,,1,,,,,,"Swartz, William P","Guo, Bin",,,, +EEDG,6302,001,,6,2,,2,,,,,,,,,,,,,,"Nikoubin Boroujeni, Tooraj","Hashemi Esmaeilabad, Seyed Saeed",,,, +EEDG,6304,001,,3,4,1,2,,,,,,,,,,,,,,"Pedram, Hossein","Delaram, Zeinab","Daneshnazar, Milad",,, +EEDG,6370,001,,9,10,2,,,,,,,,,,,,,,,"Carrion Schaefer, Benjamin",,,,, +EEGR,6316,002,,8,5,3,,1,,,,,,,,,,,,,"Heins, Matthew S","Abedin Khan, Mushfiqul",,,, +EEGR,8V70,011,,,,,,,,,,,,,,,,,,10,"Hansen, John H",,,,, +EEGR,8V70,021,,,,,,,,,,,,,,,,,,12,"Fahimi, Babak",,,,, +EEGR,8V70,191,,,,,,,,,,,,,,,,,,12,"Ghassemi, Mona",,,,, +EEMF,6322,001,,4,6,3,2,,,,,,,,,,,,,,"Pourkamali Anaraki, Siavash","Tayab, Sahanah",,,, +EEPE,6354,001,,20,3,4,,1,,,,,,,1,,,,,,"Akin, Bilal","Jena, Sritam","C N, Muhammed Ajmal",,, +EERF,6311,001,,5,1,3,3,1,,,,,,,1,,,,2,,"Saad, Ricardo E","Sah, Pallav Kumar",,,, +EERF,6394,001,,12,1,2,,,1,,,,,,,,,,,,"Mahbub, Ifana","Patwary, Adnan B",,,, +EERF,6395,001,,7,3,,1,,,,,,,,,,,,,,"Lehmann, Randall E",,,,, +EERF,6396,001,,8,1,1,,,,,,,,,,,,,,,"Lehmann, Randall E","Lin, Jia-Cong",,,, +EESC,6340,001,,8,4,5,,,,,,,,,,,,,,,"Fumagalli, Andrea",,,,, +EESC,6349,001,,,3,4,,1,1,,,,,,,,,,2,,"Minn, Hlaing","Uddin, Mohammed Belal",,,, +EESC,6360,501,,4,2,3,1,,,,,,,,1,,,,1,,"Panahi, Issa M","Zahedi Moghaddam, Javad",,,, +ENGR,2300,001,3,17,3,,6,3,8,4,,,,,,,,,,,"Ali, Mohammed Z","Tasnim, Nafisa Zarrin","Guo, Bin",,, +ENGR,2300,002,5,7,7,4,3,1,2,1,4,2,2,,2,,,,2,,"Al-Dhahir, Naofal M","Imam, Omar Tawhid",,,, +ENGR,2300,003,,1,5,3,11,5,4,5,4,,,,4,,,,1,,"Mezenner, Rabah","Rana, Lila",,,, +ENGR,2300,004,,2,6,6,13,7,8,6,2,2,,,3,,,,,,"Mezenner, Rabah","Abedin Khan, Mushfiqul","Mote, Pravin C",,, +ENGR,2300,005,2,14,1,2,8,,1,7,2,,4,,,,,,,,"Lee, Jung S","Podder, Prajoy",,,, +ENGR,3300,001,1,15,,1,11,,1,8,4,,2,,1,,,,,,"Lee, Jung S","Xie, Hao",,,, +ENGR,3300,002,,8,,,9,,1,5,5,,15,,,,,,1,,"Lee, Jung S","Qi, Tianxi","Gomathinayakam Latha, Aparaajitha",,, +ENGR,3300,003,2,1,4,2,1,4,1,2,3,,2,,5,,,,1,,"Shihab, Rafiul Hossain","Sezer, Mustafa Murat",,,, +ENGR,3300,005,16,2,3,3,2,3,1,1,6,,2,3,2,,,,,,"Saad, Ricardo E","Murshed, Abu H","Uddin, Mohammed Belal",,, +ENGR,3300,007,,9,6,2,5,4,3,5,3,1,,,2,,,,3,,"Gelb, Lev D","Smith, Connor V",,,, +ENGR,3300,008,1,8,4,2,2,3,5,3,2,,5,4,2,,,,3,,"Thamban, P L Stephan","Rafiei, Vahid",,,, +ENGR,3341,001,9,3,6,4,3,6,2,1,3,,1,5,,,,,1,,"Fonseka, John P","Hewawaduge, Dhanushki B",,,, +ENGR,3341,002,1,18,2,2,9,2,1,4,,,,,,,,,3,,"Ali, Mohammed Z","Rahman, Md Yekra",,,, +ENGR,3341,003,7,7,3,7,4,3,2,1,1,,,5,,,,,4,,"Fonseka, John P","Hewawaduge, Dhanushki B",,,, +ENGR,3341,004,1,19,,2,8,3,3,15,1,,,1,1,,,,1,,"Ali, Mohammed Z","Showrov, Md Shadman Sakib",,,, +ENGR,3341,005,4,5,6,3,3,3,2,3,1,,1,,9,,,,2,,"Nosratinia, Aria","Zahedi Moghaddam, Javad",,,, +ENGR,3341,006,3,15,2,7,4,1,1,7,,,,,1,,,,2,,"Ali, Mohammed Z","Rahman, Md Yekra",,,, +ENGY,3340,001,,11,2,2,2,,,,,,,,,,,,,,"Sibley, Daniel C","Thota, Saranya",,,, +ENGY,6330,501,,30,16,,,,,,,,,,,,,,,,"Sibley, Daniel C",,,,, +ENTP,3301,001,,1,3,3,15,12,4,10,,,,,,,,,,,"Kimzey, Jackie R",,,,, +ENTP,3301,002,,,7,,12,7,1,7,4,,,,,,,,,,"Kimzey, Jackie R",,,,, +ENTP,3301,004,1,3,7,2,7,7,6,2,8,1,,,,,,,,,"Kim, Sangyun","Yan, Xinyu",,,, +ENTP,3301,005,,4,3,7,3,3,4,2,3,1,2,,1,,,,1,,"Kim, Sangyun","Yan, Xinyu",,,, +ENTP,3301,006,4,9,16,13,9,3,1,,,,,,1,,,,2,,"Nichols, Paul M",,,,, +ENTP,3301,0W1,,18,,,29,,,1,,,,,,,,,1,,"Pedigo, Madison F",,,,, +ENTP,3360,002,,,1,1,3,1,,1,2,,1,,,,,,,,"Baranchuk, Nina","Liu, Jiabin",,,, +ENTP,4311,001,,7,5,2,1,,,,1,,,,1,,,,1,,"Sharma, Neeru M",,,,, +ENTP,4330,001,,,3,2,6,,3,3,,,,,,,,,,,"Buchwald, Jon R",,,,, +ENTP,4340,501,,3,26,16,12,7,4,,3,,,,,,,,3,,"Wright, Robert G","Fickel, Mary","Chelakalapally, Srikesh K",,, +ENTP,4350,001,,23,,,10,,,4,,,,,,,,,,,"Marcus-Rehtmeyer, Carol","Shekhar, Lokesh",,,, +ENTP,4360,001,,10,15,7,2,2,1,,2,,,,,,,,,,"Choi, Emily","Sundararajan, Gowrishankar",,,, +ENTP,4398,001,1,3,,2,3,4,,,,,,,,,,,,,"Chambers, Bryan D",,,,, +ENTP,6370,0W1,,4,7,4,16,8,,1,,,,,,,,,,,"Kimzey, Jackie R","Huang, Zhangfan",,,, +ENTP,6370,501,,9,5,2,,3,,1,,,,,,,,,,,"Nichols, Paul M",,,,, +ENTP,6375,001,,4,6,9,1,1,,,,,,,,,,,,,"Shermon, Anavir","Huang, Zhangfan",,,, +ENTP,6375,0W1,,3,8,3,8,,2,2,,,,,2,,,,1,,"Shah, Rajiv R","Hanchinal, Aditya A",,,, +ENTP,6375,501,,3,4,3,,,,,,,,,,,,,,,"Shermon, Anavir","Huang, Zhangfan",,,, +ENTP,6375,502,,2,5,2,3,,2,,,,,,,,,,,,"Shermon, Anavir","Huang, Zhangfan",,,, +ENTP,6380,501,,3,6,6,1,2,1,1,,,,,,,,,,,"Nichols, Paul M",,,,, +ENTP,6388,501,,1,1,7,3,,,,,,,,,,,,,,"Shah, Rajiv R","Kumar, Sai",,,, +ENVR,2302,001,3,6,9,3,2,2,,,1,,,,2,,,,,,"Drouillard, Matthew J","Rahman, Mahbubur",,,, +ENVR,2302,0W1,23,10,4,4,3,2,3,4,2,,,1,1,,,,1,,"Ahmed, Md. Nakir","Osondu, Stanley E",,,, +EPCS,2200,001,6,26,11,5,3,4,,,2,,1,,,,,,,,"Aird, Jeanie A",,,,, +EPCS,2200,002,13,17,15,4,5,3,,,1,,,,,,,,2,,"Aird, Jeanie A",,,,, +EPCS,3200,001,5,6,1,1,1,1,,,,,,,,,,,,,"Aird, Jeanie A",,,,, +EPCS,3200,002,3,11,1,2,,,,1,,,,,,,,,1,,"Aird, Jeanie A",,,,, +EPPS,1110,001,38,6,,4,4,1,2,1,1,1,1,2,2,,,,,,"Sharman, Whitney",,,,, +EPPS,1110,002,42,6,9,3,2,1,1,,,,1,,3,,,,,,"Gutierrez, Alejandra",,,,, +EPPS,1110,0L1,13,1,1,2,1,,,1,,,,1,3,,,,,,"Rollerson, Sheila D",,,,, +EPPS,2301,001,3,6,5,4,6,3,2,2,1,,,,2,,,,,,"Peressotti, Giuseppe",,,,, +EPPS,2301,002,9,8,10,6,7,4,1,3,2,2,,,,,,,,,"Dao, Minh T",,,,, +EPPS,2301,0W1,10,4,6,5,4,11,2,6,6,4,,1,8,,1,,1,,"Kosiewicz, Holly","Sarker, Poulami",,,, +EPPS,2302,001,5,4,4,,2,,1,,,,,,1,,,,1,,"Adeuga, Adewole M",,,,, +EPPS,2302,002,18,11,1,,6,1,1,1,,,,,,,,,,,"Bray, Timothy M","Jeong, Dohyo",,,, +EPPS,2307,001,,,2,2,2,2,1,3,1,,2,,1,,,,,,"Rahman, Muhammad T","Stout, Brennan J",,,, +EPPS,6302,001,,10,10,1,7,,,,,,,,,,,,,,"Ho, Ka-Yiu","Chan, Chun Man",,,, +EPPS,6313,001,,5,8,5,2,1,,,,,,,,,,,1,,"Zhang, Pengfei","Zhao, Xingyuan",,,, +EPPS,6313,501,,19,3,1,4,1,,1,,,,,1,,,,,,"Bray, Timothy M",,,,, +EPPS,6313,502,,7,2,4,1,,,,,,,,,,1,,,,"Gorina, Eugenia","Lee, Moonsoo",,,, +EPPS,6316,501,,2,2,,3,1,1,2,,,,,,,,,1,,"Tiefelsdorf, Michael R","Dong, Fangchao",,,, +EPPS,6317,501,,6,3,,1,,,,,,,,,,,,,,"Chastain, Bryan J","Lyu, Haitao",,,, +EPPS,6356,501,,26,8,6,2,1,,,,,,,,,,,,,"Ho, Ka-Yiu","Zhao, Xingyuan",,,, +EPPS,7313,501,,6,3,5,3,1,,,,,,,,,,,1,,"Kim, Dohyeong","Hahm, Kristine J",,,, +EPPS,7370,001,,5,6,2,1,,,,,,,,,,,,,,"Brandt, Patrick T",,,,, +FILM,1303,001,2,11,13,5,3,1,,,1,,,,1,,,,,,"Okwulogu, Maureen",,,,, +FILM,1303,002,28,4,3,1,1,,,,,,1,1,1,,,,,,"Martinez Ochoa, Angelica M",,,,, +FILM,1303,003,2,2,4,3,6,,,,,1,3,,4,,,,,,"Berger, Hanno",,,,, +FILM,1303,004,17,8,4,4,2,,,,2,,,1,1,,,,1,,"Martinez Ochoa, Angelica M",,,,, +FILM,2332,001,14,12,5,1,1,2,2,1,,1,,,,,,,,,"Cooper, Dalton W",,,,, +FILM,2332,002,11,17,3,,3,1,,1,2,,,,,,,,2,,"Shows, Gregory S",,,,, +FILM,2332,003,15,16,6,,1,,,1,,,,,,,,,,,"Mahan, Mazyar",,,,, +FILM,2332,004,,7,14,5,7,2,2,,,,1,2,,,,,,,"Ivey, Tinamarie",,,,, +FILM,2332,0W1,1,14,15,5,1,1,,1,2,,,,3,,,,1,,"Miles, Caitlin M","Faali, Amine","Hay, Celia",,, +FILM,2332,0W2,2,11,15,6,5,2,,3,,1,,1,,,,,1,,"Miles, Caitlin M","Faali, Amine","Hay, Celia",,, +FILM,2332,HN1,5,8,8,4,,,,,,,,,,,,,,,"McLean, Adrienne L",,,,, +FILM,3325,001,10,12,6,3,1,1,1,,,,,,1,,,,,,"Wellborn, Brecken H",,,,, +FILM,3342,001,,3,12,7,2,1,,1,,,,,3,,,,,,"Imaoka, Laura B",,,,, +FIN,3300,001,5,17,13,6,7,5,4,2,,,,,,,,,,,"Hu, Jiawei",,,,, +FIN,3305,001,1,3,1,1,1,3,6,5,4,2,3,1,1,,,,2,,"Guttery, Randall","Thota, Saranya",,,, +FIN,3305,002,2,6,7,,4,3,2,1,3,,,1,2,,,,,,"Lowrance, Daniel S",,,,, +FIN,3305,003,2,7,4,5,4,3,2,1,4,3,,2,,,,,,,"Guttery, Randall","Thota, Saranya",,,, +FIN,3320,001,4,9,6,8,4,9,6,6,1,,1,,2,,,,3,,"Park, Taeyoung",,,,, +FIN,3320,002,7,9,4,2,11,15,,11,2,,1,,,,,,1,,"Xiao, Wenjing","Jarugu, Rajeshwar",,,, +FIN,3320,003,4,14,9,8,11,3,,9,3,,,,,,,,2,,"Xiao, Wenjing","Jarugu, Rajeshwar",,,, +FIN,3320,004,4,2,5,2,5,6,3,1,7,4,3,6,4,,,,6,,"Gurun, Ayfer","Shah, Shubham Ajaykumar",,,, +FIN,3320,005,,10,13,9,9,4,12,1,2,,,,,,,,3,,"Xiao, Chong","Sadeghi, Ali",,,, +FIN,3320,006,,9,20,7,12,5,4,3,1,,,,,,,,2,,"Xiao, Chong","Sadeghi, Ali",,,, +FIN,3320,007,3,2,5,2,5,6,7,5,2,2,4,6,3,,,,5,,"Gurun, Ayfer","Shah, Shubham Ajaykumar",,,, +FIN,3320,008,1,9,10,6,8,9,10,4,,,,,,,,,1,,"Harit, Tuhin",,,,, +FIN,3320,009,14,4,6,9,2,5,5,7,2,2,,,2,,,,2,,"Kurucak, Abdurrahman",,,,, +FIN,3320,010,15,3,7,2,4,6,1,8,7,3,,,3,,,,1,,"Kaur, Dupinderjeet","Rane, Manas Mukesh",,,, +FIN,3320,012,,6,11,7,8,5,2,8,4,2,1,,1,,,,4,,"El-Ashmawi, Amal H",,,,, +FIN,3320,013,,8,2,5,6,8,3,5,3,1,4,3,1,,,,9,,"El-Ashmawi, Amal H",,,,, +FIN,3320,014,3,3,4,12,8,4,11,4,,3,3,,1,,,,1,,"Bachani, Girish V",,,,, +FIN,3320,501,3,2,4,4,2,10,4,5,5,2,3,4,2,,,,2,,"Baranchuk, Nina","Liu, Jiabin",,,, +FIN,3340,501,3,6,5,18,30,3,6,,,,,,,,,,,,"Lewin, Peter",,,,, +FIN,3350,001,6,6,1,15,5,2,5,3,,,,,,,,,1,,"Rivera Mesias, Alejandro","Mei, Zhiming",,,, +FIN,3350,002,7,5,5,11,6,1,2,4,3,,,,1,,,,1,,"Rivera Mesias, Alejandro","Mei, Zhiming",,,, +FIN,3360,001,1,1,4,9,12,12,4,5,4,,1,,1,,,,,,"Baranchuk, Nina","Liu, Jiabin",,,, +FIN,3360,002,,3,1,4,4,4,8,3,3,,2,1,1,,,,,,"Baranchuk, Nina","Liu, Jiabin",,,, +FIN,3365,501,1,4,3,3,3,,1,,,,1,,,,,,,,"Zale, Daniel B",,,,, +FIN,3370,001,1,8,7,8,3,3,3,1,,,1,1,,,,,,,"Ravindran, Kannoo","Perum, Mounika",,,, +FIN,3370,002,4,9,16,14,4,1,1,3,,1,,,,,,,,,"Haynes, Steven","Nguyen, Dung T",,,, +FIN,3380,001,,4,8,3,3,9,13,2,6,6,1,4,2,,,,1,,"Gurun, Ayfer","Shah, Shubham Ajaykumar",,,, +FIN,3390,001,12,7,6,6,7,3,5,4,,4,,,5,,,,1,,"Kaur, Dupinderjeet","Rane, Manas Mukesh",,,, +FIN,3390,004,15,7,6,7,2,4,3,4,5,3,,,1,,,,1,,"Kaur, Dupinderjeet","Rane, Manas Mukesh",,,, +FIN,3390,005,3,8,10,7,8,8,,,,,,,1,,,,,,"Pang, Hao","Ghorbani, Elham",,,, +FIN,3390,006,3,8,11,7,8,8,,,,,,,1,,,,1,,"Pang, Hao","Ghorbani, Elham",,,, +FIN,3395,501,8,11,4,6,4,5,2,2,,2,,1,,,,,2,,"Smith, Matthew J",,,,, +FIN,4080,001,,,,,,,,,,,,,,10,,,,,"Nishi, Hirofumi",,,,, +FIN,4080,091,,,,,,,,,,,,,,28,,,,,"Nishi, Hirofumi",,,,, +FIN,4300,001,13,11,9,3,8,1,2,1,,,,,,,,,,,"Hamzeh, Alireza",,,,, +FIN,4300,002,,6,,3,3,,,2,,,2,3,,,,,2,,"Wei, Kelsey D","Zhong, Yaxin",,,, +FIN,4300,003,,18,8,11,9,,1,,,,,,,,,,,,"Nguyen, Nam H",,,,, +FIN,4300,004,,2,3,3,3,3,,4,3,3,2,2,1,,,,3,,"Wei, Kelsey D","Zhong, Yaxin",,,, +FIN,4303,001,2,4,4,9,10,3,2,1,1,,1,,1,,,,1,,"Ballew, Gregory","Shah, Shubham Ajaykumar",,,, +FIN,4307,001,,15,1,5,9,5,,3,2,,,,1,,,,4,,"Xiao, Wenjing","Jarugu, Rajeshwar",,,, +FIN,4310,001,3,6,10,12,7,3,2,1,,,,,,,,,1,,"Meier, Jean-Marie A","Wu, Jie",,,, +FIN,4310,002,5,5,9,10,8,5,2,1,,1,,,,,,,2,,"Meier, Jean-Marie A","Wu, Jie",,,, +FIN,4310,003,2,2,8,5,11,9,2,4,3,1,,,1,,,,,,"Anderson, Frank W",,,,, +FIN,4310,501,3,7,2,6,7,3,2,2,2,,2,,2,,,,1,,"Anderson, Frank W",,,,, +FIN,4321,5H1,,2,,,5,,,6,,,,,,,,,,,"Hedgecock, Blake",,,,, +FIN,4331,001,8,1,3,1,3,3,2,2,2,,,,,,,,,,"Kaplan, Larry S",,,,, +FIN,4333,001,,1,13,3,,1,,,,,,,,,,,1,,"Haynes, Steven","Nguyen, Dung T",,,, +FIN,4345,001,,29,12,4,5,1,,1,1,,,,,,,,2,,"Ma, Liping","Fan, Zijia",,,, +FIN,4351,002,,6,11,8,4,3,,1,,,,,,,,,,,"Haynes, Steven","Nguyen, Dung T",,,, +FIN,4380,001,,8,,4,4,,,,,,,,,,,,,,"Rebello, Michael J",,,,, +FIN,4395,001,,1,2,3,3,3,3,4,2,,,,,,,,1,,"Kieschnick, Robert L",,,,, +FIN,4395,002,,1,2,3,2,4,3,,1,,,,1,,,,2,,"Kieschnick, Robert L",,,,, +FIN,4V80,093,,,,,,,,,,,,,,12,,,,,"Nishi, Hirofumi",,,,, +FIN,6253,X01,,12,2,2,2,,1,,,,,,,,,,,,"Reichert, Carolyn A",,,,, +FIN,6301,001,,6,5,6,8,5,4,1,,,,,2,,,,2,,"Xu, Yexiao","Chai, Maoyuan",,,, +FIN,6301,002,,23,8,2,6,,3,,,,,,4,,,,1,,"Nishi, Hirofumi","Chakravarthula, Komal",,,, +FIN,6301,0W1,,17,5,3,5,6,7,6,,,,,6,,,,2,,"Nishi, Hirofumi","Chakravarthula, Komal",,,, +FIN,6301,GW1,,17,1,1,4,2,,1,,,,,,,,,1,,"Reichert, Carolyn A",,,,, +FIN,6301,MBC,,15,5,4,16,,2,3,,,,,,,,,,,"Reichert, Carolyn A",,,,, +FIN,6307,0W1,,8,8,3,5,1,1,3,,,,,,,,,1,,"Ma, Liping","Fan, Zijia",,,, +FIN,6307,501,,10,6,5,7,4,2,2,,,,,,,,,1,,"Ma, Liping","Fan, Zijia",,,, +FIN,6308,0W1,,14,22,5,3,2,2,1,,,,,,,,,,,"Lewin, Peter",,,,, +FIN,6310,501,,4,10,8,1,3,,1,,,,,,,,,,,"Zhang, Huibing","Fan, Lin",,,, +FIN,6318,001,,10,5,11,7,5,3,1,,,,,2,,,,,,"Xu, Yexiao","Chai, Maoyuan",,,, +FIN,6318,002,,17,5,11,6,7,1,1,,,,,1,,,,1,,"Xu, Yexiao","Chai, Maoyuan",,,, +FIN,6321,0W1,,35,4,1,,,,,,,,,,,,,,,"Lynch, Julie","Chakravarthula, Komal",,,, +FIN,6325,001,,6,3,4,3,1,1,,,,,,,,,,,,"Rivera Mesias, Alejandro","Mei, Zhiming",,,, +FIN,6352,501,,3,4,6,1,,,,,,,,1,,,,2,,"Von Drathen, Christian","Bhave, Isha S",,,, +FIN,6356,501,,3,1,3,3,,,,,,,,,,,,,,"Von Drathen, Christian",,,,, +FIN,6360,001,,11,1,1,3,1,,,,,,,,,,,,,"Kaur, Dupinderjeet","Rane, Manas Mukesh",,,, +FIN,6360,0W1,,8,10,7,5,,,1,,,,,,,,,1,,"Zhao, Feng","Fan, Lin",,,, +FIN,6362,001,,9,21,7,,,,,,,,,,,,,1,,"Ravindran, Kannoo","Bhave, Isha S",,,, +FIN,6V98,001,,,,,,,,,,,,,,,,,,18,"Reichert, Carolyn A",,,,, +FREN,1311,001,3,,4,2,,1,1,,,,,1,,,,,,,"Bichara, Mary A",,,,, +FTEC,6302,F01,,7,6,,,,,,,,,,,,,,1,,"Gurun, Umit G",,,,, +FTEC,6310,F01,,1,8,4,,,,,,,,,,,,,,,"Scott, James",,,,, +FTEC,6312,F01,,3,8,2,1,2,,,,,,,,,,,,,"Kieschnick, Robert L",,,,, +FTEC,6313,F01,,14,,1,,,,,,,,,,,,,,,"Song, Liugen",,,,, +FTEC,6320,F01,,8,,,4,1,,,,,,,,,,,,,"Ma, Liping",,,,, +FTEC,6V99,F01,,2,15,,,,,,,,,,,,,,,,"Haynes, Steven",,,,, +FTEC,6V99,F03,,,14,,,,,,,,,,,,,,,,"Kieschnick, Robert L",,,,, +FTEC,6V99,F04,,13,,,,,,,,,,,,,,,1,,"Zemoodeh, Amir",,,,, +GEOG,2302,001,2,3,5,1,4,1,,,,1,,,,,,,,,"Drouillard, Matthew J","Rahman, Mahbubur",,,, +GEOG,2302,0W1,16,8,7,,5,3,1,2,,1,5,1,2,,,,,,"Ahmed, Md. Nakir","Osondu, Stanley E",,,, +GEOG,2303,001,8,11,6,,4,1,,7,,,,,,,,,,,"Conway, Crystal M",,,,, +GEOG,2303,0W1,5,20,10,8,7,3,,1,1,,2,,2,,,,1,,"Rahman, Muhammad T","Davenport, Miranda J",,,, +GEOG,3331,001,4,,2,,5,1,1,1,,1,1,,,,,,,,"Rahman, Muhammad T","Sonet, M Shahriar",,,, +GEOG,3357,001,5,2,14,4,4,1,2,,,,,,1,,,,1,,"Tiefelsdorf, Michael R","Aboagye, Nicholas",,,, +GEOG,3377,001,1,1,1,2,3,1,1,,,,,,,,,,,,"Dzogolo, Moise M",,,,, +GEOS,1103,102,,1,1,1,4,1,2,,1,,,,1,,,,,,"Griffin, William R","Adeyemi, Oluwaseun",,,, +GEOS,1303,001,22,11,5,3,1,1,,,,,,,,,,,,,"Griffin, William R",,,,, +GEOS,1303,002,3,2,,1,1,,1,1,2,,,,,,,,,,"Mueller, Nicholas J",,,,, +GEOS,1303,0W1,63,79,36,10,21,13,4,10,7,3,1,3,14,,,,4,,"Pujana, Ignacio",,,,, +GEOS,2302,001,1,3,5,,1,,2,,,,,,1,,,,,,"Drouillard, Matthew J","Rahman, Mahbubur",,,, +GEOS,2302,0W1,8,3,3,1,4,,2,,1,1,2,1,3,,,,1,,"Ahmed, Md. Nakir","Osondu, Stanley E",,,, +GEOS,2307,001,,1,4,,3,2,,,,,,,,,,,,,"Rahman, Muhammad T","Stout, Brennan J",,,, +GEOS,2310,0W1,3,9,2,4,5,3,2,3,3,,3,1,1,,,,2,,"Brikowski, Thomas H","Karimi, Fatemeh",,,, +GEOS,2321,0W1,,5,2,,6,1,1,,1,,1,,,,,,,,"Stern, Robert J","Pujana, Ignacio","Abayomi, Ayodele A",,, +GEOS,2340,HH1,1,6,3,1,,,,,,,,,,,,,,,"Griffin, William R","Stern, Robert J","Crowley, Clinton W",,, +GEOS,3421,001,,6,7,1,1,,2,,1,,1,,,,,,,,"Sickmann, Zachary","Mone, Arajoo J",,,, +GEOS,3464,001,,3,3,5,5,2,1,2,,,,,,,,,,,"Griffin, William R","Willis, Siloa B","Abayomi, Ayodele A",,, +GEOS,4320,001,6,6,2,1,,1,,,,,,,1,,,,,,"Ferguson, John F",,,,, +GEOS,4430,001,2,4,,1,3,,,3,,,1,,,,,,1,,"Brikowski, Thomas H","Karimi, Fatemeh",,,, +GEOS,5315,001,,11,,,,,,,,,,,,,,,,,"Waite, Lowell",,,,, +GEOS,5387,001,,4,4,1,,1,,,,,,,,,,,,,"Lumley, David E","Tamadoni, Amin",,,, +GISC,2307,001,3,3,4,3,,,,,1,,,,1,,,,1,,"Rahman, Muhammad T","Stout, Brennan J",,,, +GISC,4317,501,,3,1,2,1,,2,,1,,,,,,,,1,,"Chastain, Bryan J","Lyu, Haitao",,,, +GISC,4384,001,8,6,3,1,3,1,,,1,,,,,,,,,,"Rahman, Muhammad T","Sonet, M Shahriar","Davenport, Miranda J",,, +GISC,6301,001,,12,3,3,2,2,,,,,,,,,1,,,,"Tiefelsdorf, Michael R","Chowdhury, Yeamin Faria",,,, +GISC,6325,001,,14,1,,1,,,,,,,,,,,,,,"Qiu, Fang","Chen, Hao",,,, +GISC,6363,001,,9,1,,,,,,,,,,,,,,,,"Qiu, Fang","Gamarra Pacheco, Jose A",,,, +GISC,6381,501,,4,2,1,,4,1,,,,,,,,,,,,"Chun, Yongwan","Kulsum, Umme","Kim, Dongeun",,, +GOVT,2305,001,16,122,53,39,28,4,1,3,,3,1,,4,,,,2,,"Medhi, Kashmiri","Mir Akhmadova, Musharraf","Singh, Avinash K",,, +GOVT,2305,002,21,54,20,25,7,1,1,2,1,,,1,3,,,,,,"Medhi, Kashmiri","Mir Akhmadova, Musharraf","Singh, Avinash K",,, +GOVT,2305,003,41,77,69,35,19,22,8,9,4,1,3,2,6,,,,1,,"Medhi, Kashmiri","Park, Yeon Soo","Clark, Amanda","Chang, Gary","Bi, Hanying", +GOVT,2305,004,14,113,18,8,11,4,1,2,,1,,,2,,,,,,"Park, Yeon Soo","Tao, Jing",,,, +GOVT,2305,005,25,6,4,7,,2,2,1,3,,,,1,,,,,,"Widner, Katie",,,,, +GOVT,2306,001,56,79,66,21,18,14,8,8,2,5,,1,10,,,,1,,"Lowry, Robert C","Clark, Amanda","Chang, Gary","Bi, Hanying",, +GOVT,2306,002,41,88,25,10,5,1,,2,1,,,,3,,,,1,,"Medhi, Kashmiri","Singh, Avinash K","Mir Akhmadova, Musharraf",,, +GOVT,2306,003,16,155,76,16,7,17,3,1,1,,,,3,,,,,,"Park, Yeon Soo","Tao, Jing",,,, +GOVT,2306,004,,213,68,6,5,2,,2,,,,,2,,,,,,"Elliott, Euel W","Hughes, Ethan",,,, +GOVT,2306,005,22,146,60,24,12,10,3,5,4,3,1,2,5,,,,,,"Park, Yeon Soo","Tao, Jing",,,, +GOVT,2306,006,,123,85,29,20,10,7,9,3,4,3,1,3,,,,1,,"Santoro, Lauren A","Islam, Maria",,,, +GOVT,2306,007,,126,46,8,4,2,,1,,2,1,1,1,,,,,,"Elliott, Euel W","Hughes, Ethan",,,, +GOVT,2306,HN1,4,9,3,5,,,,,,,,,,,,,1,,"Dow, Douglas C",,,,, +GOVT,2306,HN2,18,4,1,2,,,,,,,,,,,,,,,"Montgomery, Joshua P",,,,, +GOVT,2306,HN3,,14,7,,,1,,,,,,,1,,,,,,"Elliott, Euel W","Scotch, Richard K","Hughes, Ethan",,, +GOVT,2306,HN4,15,5,2,,1,,,,,,,,1,,1,,,,"Montgomery, Joshua P",,,,, +GOVT,2306,HN5,20,4,,,,,,1,,,,,,,,,,,"Montgomery, Joshua P",,,,, +GST,2300,001,,9,7,2,4,1,,,,,,,,,,,,,"Smith, Erin",,,,, +GST,3302,001,1,1,,6,1,1,,1,,,,,1,,,,,,"Jakobsson, Pia K",,,,, +HCS,6302,001,,,,,,,,,,,,,,,,,,32,"Stillman, Robert D",,,,, +HCS,6312,002,,7,2,1,3,3,,1,,,,,,,,,,,"Ackerman, Robert A","Foster, Sarah",,,, +HCS,6340,002,,9,5,2,2,,,,,,,,,,,,,,"Kroener, Sven",,,,, +HCS,6342,001,,24,,,2,,,1,,,,,,,,,,,"Rincon, Millie",,,,, +HCS,6350,001,,10,,1,,,,,,,,,,,,,,,"Tang, Alva",,,,, +HCS,7121,001,,,,,,,,,,,,,2,,,,,38,"Nguyen, Lena H",,,,, +HCS,7310,001,,10,,,,,,,,,,,,,,,,,"Abdi, Herve","Wu, Dennis",,,, +HCS,7326,001,,16,,,,,,,,,,,,,,,,,"LePrell, Colleen G",,,,, +HCS,7355,001,,13,3,1,,,,,,,,,,,,,,,"Warren, Stacie",,,,, +HDCD,6312,001,,12,,,,,,,,,,,,,,,,,"Timmons, Lisa N",,,,, +HDCD,6315,001,,9,,,1,,,,,,,,,,,,,,"Timmons, Lisa N",,,,, +HDCD,6319,001,,8,,,1,,1,,,,,,,,,,,,"Atchison, Kristin J",,,,, +HDCD,6V20,001,,,,,,,,,,,,,,,,,,11,"Baerwaldt, Natalie R",,,,, +HDCD,6V81,001,,7,7,,1,,,,,,,,,,,,,,"Cook, Jill B",,,,, +HIST,1301,001,21,116,32,10,29,7,,5,3,,3,,8,,,,4,,"Schlereth, Eric R","Cummings, Clayton","Gee, Taylor N","Lakhani, Brenda L","Seidl-Staley, Ash J", +HIST,1301,002,7,21,39,34,35,34,15,10,3,9,2,4,15,,,,6,,"Schulze, Jeffrey M","Bengaro, Sabro","Akhighu, Odegua M","Sadeghi, Maryam","Al Sayyedan, Mojtaba", +HIST,1301,003,12,84,33,11,30,9,7,17,,,,3,22,,,,6,,"Wright, Ben","Hill, Travis B","Rufino, Maria E","Vecchio, Anthony","Li, Ang", +HIST,1302,501,39,21,,2,1,,1,1,,1,2,,,,,,1,,"Pettengill, Ryan S","Kalkanli, Ogulcan",,,, +HIST,1302,HN1,3,5,8,,1,,,,,,,,1,,,,,,"Schulze, Jeffrey M",,,,, +HIST,2301,001,2,14,21,33,30,37,7,18,14,5,2,3,17,,,,16,,"Schulze, Jeffrey M","Turner, Joey A","Edwards, Jeffery G","Tijani, Kehinde O",, +HIST,2340,001,3,8,11,3,6,,1,1,,,,,,,,,,,"Admiral, Rosemary G",,,,, +HIST,2341,001,5,6,8,6,5,6,,2,2,2,,1,2,,,,2,,"Li, En","Wu, Xingyou",,,, +HIST,2360,501,8,16,17,13,9,,,,,,,,1,,,,2,,"Wilson, Michael L",,,,, +HIST,2370,0W1,8,8,17,6,2,1,,,,1,1,,2,,,,1,,"Pfister, Debra H",,,,, +HIST,2381,001,2,44,34,13,14,5,,1,1,1,,1,2,,,,,,"Ring, Natalie J","Leon Dubon, Saul V","Weirich, Kaitlyn A",,, +HIST,3301,001,,6,2,1,1,2,2,,,,,1,,,,,4,,"Farmer, J Michael",,,,, +HIST,3302,001,2,2,2,5,1,1,1,,,,,,,,,,,,"Jakobsson, Pia K",,,,, +HIST,3312,001,,4,1,4,5,3,2,2,1,,1,,2,,,,,,"Farmer, J Michael",,,,, +HIST,3319,001,2,11,7,3,1,1,,,,,,,,,2,,,,"Wilson, Michael L",,,,, +HIST,3350,001,6,5,1,2,4,,,,,,,1,2,,,,,,"Li, En",,,,, +HIST,3350,002,1,6,2,,,1,,,,,,,,,,,,,"Cuellar Cuellar, Paula S",,,,, +HIST,3368,001,1,2,1,4,2,4,1,1,2,,1,,,,,,,,"Schulze, Jeffrey M",,,,, +HIST,3390,001,6,7,5,,,,1,,,,,,5,,,,,,"Hill, Kimberly D",,,,, +HIST,3399,001,,18,1,,1,1,1,1,,,,,,,,,,,"Rankin, Monica A",,,,, +HIST,4342,001,3,4,4,4,,1,,,,,,,,,,,,,"Admiral, Rosemary G",,,,, +HIST,4359,001,,8,2,,3,,1,,,1,,,1,,,,2,,"Rankin, Monica A",,,,, +HIST,4388,501,10,2,1,1,,,,,,1,,,1,,,,,,"Pfister, Debra H",,,,, +HIST,4390,001,,5,2,1,2,,,,,,,,,,,,1,,"Wright, Ben",,,,, +HIST,6325,001,,7,5,1,,,,,,,,,,,,,1,,"Ring, Natalie J",,,,, +HIST,6325,002,,5,1,2,1,1,,,,,,,,,,,1,,"Hill, Kimberly D",,,,, +HIST,6387,001,,4,2,,1,1,,,,,,,1,,,,2,,"Wickberg, Daniel B",,,,, +HLTH,1301,0W1,29,8,1,1,1,,,,,,,,,,,,,,"Goudy, Leah S",,,,, +HLTH,1301,0W2,11,14,6,5,2,2,,,,,,,,,,,,,"Goudy, Leah S",,,,, +HLTH,1322,0W1,,39,,,1,1,1,1,,,,,2,,,,,,"Mcbride, Rachael L",,,,, +HLTH,1322,0W2,,39,,1,3,1,,,,,,,,,,,,,"Mcbride, Rachael L",,,,, +HLTH,3101,0W1,,146,,,,,,1,,,1,,1,,,,,,"Sandon, Lona",,,,, +HLTH,3101,0W2,,142,,,4,,,2,,,,,1,,,,,,"Sandon, Lona",,,,, +HLTH,3101,0W3,,50,,,5,,,4,,,,,,,,,,,"Sandon, Lona",,,,, +HLTH,3101,0W4,,72,,,2,,,1,,,,,,,,,,,"Sandon, Lona",,,,, +HLTH,3101,0W5,,50,,,,,,,,,,,,,,,,,"Sandon, Lona",,,,, +HLTH,3300,001,,3,14,21,28,27,18,8,5,1,1,,3,,,,1,,"Byrnes, Kathleen A",,,,, +HLTH,3305,001,2,9,6,9,4,3,1,2,,,,1,,,,,,,"Stark, Azadeh T",,,,, +HLTH,3305,002,28,5,3,,,,,,,,,,,,,,,,"Goudy, Leah S",,,,, +HLTH,3305,003,,2,6,8,6,3,3,,2,,,,,,,,2,,"Stark, Azadeh T",,,,, +HLTH,3315,001,,4,14,7,11,11,4,3,8,1,3,3,1,,,,,,"Byrnes, Kathleen A",,,,, +HLTH,4108,001,29,5,1,2,,,,,,,,,,,,,,,"Rainey, Anthony D",,,,, +HLTH,4304,001,,31,2,2,5,,,,,,1,,,,,,,,"Byrnes, Kathleen A",,,,, +HLTH,4304,002,,11,,,,,,1,,,,,,,,,,,"Krawietz, Paul",,,,, +HLTH,4304,501,,15,,,,,,,,,,,,,,,,,"Askew, Victoria",,,,, +HLTH,4305,001,1,6,8,7,10,6,1,,,,1,,,,,,,,"Stark, Azadeh T",,,,, +HLTH,4305,002,1,1,3,10,4,6,7,2,3,1,,,,,,,1,,"Stark, Azadeh T",,,,, +HLTH,4306,001,5,1,4,3,2,2,4,2,2,1,1,1,,,,,,,"Savard, Ryan R",,,,, +HLTH,4306,002,1,3,1,2,,1,,4,,,,,,,,,,,"Savard, Ryan R",,,,, +HLTH,4310,0W1,18,7,,2,,1,,,,,,1,,,,,,,"Edwards, Christopher W",,,,, +HLTH,4310,0W2,4,7,,2,8,1,1,,3,,,,1,,,,,,"Dornback, Sarah",,,,, +HMGT,3080,001,,,,,,,,,,,,,,23,,,,,"Karnuta, Daniel",,,,, +HMGT,3301,001,8,18,20,3,3,4,2,1,,,,1,,,,,1,,"Robb, Horace A",,,,, +HMGT,3301,002,25,20,7,,,2,1,,,,,,,,,,,,"Robb, Horace A",,,,, +HMGT,3301,003,14,17,23,2,3,1,,,,1,,,,,,,,,"Malaise, Michael",,,,, +HMGT,3310,001,2,9,15,1,3,,1,,,,,,,,,,,,"Bryan, Mary C",,,,, +HMGT,3310,002,3,9,7,8,3,,1,,,,,,,,,,,,"Bryan, Mary C",,,,, +HMGT,3311,001,,10,,,7,,,6,,,2,,,,,,,,"Karnuta, Daniel","Reddy, Aishwarya",,,, +HMGT,3311,002,1,3,,1,7,,1,5,,,3,,,,,,1,,"Karnuta, Daniel","Reddy, Aishwarya",,,, +HMGT,3320,001,,6,,,7,,2,3,,,1,,,,,,,,"Karnuta, Daniel","Reddy, Aishwarya",,,, +HMGT,3320,002,,11,,2,6,,1,6,,,2,,,,,,,,"Karnuta, Daniel","Reddy, Aishwarya",,,, +HMGT,4090,091,,,,,,,,,,,,,,12,,,,,"Thurgood, Keith L",,,,, +HMGT,4321,001,1,10,,,20,1,3,,,,,,,,,,,,"Nedbal, Joseph","Kulkarni, Prajwal Prahllad Rao",,,, +HMGT,6310,AW1,,8,5,,,,,,,,,,,,,,,,"Abbaszadegan, Hamed",,,,, +HMGT,6311,0W1,,33,,3,4,,,,,,,,,,,,1,,"Karnuta, Daniel","Lu, Renjie",,,, +HMGT,6320,0W1,,46,5,2,1,,,,,,,,,,,,,,"Thurgood, Keith L","Reddy, Aishwarya","Song, You-Xiang",,, +HMGT,6320,0W2,,37,9,5,,2,,,,,,,,,,,,,"Thurgood, Keith L","Reddy, Aishwarya","Song, You-Xiang",,, +HMGT,6320,0W3,,47,5,1,,1,,,,,,,,,,,,,"Thurgood, Keith L","Reddy, Aishwarya","Song, You-Xiang",,, +HMGT,6320,501,,42,,,,,,,,,,,,,,,1,,"Warren, DeVontae",,,,, +HMGT,6320,CH1,,14,1,4,,,,1,,,,,1,,,,,,"Jacob, Stephen B",,,,, +HMGT,6321,0W1,,5,2,9,5,2,2,1,,,,,1,,,,,,"Ramanathan, Kannan",,,,, +HMGT,6323,501,,9,11,10,3,,,,,,,,,,,,1,,"Ayvaci, Mehmet U","Wei, Ning",,,, +HMGT,6325,501,,5,1,3,2,2,,,,,,,,,,,,,"Wang, Guihua","Tahergandomabadi, Mohammadmahdi",,,, +HMGT,6330,501,,9,2,4,3,1,1,,,,,,,,,,,,"Drummond, Jeffery P",,,,, +HMGT,6331,CH1,,26,2,3,,,,,,,,,,,,,,,"Jacob, Stephen B",,,,, +HMGT,6332,0W1,,4,,7,5,2,1,5,,,,,4,,,,2,,"Ramanathan, Kannan",,,,, +HMGT,6334,501,,4,2,3,2,2,,,,,,,,,,,,,"Ayvaci, Mehmet U","Wei, Ning",,,, +HMGT,6405,AH1,,43,,,,,,,,,,,,,,,2,,"Schneider, Joseph H","Taylor, Donald E","Abbaszadegan, Hamed",,, +HMGT,6V99,GH1,,10,,,,,,,,,,,,,,,,,"Hicks, Jeffrey N",,,,, +HONS,3102,HN1,,14,4,1,,,,,,,,,,,,,,,"Towner, Theresa M",,,,, +HONS,3103,HN1,,12,2,,,,,,,,,,1,,,,,,"Rippel, Scott A","Thompson, Christina M",,,, +HONS,3104,HN1,2,6,2,,,,,,,,,,,,,,1,,"Dow, Douglas C",,,,, +HONS,3105,HN1,6,7,1,1,,,,,,,,,,,,,,,"LaDow, Eva S",,,,, +HONS,3105,HN2,2,10,,,,,,,,,,,,,,,,,"LaDow, Eva S",,,,, +HONS,3107,HN1,,9,1,,,,2,,,,,,,,,,,,"Farmer, J Michael",,,,, +HONS,3108,HN1,,13,,,,,,,,,1,,,,,,,,"Prakash, Ravi",,,,, +HONS,3109,HN1,9,5,1,,,,,,,,,,,,,,,,"Brunell, Valerie A",,,,, +HONS,3111,HN1,2,11,1,1,,,,,,,,,,,,,,,"Thompson, Christina M",,,,, +HONS,3111,HN2,2,11,,,1,,,,,,1,,,,,,,,"Thompson, Christina M",,,,, +HONS,3116,HN1,,15,,,,,,,,,,,,,,,,,"Murchison, David F",,,,, +HONS,3121,HN1,2,12,,,,,,,,,,,,,,,,,"Williams, Nathan F",,,,, +HONS,3122,HN1,9,6,,,,,,,,,,,,,,,,,"Skinner, Donal C",,,,, +HONS,3122,HN2,10,4,1,,,,,,,,,,,,,,,,"Skinner, Donal C",,,,, +HONS,3199,H10,2,6,2,1,,,,,,,,,,,,,,,"Peinhardt, Clint W",,,,, +HONS,3199,H11,9,,3,1,,1,,,,,,,,,1,,,,"Cure, Cassie",,,,, +HONS,3199,H12,,8,4,,,,,1,,,,1,,,,,,,"Davies, Katherine",,,,, +HONS,3199,H13,15,,,,,,,,,,,,,,,,,,"Rushing, Katrina C",,,,, +HONS,3199,H15,7,3,,,,,,,,,1,,,,1,,1,,"Montgomery, Joshua P",,,,, +HONS,3199,HN1,,9,2,,2,,,,,,,,1,,,,1,,"Gooch, John C",,,,, +HONS,3199,HN2,10,2,1,1,,,,,,,,,,,,,,,"Devdas, Neetha R",,,,, +HONS,3199,HN3,15,,,,,,,,,,,,,,,,,,"Devdas, Neetha R",,,,, +HONS,3199,HN4,12,3,,,,,,,,,,,,,,,,,"Devdas, Neetha R",,,,, +HONS,3199,HN5,,13,,,,,,,,,,,,,,,1,,"Stefan, Mihaela C",,,,, +HONS,3199,HN6,,10,,,2,,,,1,,,,,,,,,,"Rankin, Monica A",,,,, +HONS,3199,HN7,,14,,,,,,,,,,,,,,,,,"Wright, Ben",,,,, +HONS,3199,HN9,10,2,,1,1,,,,,,,,,,,,,,"Salter, Monika M",,,,, +HONS,3199,HW1,8,5,,,,,,,,,,,,,1,,,,"De Olivares, Karen L",,,,, +HONS,3V00,HS1,20,,,,,,,,,,,,,,,,,,"Skinner, Donal C",,,,, +IMS,3310,001,1,8,5,13,25,,6,3,1,1,,,,,,,,,"Henderson, Thomas C","Salehi Heidari, Samira",,,, +IMS,3310,002,,8,3,7,13,4,1,3,1,,3,,,,,,,,"Woldu, Habte G","Gopaljoshi, Supriya Joshi","Acharya, Vishruth",,, +IMS,3310,003,,9,9,13,8,9,6,3,,,,,1,,,,1,,"Woldu, Habte G","Gopaljoshi, Supriya Joshi",,,, +IMS,3310,004,,13,6,16,11,3,1,1,3,,2,2,2,,,,,,"Henderson, Thomas C","Salehi Heidari, Samira",,,, +IMS,3310,005,8,34,16,4,1,,1,,,,,,,,,,,,"Garg, Suyash",,,,, +IMS,3310,006,1,13,5,14,18,2,1,5,1,2,,,1,,,,,,"Henderson, Thomas C","Salehi Heidari, Samira",,,, +IMS,3310,007,2,17,3,15,15,1,,5,2,1,1,,1,,,,,,"Henderson, Thomas C","Salehi Heidari, Samira",,,, +IMS,3310,008,3,31,11,8,3,1,4,,,,,,,,,,,,"Zydorek, Hubert","Khopade, Manasi Sanjay",,,, +IMS,3310,009,11,17,15,11,4,2,,,,,,,,,,,,,"Guo, Suifang",,,,, +IMS,3310,010,2,4,3,15,12,9,5,5,,,,,,,,,3,,"Woldu, Habte G","Gopaljoshi, Supriya Joshi",,,, +IMS,3310,011,,7,2,11,17,9,4,2,1,1,1,,1,,,,2,,"Woldu, Habte G","Gopaljoshi, Supriya Joshi",,,, +IMS,3310,012,3,9,8,11,15,4,5,4,3,2,1,,,,,,,,"Lin, Zhiang","Jiang, Rui",,,, +IMS,3310,501,8,5,13,11,10,8,4,1,1,,,,,,,,,,"Tan, Xiaowen",,,,, +IMS,3310,502,1,1,6,6,7,9,10,4,6,1,4,,,,,,,,"Van Eeden, Adriaan",,,,, +IMS,3310,503,2,10,1,7,14,1,2,6,3,,2,1,2,,,,,,"Henderson, Thomas C","Salehi Heidari, Samira",,,, +IMS,3310,HON,,27,9,6,1,,,,,,,,,,,,,,"Zydorek, Hubert","Khopade, Manasi Sanjay",,,, +IMS,4320,501,,8,7,3,11,5,5,,,,,,,,,,,,"Lee, Seunghyun","Liu, Yilin",,,, +IMS,4330,501,,9,7,10,4,1,1,,,,,,,,,,,,"Zydorek, Hubert","Khopade, Manasi Sanjay",,,, +IMS,4335,501,,1,20,11,10,4,3,,,,,,,,,,,,"Wright, Robert G","Fickel, Mary","Chelakalapally, Srikesh K",,, +IMS,4340,5W1,2,7,1,4,7,5,1,1,,,,,,,,,,,"Skuza, Agnieszka","Venkumahanti, Rachana S",,,, +IMS,4350,001,1,18,,1,,,,,,,,,,,,,,,"Zydorek, Hubert","Khopade, Manasi Sanjay",,,, +IMS,6304,001,,7,,,4,,,,,,,,1,,,,,,"Peng, Mike W","Shen, Jia",,,, +IMS,6304,0W1,,11,8,11,14,,,,,,,,1,,,,1,,"Woldu, Habte G","Acharya, Vishruth",,,, +IMS,6304,501,,21,,,19,,,,,,,,,,,,,,"Peng, Mike W","Shen, Jia",,,, +IMS,6304,GW1,,9,6,7,,,,,,,,,,,,,,,"Kiser, Stephen L",,,,, +IMS,6310,501,,10,5,4,,3,4,,,,,,,,,,,,"Lee, Seunghyun","Liu, Yilin",,,, +IMS,6317,GW1,,7,4,3,1,,,,,,,,,,,,,,"Sachdeva, Deepak",,,,, +IMS,6360,0W1,,25,14,4,6,3,,,,,,,,,,,,,"Skuza, Agnieszka","Venkumahanti, Rachana S",,,, +IMS,6365,GW1,,19,3,,1,,,,,,,,,,,,,,"Dowse, Eileen",,,,, +IPEC,3349,001,5,6,5,2,,2,1,1,,,,,,,,,,,"Cisneros Tersitsch, Marco Elias","Singh, Sonali",,,, +IPEC,4302,001,,2,3,4,1,2,,,,,,,,,,,1,,"Minoura, Haruna",,,,, +IPEC,4304,001,,4,,,3,,,3,,,,,,,,,,,"Noe, Ricardo",,,,, +IPEC,4305,001,5,1,1,2,2,,1,,,,,,,,,,2,,"Lamberova, Natalia","Subramanian, Venkatesh",,,, +IPEC,4384,001,2,5,1,1,3,,,,,,,,,,,,,,"Rahman, Muhammad T","Sonet, M Shahriar","Davenport, Miranda J",,, +ISIS,3310,001,2,3,,1,2,1,,3,,,,,,,,,,,"Wissinger, Tonja",,,,, +ISIS,3334,001,3,3,5,4,2,2,,,1,,,,1,,,,,,"Jones, June A",,,,, +ISIS,3335,0W1,4,5,9,9,1,1,,,,,,,,,,,,,"Rosa, Jonathan",,,,, +ISIS,4304,001,,1,5,3,1,,1,1,,,,,,,,,,,"Werhnyak, Larissa",,,,, +ISIS,4310,0W1,,30,,,1,,,,,,,,,,1,,,,"Aubrey, Lea E",,,,, +ISIS,4V89,001,8,2,2,1,1,3,1,1,,,,,1,,,,,,"Hammonds, Kyle",,,,, +ISIS,4V89,002,15,7,4,2,,,,,,,,,1,,,,,,"Lusk, Marc L",,,,, +ISNS,2359,001,4,13,7,5,4,,,,1,,,1,1,,,,1,,"Griffin, William R","Putri, Gabriella E",,,, +ISNS,2359,0W1,197,46,30,25,10,11,4,4,1,4,2,3,3,,,,3,,"Pirouz, Mortaza","Adigwe, Fidelis A",,,, +ISNS,2359,0W2,142,35,27,17,9,3,4,2,1,3,,,8,,,,3,,"Pirouz, Mortaza","Ahmad, Muhammad M",,,, +ISNS,2366,001,,6,3,2,2,2,2,1,1,,,,,,,,,,"McCauley, Steven",,,,, +ISNS,2367,0W1,128,126,56,11,30,19,4,4,4,2,,2,1,,1,,6,,"Pujana, Ignacio","Adeyemi, Oluwaseun",,,, +ISNS,2367,0W2,108,126,42,17,38,20,3,13,6,1,4,2,6,,1,,5,,"Pujana, Ignacio","Adeyemi, Oluwaseun",,,, +ISNS,2368,001,3,14,5,13,19,6,3,6,3,1,2,1,2,,,,,,"McCauley, Steven","Balagopal, Gokul",,,, +ITSS,3300,001,11,14,9,8,8,4,2,,4,,,,1,,,,,,"Alborz, Shawn",,,,, +ITSS,3300,002,12,12,17,8,8,6,4,2,,1,,,,,,,,,"Alborz, Shawn",,,,, +ITSS,3300,004,,3,7,9,14,8,5,7,1,1,1,1,4,,,,2,,"Shrivastava, Prakash C","Agarwal, Manan Manoj",,,, +ITSS,3300,005,,6,12,5,9,5,6,8,2,5,2,1,2,,,,1,,"Shrivastava, Prakash C","Agarwal, Manan Manoj",,,, +ITSS,3300,006,8,13,15,11,10,5,2,3,4,,,,1,,,,,,"Alborz, Shawn",,,,, +ITSS,3300,007,,8,13,8,13,5,6,6,1,,2,1,1,,,,1,,"Pai, Radhakrishna S","Stephens, Timothy G","Chilukuri, Dheeraj R",,, +ITSS,3300,008,,13,16,12,11,6,1,2,3,1,,,,,,,,,"Pai, Radhakrishna S","Stephens, Timothy G","Chilukuri, Dheeraj R",,, +ITSS,3300,010,,9,7,7,16,4,8,1,5,,1,1,,,,,1,,"Shrivastava, Prakash C","Agarwal, Manan Manoj",,,, +ITSS,3300,011,8,17,14,8,9,1,1,2,,,,,2,,,,,,"Wang, Xiaoning","Pujari, Shrutika",,,, +ITSS,3300,012,13,21,10,13,3,,2,1,,,,,,,,,,,"Wang, Xiaoning","Pujari, Shrutika",,,, +ITSS,3300,013,7,6,8,5,5,5,4,9,2,1,,4,3,,,,1,,"Ceverha, Paul W","Pujari, Shrutika",,,, +ITSS,3300,014,,2,12,7,9,8,4,6,2,1,2,4,6,,,,1,,"Bodeker, Alison J","Bachkaniwala, Jayraj",,,, +ITSS,3300,0T1,,6,4,5,7,1,3,1,1,,,,,,,,,,"Owens, Sean M","Jain, Kushagra",,,, +ITSS,3300,501,,8,9,11,9,8,3,3,,,3,,3,,,,3,,"Hanifiafshar, Sharmin","Batra, Vanshu",,,, +ITSS,3300,504,1,6,5,3,16,7,4,6,5,,1,2,1,,,,,,"Young, John G",,,,, +ITSS,3300,507,,8,8,4,10,10,5,5,,2,1,2,3,,,,2,,"Hansen, Atanas Y","Cai, Shuzhang",,,, +ITSS,3300,508,,2,11,5,11,10,3,4,6,1,1,1,6,,,,2,,"Bodeker, Alison J","Bachkaniwala, Jayraj",,,, +ITSS,3311,001,,9,11,16,10,7,3,6,,,,,1,,,,2,,"Short, Kevin P","Batra, Vanshu",,,, +ITSS,3311,002,10,12,13,6,6,6,1,1,2,1,3,,,,,,2,,"Aksoy, Ozgur",,,,, +ITSS,3311,003,1,16,15,6,11,6,2,3,2,,,,1,,,,,,"Franson, Robert","Kiarie, Maryanne W",,,, +ITSS,3311,004,,11,10,18,12,6,3,1,,,,,3,,,,1,,"Kamalzadeh, Hossein","Mudunuri, Devamsh Varma",,,, +ITSS,3311,0T1,5,,4,2,4,3,1,1,,,,,,,,,2,,"Khan, Masudal H","Patali, Krithika N",,,, +ITSS,3311,502,2,7,17,18,9,4,1,,,2,,,3,,,,1,,"Bose, Ashim","Acharya, Pratiksha Bhaskar",,,, +ITSS,3312,001,1,7,7,9,19,7,4,6,,,,,,,,,,,"Short, Kevin P","Batra, Vanshu",,,, +ITSS,3312,002,12,24,4,3,3,,,1,,,,,,,,,1,,"Shrivastava, Aparna A","Mudunuri, Devamsh Varma",,,, +ITSS,3312,501,1,2,9,7,6,3,1,,,,,,,,,,,,"Franson, Robert","Kiarie, Maryanne W",,,, +ITSS,3370,001,,6,,5,12,,,,,,,,,,,,,,"Subramoniam, Ramesh","Udata, Bhaskara Ravi Teja",,,, +ITSS,3390,001,,2,11,7,4,12,1,1,4,,1,,,,,,1,,"Neal, Angela","Singhal, Kajal",,,, +ITSS,4090,001,,,,,,,,,,,,,,20,,,,,"Stephens, Timothy G",,,,, +ITSS,4090,091,,,,,,,,,,,,,,55,1,,,,"Stephens, Timothy G",,,,, +ITSS,4300,001,5,3,8,5,11,7,6,9,,2,1,,,,,,1,,"Calisir, Engin","Sivakumar, Nithesh",,,, +ITSS,4300,002,,13,13,11,10,8,3,1,,,,,1,,,,,,"Pandian, Thiru","Nisthala, Venkat Bhargav",,,, +ITSS,4300,003,7,6,13,2,3,1,1,2,3,,,,,,,,1,,"James, Velda","Kiarie, Maryanne W",,,, +ITSS,4300,501,1,8,10,9,13,9,3,2,2,,,1,,,,,,,"Ceverha, Paul W","Pujari, Shrutika",,,, +ITSS,4300,502,12,,10,16,8,6,4,2,,,,,,,,,1,,"Khan, Masudal H","Patali, Krithika N",,,, +ITSS,4300,503,20,11,8,5,3,1,1,4,1,1,2,,,,,,,,"Kaya, Cuneyd C","Dhande, Pratik V",,,, +ITSS,4301,501,5,1,2,3,1,1,,,,,,,,,,,,,"Hagen, John","Patel, Sakshi Jayesh",,,, +ITSS,4312,501,19,11,2,2,6,,,,,,,,,,,,,,"Wu, Lidong","Kulkarni, Prajwal Prahllad Rao",,,, +ITSS,4330,001,,14,14,14,14,7,,1,,,,,,,,,,,"Srikanth, Kannan","Duddu, Sravanthi",,,, +ITSS,4330,002,1,8,8,12,13,3,4,5,2,1,2,,1,,,,,,"Hanifiafshar, Sharmin","Batra, Vanshu",,,, +ITSS,4330,501,,28,14,10,11,3,,2,2,,,,,,,,,,"Stephens, Timothy G","Sutaria, Anaysha Dimple",,,, +ITSS,4340,001,,,3,2,17,3,3,7,1,4,2,,,,,,2,,"Thompson, Luell O","Gondkar, Piyush Anil",,,, +ITSS,4343,001,,2,2,1,6,4,2,7,1,,,1,,,,,3,,"Subramoniam, Ramesh","Nassa, Hardik",,,, +ITSS,4344,001,6,31,,2,6,,2,1,,1,,,,,,,,,"Eaton, Sara H","Rajasekar, Magesh",,,, +ITSS,4351,001,,32,14,6,4,,1,,1,,,1,,,,,,,"Stephens, Timothy G","Jain, Kushagra",,,, +ITSS,4351,002,,8,12,6,18,12,3,1,,,,,,,,,,,"Pandian, Thiru","Nisthala, Venkat Bhargav",,,, +ITSS,4351,501,,7,12,10,18,9,3,,,,,,,,,,,,"Pandian, Thiru","Nisthala, Venkat Bhargav",,,, +ITSS,4351,502,,39,5,10,3,,1,,1,,,,,,,,,,"Shekhar, Gaurav","Yadav, Abhishekkumar Rajaram",,,, +ITSS,4352,001,1,9,15,13,7,5,1,3,1,2,,,,,,,2,,"Maru, Vatsal K","Singhal, Kajal",,,, +ITSS,4352,002,,6,16,12,10,8,2,,1,3,1,,,,,,,,"Maru, Vatsal K","Singhal, Kajal",,,, +ITSS,4352,501,,4,16,6,4,9,3,2,3,,,,1,,,,,,"Neal, Angela","Singhal, Kajal",,,, +ITSS,4353,001,,10,12,10,13,5,5,2,,1,1,,,,,,,,"Shrivastava, Prakash C","Soni, Raj P",,,, +ITSS,4353,002,,2,8,,3,6,6,1,2,2,,,1,,,,,,"Shrivastava, Prakash C","Soni, Raj P",,,, +ITSS,4353,501,,11,10,18,11,4,4,,,,,,,,,,,,"Akarte, Prajakti V","Mokkapati Sridhar, Karthik",,,, +ITSS,4354,001,14,5,2,12,6,13,2,2,1,,,1,,,,,,,"Bradbury, Judd D","Patel, Sakshi Jayesh","Raghu, Tarun",,, +ITSS,4355,001,4,5,2,7,6,4,2,1,2,,,,,,,,,,"Bradbury, Judd D","Raghu, Tarun",,,, +ITSS,4355,501,,17,7,14,12,3,4,1,,,,,,,,,,,"Akarte, Prajakti V","Mokkapati Sridhar, Karthik",,,, +ITSS,4356,001,10,13,4,7,7,8,3,2,,1,2,2,,,,,,,"Hansen, Atanas Y","Cai, Shuzhang",,,, +ITSS,4360,001,8,30,6,13,1,1,,,,,,,,,,,,,"Howe, Nathaniel M",,,,, +ITSS,4360,002,6,5,20,13,7,6,2,,1,,,,,,,,,,"Ginevich, Rostislav A",,,,, +ITSS,4360,501,,7,11,6,15,10,2,2,,,,,,,,,,,"More, Satish P","Patel, Krushang P",,,, +ITSS,4360,502,,9,5,7,14,9,6,5,2,,,,,,,,,,"More, Satish P","Patel, Krushang P",,,, +ITSS,4360,503,3,4,10,5,9,3,,1,,1,,,,,,,,,"Ginevich, Rostislav A",,,,, +ITSS,4361,001,1,24,15,12,5,4,2,,,,,,,,,,,,"Khan, Taimur A","Revalkar, Shreyas Sanjay",,,, +ITSS,4362,501,2,12,13,7,8,6,4,1,1,,,,,,,,,,"Khan, Taimur A","Revalkar, Shreyas Sanjay",,,, +ITSS,4370,001,2,3,5,11,14,6,8,3,3,2,1,1,1,,,,,,"Hefley, William E","Seelam, Jyothi Praveen",,,, +ITSS,4370,002,1,3,8,19,17,9,4,2,1,,,,,,,,1,,"Hefley, William E","Seelam, Jyothi Praveen",,,, +ITSS,4370,501,3,3,3,4,12,11,12,8,2,2,,1,2,,,,,,"Hefley, William E","Seelam, Jyothi Praveen",,,, +ITSS,4371,501,,6,9,5,7,5,3,2,2,,1,,2,,,,,,"Young, John G",,,,, +ITSS,4380,501,,36,14,3,3,,2,1,1,,,,,,,,,,"Stephens, Timothy G","Jain, Kushagra",,,, +ITSS,4380,502,3,1,4,4,3,,,,,,,,1,,,,,,"Kaya, Cuneyd C","Dhande, Pratik V",,,, +ITSS,4381,001,,19,13,10,12,2,1,2,,,,,,,,,,,"Chen, Luoying",,,,, +ITSS,4381,501,,11,9,16,8,3,2,1,1,,,,,,,,,,"Zhu, Yan",,,,, +ITSS,4381,502,14,10,5,2,3,1,,,,,,,,,,,,,"Joseph, Shailender",,,,, +ITSS,4382,001,6,15,24,3,3,2,,,,,,,,,,,1,,"Wu, Lidong","Kulkarni, Prajwal Prahllad Rao",,,, +ITSS,4395,001,24,17,7,2,,,,,,,,,,,,,,,"Stogsdill, Robert",,,,, +ITSS,4395,002,18,27,4,,,,,1,,,,,,,,,,,"Baig, Juveria I",,,,, +JAPN,1311,001,4,3,3,,1,,1,1,,,1,,3,,,,,,"Hoki, Chieko",,,,, +JAPN,1311,003,1,8,2,1,1,1,2,,,,,,,,,,2,,"Evans, Leonard W",,,,, +JAPN,1312,001,6,6,2,1,1,,1,1,,,,,1,,,,,,"Evans, Leonard W",,,,, +JAPN,2311,001,2,3,3,,,,1,,,,,,,,,,1,,"Hoki, Chieko",,,,, +JAPN,3311,001,4,3,1,2,,,,,,,,,,,,,1,,"Hoki, Chieko",,,,, +KORE,1311,002,5,6,2,,1,,,1,1,,,,,,,,,,"Jeong, Hyejeong",,,,, +LIT,1301,001,66,18,13,14,11,4,1,1,,,,,,,,,,,"Ingrao, Peter J",,,,, +LIT,1301,002,82,9,4,10,4,1,2,1,,,,,1,,,,4,,"Ingrao, Peter J",,,,, +LIT,1301,003,68,16,12,13,4,,,,2,,,1,1,,,,,,"Ingrao, Peter J",,,,, +LIT,1311,001,,16,29,18,27,7,4,1,,,1,,7,,,,2,,"Brecheisen, Davis",,,,, +LIT,1315,001,30,21,7,3,14,3,,2,,,,,1,,,,2,,"Brazeal, Lauren",,,,, +LIT,2320,001,1,8,5,9,2,1,,,,1,,,,,,,,,"Nikravesh, Negeen",,,,, +LIT,2329,001,9,5,12,11,5,1,,,,,,,,,,,,,"Wang, Mai",,,,, +LIT,2331,001,1,6,3,1,8,1,1,1,,,1,,2,,,,,,"Brandow, Carmon",,,,, +LIT,2331,002,5,4,4,3,3,3,,,,,,,2,,,,1,,"Cakerice, John H",,,,, +LIT,2331,003,,7,3,5,5,2,1,,,,1,,1,,,,,,"Shabir, Junaid S",,,,, +LIT,2331,004,14,1,3,3,3,1,1,,,,,,3,,,,1,,"Anwesha, Swati",,,,, +LIT,2331,005,,4,1,3,6,2,3,2,3,,,,4,,,,1,,"Cox, Gavin L",,,,, +LIT,2331,006,2,4,3,4,4,3,2,,1,,,2,2,,,,,,"Feiz, Manzar",,,,, +LIT,2350,001,1,7,3,3,5,,,,,,,,,,,,,,"Nikravesh, Negeen",,,,, +LIT,2350,002,,7,5,5,,1,1,,,,,,,,,,,,"Gu, Ming D",,,,, +LIT,3300,001,,1,6,2,3,5,1,1,1,1,,1,1,,,,,,"McShane, Michael",,,,, +LIT,3317,001,,24,10,5,3,,,,,,,,2,,,,1,,"Towner, Theresa M",,,,, +LIT,3319,001,,3,6,1,2,1,1,,,,,,1,,,,,,"Nikravesh, Negeen",,,,, +LIT,3319,003,1,3,3,5,,,1,,,,,,,,,,,,"Gu, Ming D",,,,, +LIT,3330,501,3,1,5,,1,,,1,,,,,,,,,,,"Saunders, Joy",,,,, +LIT,3337,001,1,13,1,3,,,,,,,,,,,,,,,"Kratz, Dennis M",,,,, +LIT,3338,001,,8,5,1,,,,,,,,,,,1,,,,"Hatfield, Charles D",,,,, +LIT,3339,0H1,3,8,3,1,3,1,,,,,,,,,,,,,"Riley, Kristin N",,,,, +LIT,3339,0H2,,5,2,,4,,,,,1,,,2,,,,,,"Riley, Kristin N",,,,, +LIT,4329,001,,3,4,5,2,,,,,,,,,,,,,,"Brecheisen, Davis",,,,, +LIT,4329,002,,6,3,2,,1,,,,,,,,,,,,,"Towner, Theresa M",,,,, +LIT,4390,001,,1,3,3,2,1,,,,,,,,,,,,,"Barnes, Ashley",,,,, +LIT,6304,001,,7,3,,,,,,,,,,,,,,,,"Barnes, Ashley",,,,, +MAS,6102,051,,,,,,,,,,,,,2,,,,,62,"Razvi, Ali","Desai, Het D","Agarwal, Vineet Vinod",,, +MAS,6102,052,,,,,,,,,,,,,,,,,,65,"Siri, Brenda","Tiwari, Vrushali","Sonare, Mugdha R","Moregaonkar, Chaitanya S",, +MAS,6102,053,,,,,,,,,,,,,1,,,,1,56,"An, Constance","Agarwal, Vineet Vinod","Siddarth, K V H",,, +MAS,6102,054,,,,,,,,,,,,,,,,,,65,"Wilkerson, Cassandra","Desai, Het D","Tyagi, Rishabh",,, +MAS,6102,055,,,,,,,,,,,,,,,,,,67,"Holmes, Diane","Moregaonkar, Chaitanya S","Shah, Dhwani Upnishkumar","Mishra, Neeti",, +MAS,6102,091,,,,,,,,,,,,,1,,,,1,21,"Razvi, Ali","Agarwal, Vineet Vinod","Desai, Het D",,, +MAS,6102,0W1,,,,,,,,,,,,,,,,,,13,"Chen, Tiffany",,,,, +MAS,6102,551,,,,,,,,,,,,,,,,,,66,"Miller, Elizabeth M","Singh, Chavi","Mishra, Neeti","Shah, Dhwani Upnishkumar",, +MAS,6102,552,,,,,,,,,,,,,,,,,,68,"Wise, Alex G","Balagopal, Bhavana","Singh, Chavi","Tyagi, Rishabh",, +MAS,6102,553,,,,,,,,,,,,,,,,,1,63,"Herl, Keith","Tiwari, Vrushali","Siddarth, K V H",,, +MAS,6102,S51,,,,,,,,,,,,,,,,,3,56,"Kim, Tommy C","Elbanna, Kareem M","Sonare, Mugdha R",,, +MAS,6102,S53,,,,,,,,,,,,,,,,,1,40,"Kim, Tommy C","Elbanna, Kareem M","Sonare, Mugdha R",,, +MAS,6102,SW2,,,,,,,,,,,,,,,,,,13,"Kim, Tommy C",,,,, +MAS,6V98,001,,,,,,,,,,,,,,,,,,13,"Fierst, John","Widdifield, David S",,,, +MATH,1306,001,9,4,13,5,4,2,,,,,1,,1,,,,1,,"Sutton, Julie","Changani, Soham","Norin, Razuana",,, +MATH,1306,002,6,2,8,1,3,1,,,1,1,,,,,,,1,,"Sutton, Julie","Norin, Razuana","Changani, Soham",,, +MATH,1314,001,3,7,7,4,2,4,4,1,1,,,,5,,,,2,,"Alvarado, Iris",,,,, +MATH,1314,002,1,7,8,7,3,3,3,,1,,1,1,2,,,,2,,"Alvarado, Iris",,,,, +MATH,1314,003,3,11,6,3,2,4,2,1,2,1,2,,3,,,,,,"Duruoha, Adannah",,,,, +MATH,1314,004,3,5,4,6,6,4,1,2,1,,,1,2,,,,2,,"Hasija, Jyoti",,,,, +MATH,1314,005,,6,7,5,2,4,3,,1,1,,,2,,,,1,,"Hasija, Jyoti",,,,, +MATH,1314,006,3,8,8,3,3,7,,1,2,,1,1,,,,,2,,"Duruoha, Adannah",,,,, +MATH,1314,007,,3,6,5,5,2,4,1,1,,,,6,,,,2,,"Murad, Mohammad Hassan",,,,, +MATH,1314,008,3,8,5,2,8,5,1,4,2,,,,,,,,2,,"Duruoha, Adannah",,,,, +MATH,1316,001,1,5,,3,1,2,3,1,1,2,1,1,4,,,,5,,"Alvarado, Iris",,,,, +MATH,1316,002,1,2,1,2,6,4,2,5,5,,2,1,2,,,,5,,"Alvarado, Iris",,,,, +MATH,1316,004,2,1,,2,5,6,,4,3,3,3,,,,,,8,,"Wu, Cheyu J",,,,, +MATH,1316,005,1,1,5,4,1,5,5,,3,4,2,,1,,,,7,,"Sutton, Julie",,,,, +MATH,1316,006,,2,1,2,5,4,3,3,2,2,3,2,7,,,,3,,"Wu, Cheyu J",,,,, +MATH,1325,001,2,7,10,2,4,3,3,5,2,2,1,,3,,,,3,,"Foley, Manjula",,,,, +MATH,1325,002,5,12,5,4,4,9,3,1,4,1,,,,,,,,,"Patel, Jigarkumar S",,,,, +MATH,1325,003,3,10,4,3,4,6,4,5,1,5,,1,1,,,,1,,"Mussa, Derege H",,,,, +MATH,1325,004,3,5,7,5,1,5,1,3,9,3,,,4,,,,2,,"Foley, Manjula",,,,, +MATH,1325,005,1,6,8,6,2,4,2,3,4,3,1,1,4,,,,2,,"Mussa, Derege H",,,,, +MATH,1325,006,6,10,5,4,3,6,6,,,3,1,1,1,,,,2,,"Patel, Jigarkumar S",,,,, +MATH,1325,007,3,10,4,1,4,5,,4,6,2,1,,3,,,,4,,"Kehoe, Joselle D",,,,, +MATH,1325,008,1,4,3,7,6,3,5,2,6,4,,,,,,,4,,"Biswas, Saikat",,,,, +MATH,1325,009,1,12,2,6,2,4,6,3,5,2,,,1,,,,,,"Mussa, Derege H","Makhijani, Neha",,,, +MATH,1325,010,4,10,5,8,2,3,4,4,1,3,1,,,,,,1,,"Rakotomalala, Diarisoa Mihaja Andriamanisa","Makhijani, Neha",,,, +MATH,1325,011,5,7,5,7,2,3,3,3,3,6,1,,1,,,,1,,"Khoury, Raja N",,,,, +MATH,1325,012,1,8,6,7,3,5,4,5,3,1,1,,2,,,,2,,"Khoury, Raja N",,,,, +MATH,1325,014,6,13,7,,3,3,5,4,1,3,,,1,,,,1,,"Malhotra, Sakshi",,,,, +MATH,1325,015,3,2,8,4,5,2,5,5,3,2,3,1,2,,,,2,,"Mussa, Derege H",,,,, +MATH,1325,016,6,5,6,5,4,4,4,2,,3,,1,4,,,,3,,"Malhotra, Sakshi",,,,, +MATH,1325,501,1,1,1,3,3,3,5,7,6,4,4,3,4,,,,2,,"Biswas, Saikat",,,,, +MATH,1325,502,,3,6,5,6,3,2,5,6,1,1,1,3,,,,5,,"Mussa, Derege H",,,,, +MATH,1326,001,2,4,2,,7,3,,2,1,,2,2,5,,,,8,,"Kehoe, Joselle D",,,,, +MATH,1326,002,5,5,5,,6,3,1,5,7,3,1,2,3,,,,1,,"Foley, Manjula",,,,, +MATH,1326,003,2,6,3,1,2,10,1,5,8,2,,,4,,,,3,,"Foley, Manjula",,,,, +MATH,1326,004,2,2,3,,6,8,1,5,2,2,1,3,4,,,,7,,"Kehoe, Joselle D",,,,, +MATH,1326,005,,6,4,1,2,3,2,10,2,,1,1,4,,,,4,,"Kehoe, Joselle D",,,,, +MATH,1326,006,4,7,2,,6,7,1,3,4,1,1,,2,,,,1,,"Akbar, Mohammad M",,,,, +MATH,1326,501,5,8,5,,3,3,1,3,1,,1,1,8,,,,3,,"Akbar, Mohammad M",,,,, +MATH,2312,001,4,1,3,2,6,6,4,5,2,3,1,2,1,,,,2,,"Martynova, Irina","Alabbadi, Ismail",,,, +MATH,2312,002,,4,5,1,4,8,4,3,4,2,2,1,3,,,,,,"Martynova, Irina","Holan, Kevin J",,,, +MATH,2312,003,,6,2,5,5,3,5,2,2,2,1,4,4,,,,3,,"Martynova, Irina","Uddin, Md. Joshem",,,, +MATH,2312,004,2,4,2,7,8,3,5,2,3,2,1,1,1,,,,3,,"Murza, Adrian C","Smith, Jared",,,, +MATH,2312,005,1,6,4,5,4,7,3,2,4,3,1,,2,,,,1,,"Murza, Adrian C","Zafar, Safi Ur Rahman",,,, +MATH,2312,006,1,2,2,3,7,5,4,2,3,4,1,1,5,,,,2,,"Martynova, Irina","Mathew, Minu Maria",,,, +MATH,2333,501,3,1,1,4,1,,,6,3,1,,1,7,,,,4,,"Rakotomalala, Diarisoa Mihaja Andriamanisa","Kushtagi, Sri Rama Chandra",,,, +MATH,2370,001,6,4,5,2,1,6,3,3,2,,,,6,,1,,1,,"Garrett, Bentley T","Fatema, Saba",,,, +MATH,2413,001,1,7,3,4,8,2,1,10,,,2,1,5,,,,2,,"Eydelzon, Anatoly",,,,, +MATH,2413,002,2,6,,7,3,,2,,1,1,2,1,2,,,,2,,"Ding, Hui",,,,, +MATH,2413,003,4,9,6,6,4,7,2,3,2,,2,1,1,,,,1,,"Sultana, Nasrin",,,,, +MATH,2413,004,3,6,2,5,5,5,3,2,,2,3,3,7,,,,2,,"Dahal, Rabin",,,,, +MATH,2413,005,1,6,4,5,4,5,3,1,,5,3,,5,,,,3,,"Eydelzon, Anatoly",,,,, +MATH,2413,006,,6,6,1,1,3,7,7,,1,3,2,7,,,,4,,"Eydelzon, Anatoly",,,,, +MATH,2413,007,2,9,3,3,8,6,1,3,2,,2,,5,,,,1,,"Ding, Hui",,,,, +MATH,2413,008,5,2,8,3,4,3,5,3,3,1,4,4,2,,,,,,"Ding, Hui",,,,, +MATH,2413,010,1,2,3,1,5,3,6,2,1,1,2,1,2,,,,,,"Aman, Kelly C",,,,, +MATH,2413,011,6,4,6,7,4,3,2,4,,1,2,1,8,,,,,,"Nguyen, Mylinh T",,,,, +MATH,2413,012,3,4,7,3,5,2,3,8,1,,1,,7,,,,3,,"Nguyen, Mylinh T",,,,, +MATH,2413,013,2,4,4,1,4,5,6,4,2,,6,1,7,,,,2,,"Miller, James W",,,,, +MATH,2413,015,3,4,8,3,5,5,3,3,1,6,2,1,4,,,,,,"Miller, James W",,,,, +MATH,2413,016,1,6,2,6,1,4,6,6,1,1,5,1,7,,,,1,,"Duruoha, Adannah",,,,, +MATH,2413,017,2,6,5,3,6,4,4,5,1,2,4,3,2,,,,1,,"Dahal, Rabin",,,,, +MATH,2413,018,1,2,8,4,4,7,3,6,,3,2,,7,,,,,,"Aman, Kelly C",,,,, +MATH,2413,019,5,4,3,4,5,2,1,4,1,2,5,2,4,,,,1,,"Ding, Hui",,,,, +MATH,2413,020,,11,6,7,3,2,4,3,,2,1,1,5,,,,3,,"Dahal, Rabin",,,,, +MATH,2413,021,6,9,4,4,5,3,3,6,2,2,1,2,,,,,1,,"Sultana, Nasrin",,,,, +MATH,2413,022,2,4,6,6,6,6,2,4,2,1,2,,6,,1,,,,"Sultana, Nasrin",,,,, +MATH,2413,023,7,6,6,3,2,4,3,7,1,1,3,3,2,,,,,,"Sultana, Nasrin",,,,, +MATH,2413,024,3,6,7,6,3,5,4,3,2,2,2,2,1,,,,2,,"Dabkowski, Mieczyslaw K",,,,, +MATH,2414,001,3,5,1,2,7,4,2,4,4,,2,2,9,,1,,1,,"Garrett, Bentley T",,,,, +MATH,2414,002,4,4,1,2,5,2,8,2,3,,2,2,7,,,,2,,"Garrett, Bentley T",,,,, +MATH,2414,003,3,2,2,3,5,3,2,1,2,,1,4,9,,,,2,,"Liu, Runzhou",,,,, +MATH,2414,004,6,3,3,1,7,2,2,4,6,1,3,3,6,,,,,,"Aman, Kelly C",,,,, +MATH,2414,005,7,5,2,6,4,,1,2,5,,2,3,8,,,,1,,"Tran, Anh T",,,,, +MATH,2414,006,4,5,5,1,3,3,1,6,3,,2,1,7,,,,5,,"Tran, Anh T",,,,, +MATH,2414,007,3,1,4,2,4,2,2,5,5,,4,3,6,,,,1,,"Liu, Runzhou",,,,, +MATH,2414,008,3,4,6,8,5,3,1,3,5,2,1,,6,,,,,,"Liu, Runzhou",,,,, +MATH,2414,009,5,8,8,3,3,1,1,,2,2,3,1,7,,,,3,,"Nguyen, Mylinh T",,,,, +MATH,2414,010,5,4,6,4,4,,3,4,4,,4,1,6,,,,3,,"Aman, Kelly C",,,,, +MATH,2414,012,4,1,2,2,3,5,7,4,4,,3,3,4,,,,5,,"Garrett, Bentley T",,,,, +MATH,2414,013,5,4,2,,3,2,4,1,1,1,,1,9,,,,2,,"Liu, Runzhou",,,,, +MATH,2414,014,5,7,7,2,,5,1,2,2,,2,5,6,,,,1,,"Nguyen, Mylinh T",,,,, +MATH,2415,001,6,11,5,5,5,8,3,8,3,,3,,10,,,,2,,"Ahsan, Mohammad K",,,,, +MATH,2415,002,2,12,1,5,12,3,5,7,2,,5,,15,,,,1,,"Ahsan, Mohammad K",,,,, +MATH,2415,003,6,11,9,7,6,3,5,8,,,5,,8,,,,1,,"Coskunuzer, Baris",,,,, +MATH,2415,004,3,11,3,10,11,3,2,12,3,,8,,9,,,,3,,"Zweck, John W",,,,, +MATH,2417,001,8,4,2,1,3,2,1,1,1,3,2,2,5,,,,3,,"Paudel, Ajaya B",,,,, +MATH,2417,002,7,2,5,1,10,2,,2,2,2,1,1,2,,,,3,,"Rakotomalala, Diarisoa Mihaja Andriamanisa",,,,, +MATH,2417,003,11,2,3,,2,1,2,2,2,1,2,,6,,,,4,,"Rakotomalala, Diarisoa Mihaja Andriamanisa",,,,, +MATH,2417,004,11,2,1,3,2,1,2,2,2,2,1,,2,,,,2,,"Paudel, Ajaya B",,,,, +MATH,2417,005,6,6,3,,3,1,2,3,4,2,1,,5,,,,3,,"Paudel, Ajaya B",,,,, +MATH,2417,006,6,4,2,3,5,2,2,2,2,,2,2,3,,,,3,,"Paudel, Ajaya B",,,,, +MATH,2417,007,8,7,5,2,3,5,1,2,1,1,,1,2,,,,2,,"Rakotomalala, Diarisoa Mihaja Andriamanisa",,,,, +MATH,2417,HN1,4,3,4,1,,1,1,,1,1,,,,,,,2,,"Ramakrishna, Viswanath","Ranpati Dewage, Manjula Mahesh K",,,, +MATH,2418,001,6,5,4,8,4,10,6,8,4,2,1,2,8,,1,,3,,"Murza, Adrian C",,,,, +MATH,2418,002,5,3,11,6,8,10,11,10,3,6,1,1,17,,,,4,,"Pereira, Luis Felipe F",,,,, +MATH,2418,003,6,6,1,4,5,9,8,9,1,4,4,2,8,,,,3,,"Adabrah, Anani Komla",,,,, +MATH,2418,004,9,3,4,4,6,5,11,11,7,8,4,3,15,,,,5,,"Arnold, Maxim",,,,, +MATH,2418,005,5,2,7,4,2,9,4,5,5,4,2,,11,,,,9,,"Adabrah, Anani Komla",,,,, +MATH,2418,006,1,6,4,4,6,4,4,2,4,3,3,4,13,,,,7,,"Wu, Cheyu J",,,,, +MATH,2418,007,5,7,8,10,11,8,11,13,6,1,1,4,9,,,,4,,"Murza, Adrian C",,,,, +MATH,2418,501,7,7,5,5,5,5,7,12,6,5,2,3,15,,,,8,,"Adabrah, Anani Komla",,,,, +MATH,2418,502,,3,3,3,3,6,5,6,4,4,4,4,15,,,,8,,"Wu, Cheyu J",,,,, +MATH,2419,001,3,1,6,1,2,3,3,,6,,,1,3,,,,2,,"Ahsan, Mohammad K",,,,, +MATH,2419,002,2,2,4,4,1,3,5,5,3,1,,1,4,,,,3,,"Ahsan, Mohammad K",,,,, +MATH,2420,001,,5,6,6,3,5,3,1,6,,,,3,,,,3,,"Patel, Jigarkumar S",,,,, +MATH,2420,002,,12,15,5,4,5,5,4,6,,2,,,,,,1,,"Patel, Jigarkumar S",,,,, +MATH,2420,003,8,7,9,6,4,4,4,1,6,,2,,,,,,1,,"Makarenkov, Oleg",,,,, +MATH,2420,004,,2,7,4,6,6,3,4,7,,1,,3,,,,1,,"Lazebnik, Kirill",,,,, +MATH,2420,005,4,8,8,3,4,4,5,4,4,,,,,,,,,,"Rachinskiy, Dmitry",,,,, +MATH,2420,HN1,6,8,1,1,1,1,,,1,,,1,,,,,,,"Dabkowski, Mieczyslaw K","Babbitt, Matthew W",,,, +MATH,2V90,5S1,,,,,,,,,,,,,,30,,,3,,"Nguyen, Mylinh T",,,,, +MATH,2V90,5S2,,,,,,,,,,,,,,24,,4,4,,"Dahal, Rabin",,,,, +MATH,3303,001,2,2,1,2,2,1,,,,,,,,,1,,,,"Lalani, Amin",,,,, +MATH,3310,001,4,10,7,2,,1,1,1,,,,,1,,,,,,"Dabkowski, Malgorzata A","Das, Richik",,,, +MATH,3310,002,4,13,15,4,,1,,,1,,,,,,,,,,"Dabkowski, Malgorzata A","Das, Richik",,,, +MATH,3311,001,6,2,1,1,1,,1,,,,,,,,,,,,"Dabkowski, Malgorzata A",,,,, +MATH,3311,002,3,2,2,2,,1,1,,1,,,,,,,,1,,"Dabkowski, Malgorzata A",,,,, +MATH,3315,001,10,12,9,10,4,2,3,,,,1,,1,,,,,,"Williams, Nathan F","Crane, Casey M",,,, +MATH,3323,001,4,3,1,2,1,2,1,2,2,,,,2,,,,1,,"Khan, Rizwanur","Babbitt, Matthew W",,,, +MATH,3351,001,6,9,2,,13,2,,5,3,1,1,,1,,2,,2,,"McKeown, Stephen","Liu, Jingzhou",,,, +MATH,3351,501,4,24,9,1,,1,,,,,,,,,,,2,,"Krawcewicz, Wieslaw Z","Liu, Jingzhou",,,, +MATH,3379,001,8,1,2,2,3,3,1,3,1,2,,1,6,,,,1,,"Dahal, Rabin",,,,, +MATH,4301,001,3,5,3,15,11,12,2,,3,,,,4,,,,1,,"Dabkowski, Mieczyslaw K","Zhou, Dilong",,,, +MATH,4301,002,5,2,3,3,3,,3,2,2,3,2,,4,,,,3,,"Ohsawa, Tomoki","Zhou, Dilong",,,, +MATH,4332,501,10,15,15,10,5,6,1,2,1,,,,,,,,,,"Adabrah, Anani Komla","Kaluduwage, Madhavi Dilshani Anuruddhika F",,,, +MATH,4334,002,,12,,,5,,,4,,,3,,2,,,,1,,"Biswas, Saikat","Sarkar, Soham",,,, +MATH,4341,001,2,3,2,,,3,,2,,,1,,1,,,,3,,"Coskunuzer, Baris","Tola, Astrit",,,, +MATH,4355,001,1,4,4,4,1,4,,1,2,2,,,2,,,,2,,"Ramakrishna, Viswanath","Ranpati Dewage, Manjula Mahesh K",,,, +MATH,5301,501,,5,,1,1,,,,,,,,,,,,3,,"Makarenkov, Oleg",,,,, +MATH,5303,001,,24,3,,,,,,,,,,1,,,,,,"Eydelzon, Anatoly","Hensley, Travis",,,, +MATH,6301,001,,7,,6,1,3,3,1,,,,,2,,,,1,,"Zweck, John W",,,,, +MATH,6311,001,,11,4,1,1,1,,,,,,,,,,,2,,"Arreche Aguayo, Carlos E","Billah, Misha",,,, +MATH,6312,001,,16,2,2,2,,,,,,,,,,,,1,,"Williams, Nathan F","Ghanem, Ziad G",,,, +MATH,6313,001,,5,,,10,,,1,,,,,,,,,,,"Biswas, Saikat","Chakraborty, Sayoni",,,, +MATH,6315,001,,5,6,1,4,,,1,,,,,,,,,,,"Arnold, Maxim",,,,, +MATH,6319,501,,3,4,3,2,,1,,,,,,1,,,,2,,"Ramakrishna, Viswanath",,,,, +MATH,6325,501,,12,,,1,,,,,,,,,,,,,,"Krawcewicz, Wieslaw Z","Ghanem, Ziad G",,,, +MATH,6345,001,,4,1,2,4,1,,,,,,,,,,,,,"Cao, Yan",,,,, +MATH,6346,001,,6,7,3,9,1,,,,,,,,,,,,,"Cao, Yan","Nuwagira, Brighton",,,, +MATH,7313,501,,15,1,,1,1,,,,,,,,,,,,,"Pereira, Luis Felipe F","Zhou, Dilong",,,, +MECH,1100,0W1,61,57,27,25,19,6,2,7,1,2,1,2,4,,,,,,"Rios, Oziel","Thamban, P L Stephan","Tajarenejad Abdollahi, Hassan",,, +MECH,1208,0W1,14,32,18,10,11,6,1,1,,,,,7,,,,,,"Thamban, P L Stephan","Angshu, Kazi T",,,, +MECH,2120,101,2,5,3,2,3,1,,2,,,,,1,,,,,,"Lu, Hongbing","Tayefeh Kazemi, Minoo",,,, +MECH,2120,102,10,6,2,,1,,2,,,,,,,,,,,,"Lu, Hongbing","Najafkhani Feijani, Fateme",,,, +MECH,2120,103,7,5,2,,3,2,,,,,,,1,,,,,,"Lu, Hongbing","Tayefeh Kazemi, Minoo",,,, +MECH,2120,104,4,6,2,2,1,,,,,,,,,,,,1,,"Lu, Hongbing","Jain, Rishika",,,, +MECH,2120,105,3,1,4,1,2,1,1,,,,,,,,,,,,"Lu, Hongbing","Najafkhani Feijani, Fateme",,,, +MECH,2310,001,6,9,,6,9,,3,7,,,4,,10,,,,5,,"Kumar, Golden","Nandigama, Purna Sai Pavan Kalyan",,,, +MECH,2310,002,2,15,6,8,4,4,1,3,7,,3,1,,,,,2,,"Thamban, P L Stephan","Miles, Drew",,,, +MECH,2320,002,,16,17,18,7,4,1,,,,,,1,,,,1,,"Zhou, Yue","Jamee, Tousif",,,, +MECH,2330,001,3,3,3,6,6,10,11,3,6,,,5,2,,,,,,"Rios, Oziel","Ban, Mingyang",,,, +MECH,3105,101,17,10,6,5,2,4,2,4,2,1,,,1,,,,,,"Rios, Oziel","Kulkarni, Rituja S",,,, +MECH,3105,102,9,9,5,2,5,3,1,3,,,,,3,,,,,,"Rios, Oziel","Kulkarni, Rituja S",,,, +MECH,3115,101,,4,6,1,5,,,1,,,,,,,,,,,"Jin, Yaqing","Gong, Pengyao",,,, +MECH,3115,102,14,3,3,,1,1,,,,,,,,,,,,,"Jin, Yaqing","Zani, Md. Rafsan",,,, +MECH,3115,103,16,5,,1,,,,,,,,,,,,,,,"Jin, Yaqing","Zani, Md. Rafsan",,,, +MECH,3115,104,4,4,4,,,,,,,,,,,,,,,,"Jin, Yaqing","Gong, Pengyao",,,, +MECH,3120,101,2,10,7,2,1,,,,,,,,,,,,,,"Hassanipour, Fatemeh","Gutierrez Pua, Lizeth D","Olapojoye, Abdullahi O","Charles, Daniel",, +MECH,3120,102,2,8,4,4,,2,,,,,,,,,,,,,"Hassanipour, Fatemeh","Gutierrez Pua, Lizeth D","Olapojoye, Abdullahi O","Charles, Daniel",, +MECH,3120,103,,6,13,3,,,,,,,,,,,,,,,"Hassanipour, Fatemeh","Charles, Daniel","Olapojoye, Abdullahi O","Gutierrez Pua, Lizeth D",, +MECH,3120,104,,7,11,4,,,,,,,,,,,,,,,"Hassanipour, Fatemeh","Gutierrez Pua, Lizeth D","Olapojoye, Abdullahi O","Charles, Daniel",, +MECH,3120,105,4,10,8,1,,,,,,,,,,,,,,,"Hassanipour, Fatemeh","Gutierrez Pua, Lizeth D","Olapojoye, Abdullahi O","Charles, Daniel",, +MECH,3120,106,3,6,9,2,1,,,,,,,,,,,,,,"Hassanipour, Fatemeh","Gutierrez Pua, Lizeth D","Olapojoye, Abdullahi O","Charles, Daniel",, +MECH,3150,101,1,6,5,5,5,2,5,,2,,,,,,,,,,"Park, Wooram","Li, Benquan",,,, +MECH,3150,102,,19,15,14,4,3,2,1,1,,,,,,,,,,"Park, Wooram","Li, Benquan",,,, +MECH,3305,0W1,9,10,5,2,3,6,2,5,1,1,2,,1,,,,2,,"Rios, Oziel","Kulkarni, Rituja S",,,, +MECH,3305,0W2,13,10,7,5,5,3,,3,1,1,,1,1,,,,,,"Rios, Oziel","Kulkarni, Rituja S",,,, +MECH,3310,001,6,10,11,8,6,1,2,,3,,,,,,,,,,"Xiong, Guoping","Keewan, Ashraf Z",,,, +MECH,3310,0H1,1,4,8,7,5,8,4,5,2,,,,,,,,,,"Ouyang, Hui","Guo, Yuhui",,,, +MECH,3315,001,10,26,19,7,2,,,,,,,,,,,,1,,"Jin, Yaqing","Manchikatla, Sankeerthana",,,, +MECH,3315,002,2,8,6,9,7,6,1,,,,,,,,,,,,"Yousefi, Kianoosh","Bizhan Pour, Ali",,,, +MECH,3315,003,9,,2,1,2,,,,1,,,,,,,,,,"Liu, Zhen",,,,, +MECH,3320,001,2,5,5,2,14,5,4,4,1,,,,1,,,,1,,"Jin, Xinfang","Rahimi, Hootan",,,, +MECH,3340,001,2,5,4,10,10,,3,2,,,,,2,,,,1,,"Li, Yaoyu","Abootorabi, Seyedalireza",,,, +MECH,3340,002,1,,,1,3,4,1,1,1,,,,1,,,,,,"Zare, Armin","Abootorabi, Seyedalireza",,,, +MECH,3350,001,1,20,6,11,9,6,9,5,1,,,,1,,,,1,,"Park, Wooram","Chowdhury, Md Tareq",,,, +MECH,3350,501,,3,6,7,3,4,7,6,3,1,,,1,,,,,,"Park, Wooram","Chowdhury, Md Tareq",,,, +MECH,3351,001,6,2,8,6,8,8,9,7,3,,,,2,,,,,,"Malik, Arif S","Hossain, Al-Mustasin A",,,, +MECH,3351,002,3,6,,3,3,,5,5,,1,2,,2,,,,1,,"Kumar, Golden",,,,, +MECH,3360,001,,6,8,10,9,6,4,1,,,,,,,,,,,"Minary-Jolandan, Majid","Mosadegh, Mahdi",,,, +MECH,3370,001,1,2,1,,3,,,1,1,1,,,,,,,1,,"Anderson, William C",,,,, +MECH,3381,001,5,19,10,5,11,3,2,,,,,,,,,,3,,"Li, Wei","Mysore Nagaraja, Kishore",,,, +MECH,3V95,001,,2,2,6,7,8,1,2,,,,,1,,,,,,"McCall, Kyle","Majumder, Haimanti",,,, +MECH,4110,101,7,5,6,2,2,,1,,,,,,,,,,,,"Wagner, Jonas R",,,,, +MECH,4110,102,9,6,3,1,1,1,,,1,,,,,,,,,,"Wagner, Jonas R",,,,, +MECH,4110,103,3,6,6,5,1,,1,1,,,,,,,,,,,"Wagner, Jonas R",,,,, +MECH,4110,104,1,5,9,3,3,,,,,,,,,,1,,,,"Wagner, Jonas R",,,,, +MECH,4110,105,2,7,7,2,2,2,,,1,,,,1,,,,,,"Wagner, Jonas R",,,,, +MECH,4310,001,6,5,2,10,8,8,6,6,5,,1,,,,,,3,,"Ruths, Justin","You, Shilin",,,, +MECH,4310,002,1,9,,5,10,,6,11,4,,4,,6,,,,,,"Rotea, Mario A","Lingad, Michael V",,,, +MECH,4320,001,2,7,5,2,1,6,,,,,,,,,,,2,,"Leonardi, Stefano","Tubije, John Michael B",,,, +MECH,4340,001,1,8,7,6,5,6,6,3,3,,,,1,,,,,,"Park, Wooram",,,,, +MECH,4360,001,,2,2,1,3,3,,,,,,,,,,,2,,"Auciello, Orlando H",,,,, +MECH,4381,001,,12,37,38,26,13,4,4,1,,,,,,,,,,"Hart, Robert A","Tjahjono, Nathaniel S",,,, +MECH,4382,001,,4,10,8,15,5,1,1,2,,,,,,,,,,"Hart, Robert A","Tjahjono, Nathaniel S",,,, +MECH,4V95,001,,6,13,,,,1,,,,,,1,,,,,,"Zhou, Yue","Jamee, Tousif",,,, +MECH,4V95,002,,6,2,3,4,,2,,,1,,,2,,,,1,,"Qian, Dong","Mysore Nagaraja, Kishore",,,, +MECH,4V95,0W1,2,2,8,3,7,4,2,2,6,,,,1,,,,2,,"Fadda, Dani Z","Bizhan Pour, Ali",,,, +MECH,6300,001,,3,2,4,3,1,,2,,,,,,,,,,,"Yurkovich, Stephen",,,,, +MECH,6303,001,,25,14,8,8,,,1,,,,,,,,,1,,"Tadesse, Yonas T","Singh, Abhishek P",,,, +MECH,6306,001,,20,2,3,3,,,,,,,,,,,,1,,"Lu, Hongbing","Rincon Montenegro, Juan C",,,, +MECH,6314,001,,9,3,,,1,,,,,,,,,,,,,"Spong, Mark W","Amoori, Ali R",,,, +MECH,6318,001,,18,4,3,1,2,,,,,,,1,,,,1,,"Zhang, Jie","Olojede, Damilola R",,,, +MECH,6325,001,,3,2,3,1,,1,,,,,,,,,,,,"Moheimani, Seyed Omid Reza",,,,, +MECH,6335,001,,4,2,2,2,,1,,,,,,,,,,,,"Stecke, Kathryn E","Syed Imran Uddin, Fnu",,,, +MECH,6337,001,,5,4,1,,,,,,,,,,,,,,,"Joshi, Bela","Amoori, Ali R",,,, +MECH,6350,001,,1,7,3,3,1,,,,,,,,,,,1,,"Leem, Juyoung",,,,, +MECH,6351,002,,12,2,,,,,,,,,,,,,,,,"Qian, Dong","Mysore Nagaraja, Kishore",,,, +MECH,6354,001,,1,5,8,4,4,,,,,,,,,,,,,"Bernal Montoya, Rodrigo A",,,,, +MECH,6370,001,,2,5,5,2,,1,,,,,,,,,,1,,"Yousefi, Kianoosh",,,,, +MECH,6374,001,,2,3,3,5,1,,1,,,,,2,,,,,,"Qin, Zhenpeng",,,,, +MECH,6V29,002,,3,5,2,,,,,,,,,,,,,,,"Abbas, Waseem",,,,, +MECH,6V69,003,,19,3,,,,,,,,,,,,,,,,"Xu, Yanwen",,,,, +MECH,7000,001,,,,,,,,,,,,,,,,,1,70,"Qian, Dong",,,,, +MECH,7392,001,,13,2,,,,,,,,,,1,,,,,,"Xu, Yanwen",,,,, +MECO,6303,0W1,,13,12,8,5,5,,2,,,,,2,,,,6,,"Lewin, Peter",,,,, +MECO,6303,501,,20,9,2,1,,,,,,,,,,,,,,"Lewin, Peter",,,,, +MECO,6303,MBC,,15,15,7,2,,,,,,,,,,,,,,"Zentner, Alejandro","Botcha, Sumana",,,, +MECO,6303,MBP,,12,3,1,9,1,,,,,,,,,,,,,"Zentner, Alejandro","Botcha, Sumana",,,, +MECO,6303,X01,,3,9,3,1,1,,,,,,,,,,,2,,"Kiser, Stephen L",,,,, +MECO,6345,001,,9,6,2,1,,,,,,,,,,,,,,"Cheung, Hung Yui",,,,, +MECO,7312,001,,13,9,3,,,,,,,,,,,,,,,"Chiong, Khai X",,,,, +MILS,180,101,,11,,,,,,,,,,,,,,,,,"Stevenson, Brian A",,,,, +MIS,6009,001,,,,,,,,,,,,,,,,,,36,"Bellamy, Michelle",,,,, +MIS,6009,091,,,,,,,,,,,,,,,,,,15,"Bellamy, Michelle",,,,, +MIS,6302,001,,5,7,4,3,,,,,,,,,,,,,,"Gondhalekar, Vasant","Patel, Krushang P",,,, +MIS,6308,001,,20,22,16,4,,,,,,,,,,,,,,"Srikanth, Kannan","Duddu, Sravanthi",,,, +MIS,6308,002,,20,13,7,8,3,3,6,,,,,,,,,,,"Raghunathan, Srinivasan","Yang, Yunxuan M",,,, +MIS,6308,003,,31,4,3,2,1,,,,,,,,,,,,,"Rogers-Purdy, Byron A","Patali, Krithika N",,,, +MIS,6308,004,,26,24,10,3,,,,,,,,,,,,,,"Sivaramakrishnan, Sriram","Sutaria, Anaysha Dimple",,,, +MIS,6308,0W1,,34,7,9,10,,,,,,,,,,,,,,"Raghunathan, Srinivasan","Yang, Yunxuan M",,,, +MIS,6308,501,,14,16,11,5,1,1,,,,,,,,,,1,,"Ezhil, Zivan P","Patali, Krithika N",,,, +MIS,6309,001,,21,10,8,10,,,,,,,,1,,,,,,"Lahiri, Atanu",,,,, +MIS,6309,002,,32,5,7,8,,3,,,,,,,,,,,,"Islam, Naser","Joshi, Khanjan D",,,, +MIS,6309,0W2,,18,2,12,9,1,3,,,,,,3,,,,1,,"Islam, Naser","Joshi, Khanjan D",,,, +MIS,6309,501,,24,3,13,9,1,3,1,,,,,1,,1,,,,"Islam, Naser","Joshi, Khanjan D",,,, +MIS,6309,503,,3,4,2,1,1,,3,,,,,,,,,,,"Paes, Antonio P",,,,, +MIS,6309,SW1,,7,4,6,1,1,,,,,,,,,,,,,"Bradbury, Judd D","Raghu, Tarun",,,, +MIS,6313,501,,15,8,21,2,,,,,,,,,,,,,,"Mookerjee, Vijay S","Ghosh, Debapratim",,,, +MIS,6313,5W1,,19,16,8,5,,,,,,,,,,,,,,"Sivaramakrishnan, Sriram","Sutaria, Anaysha Dimple",,,, +MIS,6313,MBP,,21,4,1,,,,,,,,,,,,,,,"Mookerjee, Vijay S","Ghosh, Debapratim",,,, +MIS,6319,001,,10,,,,,,,,,,,,,,,,,"Thompson, Luell O","Gondkar, Piyush Anil",,,, +MIS,6326,0W1,,7,5,4,5,,,,,,,,,,,,1,,"Ryu, Young U","Bachkaniwala, Jayraj",,,, +MIS,6326,501,,3,5,4,3,,,,,,,,,,,,,,"Ryu, Young U","Bachkaniwala, Jayraj",,,, +MIS,6330,001,,15,20,5,9,,,1,,,,,,,,,,,"Lahiri, Atanu","Ghosh, Debapratim",,,, +MIS,6330,501,,16,13,6,9,,,,,,,,,,,,1,,"Lahiri, Atanu","Ghosh, Debapratim",,,, +MIS,6330,502,,4,7,4,4,2,2,1,,,,,,,,,1,,"Ivaschenko, Alex","Revalkar, Shreyas Sanjay",,,, +MIS,6332,5W1,,16,,,,,,,,,,,,,,,,,"Thompson, Luell O","Patne, Saylee Pramod",,,, +MIS,6333,501,,1,10,9,4,1,1,,,,,,,,,,,,"Shroff, Tejas N","Chilukuri, Dheeraj R",,,, +MIS,6337,501,,4,3,2,3,2,,,,,,,,,,,,,"Mauriello, Joseph A","Tran, Bao G",,,, +MIS,6341,001,,2,5,1,1,1,,,,,,,,,,,,,"Meng, Zixuan","Sarraf, Keshav",,,, +MIS,6341,501,,,4,5,1,,,,,,,,,,,,,,"Meng, Zixuan","Sarraf, Keshav",,,, +MIS,6344,001,,9,13,7,9,3,1,9,,,,,1,,,,,,"Maru, Vatsal K","Paluru, Vaishnavi",,,, +MIS,6344,002,,3,13,5,9,5,,4,,,,,,,,,,,"Maru, Vatsal K","Paluru, Vaishnavi",,,, +MIS,6344,0W1,,6,9,9,9,,,,,,,,,,,,,,"Mehra, Amit","Paluru, Vaishnavi",,,, +MIS,6346,001,,11,4,8,1,,,,,,,,,,,,1,,"El-Youssef, Rami","Patel, Sakshi Jayesh",,,, +MIS,6346,501,,9,9,7,1,1,,,,,,,,,,,,,"Kamalzadeh, Hossein","Patel, Sakshi Jayesh",,,, +MIS,6346,503,,10,9,3,1,1,,,,,,,,,,,,,"El-khodari, Gasan E","Tiwari, Saksham",,,, +MIS,6347,001,,9,4,2,3,,1,1,,,,,1,,,,,,"Bradbury, Judd D","Paluru, Vaishnavi",,,, +MIS,6349,001,,5,17,6,1,,,,,,,,,,,,1,,"Samant, Mandar","Dhanasekaran, Janani",,,, +MIS,6349,003,,4,19,8,1,,,,,,,,,,,,,,"Samant, Mandar","Dhanasekaran, Janani",,,, +MIS,6349,004,,5,5,4,5,4,,,,,,,,,,,,,"Garapaty, Ramesh S",,,,, +MIS,6349,005,,1,16,18,4,,,,,,,,,,,,2,,"Shroff, Tejas N","Tailor, Sagar Rajeshbhai",,,, +MIS,6356,002,,7,2,1,,,,,,,,,,,,,,,"Zhang, Zhe","Rangala, Sai Nikhel",,,, +MIS,6356,004,,10,4,,,,,,,,,,,,,,,,"Zhang, Zhe","Rangala, Sai Nikhel",,,, +MIS,6356,006,,8,1,,1,,,,,,,,,,,,,,"Zhang, Zhe","Rangala, Sai Nikhel",,,, +MIS,6356,502,,5,1,5,6,,,,,,,,,,,,,,"Lee, Heeseung","Khan, Afnan Anwar",,,, +MIS,6360,002,,19,13,14,6,3,1,1,,,,,,,,,,,"Thouin, Mark F","Rajasekar, Magesh",,,, +MIS,6363,002,,15,16,5,6,1,1,1,,,,,,,,,,,"Song, Liugen",,,,, +MIS,6363,003,,15,5,4,3,2,,,,,,,,,,,,,"Pandian, Thiru","Nisthala, Venkat Bhargav",,,, +MIS,6363,005,,23,27,5,3,,,,,,,,,,,,,,"Nasir, Kamal","Sivakumar, Nithesh",,,, +MIS,6363,S01,,6,6,2,2,,,,,,,,1,,,,,,"Raheem, Abdul",,,,, +MIS,6368,001,,1,3,7,1,,,,,,,,,,,,,,"Thomas, Thomas K","Tailor, Sagar Rajeshbhai",,,, +MIS,6369,0W1,,9,3,2,3,2,1,,,,,,,,,,,,"Subramoniam, Ramesh","Nassa, Hardik",,,, +MIS,6369,501,,2,3,4,3,1,2,1,,,,,1,,,,,,"Subramoniam, Ramesh","Nassa, Hardik",,,, +MIS,6371,001,,2,1,5,3,,,,,,,,1,,,,,,"Islam, Naser","Joshi, Khanjan D",,,, +MIS,6375,502,,1,1,5,1,2,,,,,,,,,,,,,"Shermon, Anavir","Huang, Zhangfan",,,, +MIS,6378,001,,12,14,9,6,5,3,1,,,,,,,,,,,"Thanawalla, Moyez","Rajasekar, Magesh",,,, +MIS,6378,002,,21,12,8,9,3,1,3,,,,,,,,,1,,"Thanawalla, Moyez","Rajasekar, Magesh",,,, +MIS,6380,001,,7,6,2,4,4,1,,,,,,1,,,,,,"Bradbury, Judd D","Raghu, Tarun",,,, +MIS,6380,002,,13,17,17,5,1,1,2,,,,,,,,,,,"Islam, Naser","Rajendra, Chethan",,,, +MIS,6380,0W1,,4,2,6,6,,1,2,,,,,3,,,,,,"Bradbury, Judd D","Raghu, Tarun",,,, +MIS,6380,501,,16,22,9,9,,,,,,,,,,,,,,"Islam, Naser","Rajendra, Chethan",,,, +MIS,6382,001,,9,4,10,4,6,5,6,,,,,,,,,,,"Mookerjee, Radha V","Acharya, Pratiksha Bhaskar",,,, +MIS,6382,002,,4,12,9,3,2,6,3,,,,,,,,,1,,"Mookerjee, Radha V","Acharya, Pratiksha Bhaskar",,,, +MIS,6382,003,,10,15,6,5,,,,,,,,,,,,,,"Neouchi, Rabih","Parmar, Hitarth J",,,, +MIS,6382,0W1,,7,25,13,,,,2,,,,,,,,,2,,"Mookerjee, Radha V","Acharya, Pratiksha Bhaskar",,,, +MIS,6382,501,,10,8,9,16,,,,,,,,,,,,,,"Neouchi, Rabih","Parmar, Hitarth J",,,, +MIS,6382,502,,9,11,15,7,,,,,,,,,,,,2,,"Neouchi, Rabih","Parmar, Hitarth J",,,, +MIS,6382,503,,27,17,5,1,,,,,,,,,,,,,,"Maru, Vatsal K","Mudunuri, Devamsh Varma",,,, +MIS,6382,504,,8,4,6,3,,,,,,,,,,,,1,,"Neouchi, Rabih","Parmar, Hitarth J",,,, +MIS,6385,001,,11,1,2,1,1,,2,,,,,,,,,,,"Shekhar, Gaurav","Yadav, Abhishekkumar Rajaram",,,, +MIS,6389,001,,17,3,1,2,5,,,,,,,,,,,,,"Calisir, Engin","Sivakumar, Nithesh",,,, +MIS,6392,0W1,,4,5,3,4,1,,,,,,,,,,,,,"Mehra, Amit","Vissapragada, Ramya Rajeswari",,,, +MIS,6393,001,,8,5,2,3,,,,,,,,,,,,,,"Bose, Ashim","Khan, Afnan Anwar",,,, +MIS,6393,002,,9,6,1,3,2,1,,,,,,,,,,,,"Bose, Ashim","Khan, Afnan Anwar",,,, +MIS,6393,003,,10,11,1,4,,,,,,,,,,,,,,"Bose, Ashim","Khan, Afnan Anwar",,,, +MIS,6393,004,,5,18,18,,,6,12,,,,,,,,,,,"Lowe, Florence","Dhande, Pratik V",,,, +MIS,6V98,001,,,,,,,,,,,,,,,,,,102,"Bellamy, Michelle",,,,, +MIS,6V98,091,,,,,,,,,,,,,,,,,,17,"Bellamy, Michelle",,,,, +MKT,3300,001,12,32,11,3,1,1,,,,,,,,,,,,,"Egeland, Rita E",,,,, +MKT,3300,002,26,7,9,14,,,,1,,,,,,,,,,,"Madan, Anmol",,,,, +MKT,3300,003,,16,28,11,5,,,1,,,,,,,,,,,"Kim, Seung Mok",,,,, +MKT,3300,004,19,10,13,10,1,2,,1,,,,,,,,,,,"Miao, Jin",,,,, +MKT,3300,005,45,4,4,4,1,,,,,,,,1,,,,,,"Saremi, Ehsan",,,,, +MKT,3300,006,,8,5,9,9,11,4,4,2,2,,1,,,,,1,,"Wu, Fang","Shah, Sarjil Premal",,,, +MKT,3300,007,12,16,4,8,10,6,,,,1,,,1,,,,1,,"Mamadehussene, Samir","Kim, Changwon",,,, +MKT,3300,008,10,23,8,8,4,2,,1,2,,,,1,,,,,,"Mamadehussene, Samir","Kim, Changwon",,,, +MKT,3300,009,1,7,10,12,11,6,2,7,2,1,,,1,,,,,,"Wu, Fang","Shah, Sarjil Premal",,,, +MKT,3300,010,3,9,11,11,8,4,,,,,,,,,,,,,"Lim, Taewook",,,,, +MKT,3300,012,,1,9,11,6,9,6,1,1,1,,1,1,,,,1,,"Kirk-Rolley, Lori",,,,, +MKT,3300,013,,6,2,5,12,,6,4,1,3,1,,,,,,2,,"Rajaratnam, Daniel",,,,, +MKT,3300,0W1,,20,14,6,9,1,2,3,,,,,,,,,,,"Pahwa, Parneet","Dudeja, Shivika","Patangay, Shivani",,, +MKT,3300,0W2,,10,12,8,5,9,2,4,,,,,1,,,,2,,"Wu, Fang","Yu, Tongpu",,,, +MKT,3300,0W3,,7,6,6,11,5,7,5,,1,2,1,1,,,,2,,"Wu, Fang","Yu, Tongpu",,,, +MKT,3300,501,,10,,7,12,3,7,9,2,4,2,,1,,,,1,,"Rajaratnam, Daniel",,,,, +MKT,3300,502,4,7,8,6,9,1,,,,,,,2,,,,1,,"Mabruk, Zayd N",,,,, +MKT,3320,001,,5,5,10,18,11,5,2,,,,,,,,,,,"Wu, Fang","Yu, Tongpu",,,, +MKT,3330,001,8,5,5,2,3,2,,1,,,,1,1,,,,,,"Amirpour, Semiramis",,,,, +MKT,3330,002,,2,4,3,4,1,1,1,2,,1,,3,,,,1,,"Dale, Anita K",,,,, +MKT,3330,003,2,6,10,5,2,1,,,1,,,,2,,,,,,"Amirpour, Semiramis",,,,, +MKT,3330,004,6,8,10,1,2,1,2,,,,,,,,,,,,"Amirpour, Semiramis",,,,, +MKT,3330,005,,3,6,2,8,1,,5,,1,,,1,,,,,,"Dale, Anita K",,,,, +MKT,3330,006,10,6,1,3,3,2,1,,,,,1,1,,,,2,,"Amirpour, Semiramis",,,,, +MKT,3340,001,,4,1,7,14,2,9,3,1,,,,,,,,1,,"Rajaratnam, Daniel",,,,, +MKT,3340,501,12,26,17,6,1,,,,,1,,,,,,,,,"Hudelot, Loretta",,,,, +MKT,4090,091,,,,,,,,,,,,,,10,,,,,"Haworth, Julie B",,,,, +MKT,4330,001,5,8,11,5,,3,2,1,,,,1,,,,,,,"Clifton, Scott W",,,,, +MKT,4330,0W1,2,7,8,4,8,4,,3,2,1,1,2,,,,,1,,"Edsel, Alexander D",,,,, +MKT,4330,0W2,8,5,7,4,4,5,4,6,,1,,2,,,,,,,"Edsel, Alexander D",,,,, +MKT,4331,001,3,6,2,,6,2,,1,1,,1,2,4,,,,,,"Dover, Howard F",,,,, +MKT,4331,002,4,3,1,1,1,2,1,,2,,1,4,2,,,,,,"Dover, Howard F",,,,, +MKT,4332,001,3,7,,1,3,1,1,1,2,,,,,,,,3,,"Dover, Howard F",,,,, +MKT,4333,001,,9,11,4,,,1,,,,,,,,,,,,"Durow, Wesley",,,,, +MKT,4334,001,2,16,9,11,6,2,,1,,,,,,,,,,,"Pahwa, Parneet","Patangay, Shivani","Dudeja, Shivika",,, +MKT,4335,001,,,3,1,3,3,,1,1,,,,,,,,1,,"Dale, Anita K",,,,, +MKT,4336,501,1,4,10,6,4,1,,,,,,,,,,,,,"Durow, Wesley",,,,, +MKT,4337,001,4,17,18,2,1,1,,,1,,,,,,,,,,"Haworth, Julie B","Pandya, Nupurben J","Zhang, Weiheng",,, +MKT,4337,501,,8,14,10,1,,,,,,,,,,,,,,"Jha, Jalaj",,,,, +MKT,4338,501,,22,,,1,,,1,,,,,,,,,,,"Dickinson, Keith H",,,,, +MKT,4339,501,12,7,2,3,,,,,1,,,,,,,,,,"Clifton, Scott W",,,,, +MKT,4340,001,1,3,5,3,6,7,,1,,,,,,,,,,,"Kirk-Rolley, Lori",,,,, +MKT,4350,001,4,5,3,8,7,13,1,4,1,,,,,,,,1,,"Biswas, Abhijit","Patangay, Shivani","Chundru Venkateswara Prasad, Sai Thushara Chowdary",,, +MKT,4360,001,29,23,6,1,,,,,,,,,,,,,,,"Haworth, Julie B","Arora, Nishi",,,, +MKT,4360,501,5,18,24,6,2,1,2,,2,,,,,,,,,,"Albrecht, Maria",,,,, +MKT,4360,502,27,7,21,1,3,,,,1,,,,,,,,,,"Johnson, Quincy",,,,, +MKT,4395,001,6,31,12,1,,,,,,,,,,,,,,,"Egeland, Rita E",,,,, +MKT,6301,001,,10,1,12,8,,5,2,,,,,1,,,,,,"Rajaratnam, Daniel",,,,, +MKT,6301,0W1,,9,10,4,7,3,2,,,,,,,,,,,,"Biswas, Abhijit","Chundru Venkateswara Prasad, Sai Thushara Chowdary",,,, +MKT,6301,0W2,,2,8,6,13,6,1,2,,,,,,,,,,,"Biswas, Abhijit","Chundru Venkateswara Prasad, Sai Thushara Chowdary",,,, +MKT,6301,0W3,,26,8,6,9,,,,,,,,,,,,,,"Pahwa, Parneet","Dudeja, Shivika","Patangay, Shivani",,, +MKT,6301,0W5,,12,15,5,11,2,,,,,,,,,,,,,"Pahwa, Parneet","Dudeja, Shivika","Patangay, Shivani",,, +MKT,6301,501,,4,2,4,2,1,2,,,,,,,,,,,,"Rajaratnam, Daniel",,,,, +MKT,6301,5W1,,5,1,5,1,1,4,1,,,,,2,,,,,,"Rajaratnam, Daniel",,,,, +MKT,6301,AW1,,14,,,,,,,,,,,,,,,,,"Reichmuth, Gary",,,,, +MKT,6301,MBC,,10,8,17,9,,,1,,,,,,,,,,,"Rao, Ram C","Li, Peihan","Zhang, Weiheng","Pandya, Nupurben J",, +MKT,6309,501,,12,7,4,8,,3,2,,,,,,,,,,,"Rajaratnam, Daniel",,,,, +MKT,6310,001,,6,3,6,3,1,1,,,,,,,,,,,,"Biswas, Abhijit","Chundru Venkateswara Prasad, Sai Thushara Chowdary",,,, +MKT,6310,0W1,,5,3,10,5,,2,1,,,,,,,,,,,"Biswas, Abhijit","Chundru Venkateswara Prasad, Sai Thushara Chowdary",,,, +MKT,6321,0W1,,14,,7,14,1,1,,,,,,1,,,,,,"Edsel, Alexander D",,,,, +MKT,6330,0W1,,4,6,6,11,6,3,,,,,,,,,,,,"Biswas, Abhijit","Chundru Venkateswara Prasad, Sai Thushara Chowdary",,,, +MKT,6336,001,,8,6,7,,1,,,,,,,,,,,,,"Kuksov, Dmitri","Li, Peihan",,,, +MKT,6350,501,,4,4,5,1,,,,,,,,,,,,,,"Rao, Ram C","Li, Peihan",,,, +MKT,6352,001,,13,6,4,9,4,3,4,,,,,4,,,,,,"Tirone, Guido",,,,, +MKT,6352,0W1,,15,7,7,10,,4,1,,,,,3,,,,1,,"Tirone, Guido",,,,, +MKT,6374,5H1,,15,5,2,4,1,,,,,,,,,,,,,"Edsel, Alexander D",,,,, +MKT,6379,501,,12,9,5,2,,,1,,,,,1,,,,2,,"Mamadehussene, Samir",,,,, +MKT,6380,501,,7,3,5,1,1,1,,,,,,1,,,,,,"Nichols, Paul M",,,,, +MKT,6V98,001,,,,,,,,,,,,,,,,,,10,"Edsel, Alexander D",,,,, +MKT,6V99,501,,12,,,1,,,,,,,,,,,,,,"Goel, Vivek",,,,, +MSEN,5310,001,,3,3,1,3,1,,,,,,,1,,,,,,"Toher, Cormac","Zhang, Jiayi",,,, +MSEN,6319,001,,5,3,3,2,1,1,,,,,,1,,,,1,,"Fischetti, Massimo",,,,, +MSEN,7V80,001,,,,,,,,,,,,,,,,,,10,"Hsu, Julia W","Mia, Imon",,,, +MUSI,1306,0H1,17,17,,3,3,,1,1,1,,1,1,1,,,,1,,"Salisbury, Linda",,,,, +MUSI,1306,0H2,13,22,1,1,4,,,1,,,,,3,,,,1,,"Salisbury, Linda",,,,, +MUSI,1306,0W1,47,42,21,10,6,2,3,,,1,1,,2,,,,3,,"Bennett, Jason","Daneshvarkashkooli, Marjan",,,, +MUSI,1306,0W2,,44,14,19,8,4,4,1,,,,,,,,,2,,"Durbin, Kelly P",,,,, +MUSI,1306,501,,30,4,5,5,1,1,,,,1,,,,,,,,"Lapinski, Robert M",,,,, +MUSI,2113,501,4,15,2,,,,,,,,,,,,,,,,"Gerard, Lori A",,,,, +MUSI,2315,001,,11,3,,1,,,,,,,,,,,,1,,"Hodan, Daniel M",,,,, +MUSI,2315,002,8,5,1,2,1,,,,,,,,1,,,,1,,"Wilder, James E",,,,, +MUSI,2315,501,,12,3,,,,,,,,,,,,,,3,,"Hodan, Daniel M",,,,, +MUSI,2317,001,6,4,1,,1,,,1,,,,,,,,,,,"Arutyunyan, Artem",,,,, +MUSI,2317,002,10,2,1,,,,,,,,,,1,,,,1,,"Oh, Domi",,,,, +MUSI,2317,003,7,5,1,,,,,1,,,,,,,,,1,,"Arutyunyan, Artem",,,,, +MUSI,2319,001,,10,,,,,,1,,,,,1,,,,1,,"Durbin, Kelly P",,,,, +MUSI,2319,002,3,9,1,1,,,,,,,,1,1,,,,,,"Durbin, Kelly P",,,,, +MUSI,2321,001,9,10,8,3,4,3,,2,4,2,1,,1,,,,,,"Mei, Yuxin",,,,, +MUSI,2322,001,7,6,4,2,3,2,2,,1,,,,,,,,1,,"Gerard, Lori A",,,,, +MUSI,2322,0W1,18,4,,1,1,,2,1,,,,,,,,,,,"Bennett, Rodger",,,,, +MUSI,2325,001,,13,2,,,,,,,,,,,,,,,,"Riemer Bueckert, Nili S",,,,, +MUSI,2325,002,,14,,1,,,,,,,,,,,,,,,"Riemer Bueckert, Nili S",,,,, +MUSI,2328,001,6,4,2,3,,,,2,1,,,,1,,,,,,"Rushing, Katrina C",,,,, +MUSI,2328,002,9,5,2,1,2,1,1,,,,,,2,,,,1,,"Rushing, Katrina C",,,,, +MUSI,2329,001,6,4,2,1,1,2,,,1,,,,,,,,,,"Rushing, Katrina C",,,,, +MUSI,3112,001,,11,,,,,,,,,,,,,,,,,"Rodriguez, Robert X",,,,, +MUSI,3118,501,,45,,,,,,,,,,,,,,,,,"Ming, Adron",,,,, +MUSI,3120,501,,47,,,,,,,,,,,,,,,,,"Lapinski, Robert M",,,,, +MUSI,3127,001,,51,2,1,,,1,1,1,,,,,,,,1,,"Palant, Jonathan A",,,,, +MUSI,3181,001,7,4,,,,,,,,,,,,,,,,,"Oh, Domi",,,,, +MUSI,3186,001,,20,,,,,,,,,,,,,,,,,"Durbin, Kelly P",,,,, +MUSI,3229,001,4,17,,,1,,,,,,,,,,,,,,"Parsoneault, Catherine J",,,,, +MUSI,3328,001,9,2,,,,,,,,,,,,,,,,,"Rushing, Katrina C",,,,, +MUSI,3388,001,6,5,,,,,,,,,,,,,,,1,,"Oh, Domi",,,,, +MUSI,4185,001,,34,,,,,,,,,,,,,,,,,"Palant, Jonathan A",,,,, +NATS,1101,001,14,9,5,3,2,,2,1,1,,1,,2,,,,,,"Permenter, Meredith L",,,,, +NATS,1101,002,32,4,3,1,2,1,,,1,,,,,,,,,,"Treter, Donald R",,,,, +NATS,1101,003,16,11,7,2,2,2,,,1,1,,,1,,,,1,,"Treter, Donald R",,,,, +NATS,1101,004,26,12,1,2,1,,1,,,,,,,,,,,,"Biewer, Michael C",,,,, +NATS,1101,005,30,5,2,,1,2,,,1,,,,2,,,,,,"Biewer, Michael C",,,,, +NATS,1101,006,21,10,6,,2,,2,,,,,,3,,,,,,"Permenter, Meredith L",,,,, +NATS,1101,007,24,14,,1,1,1,1,,,,,,,,,,1,,"Meedel, Jennifer",,,,, +NATS,1101,008,31,10,,,2,,,,,,,,,,,,,,"Meedel, Jennifer",,,,, +NATS,1101,009,34,8,,1,,,,,,,,,,,,,,,"Kenney, Erica",,,,, +NATS,1101,010,34,6,2,1,,,,1,,,,,,,,,,,"Kenney, Erica",,,,, +NATS,1101,011,29,10,,,1,,1,3,,,,,,,,,,,"Elgin, Linda",,,,, +NATS,1101,012,27,10,,1,,2,,1,,,,,,,,,,,"Elgin, Linda",,,,, +NATS,1101,013,19,8,,3,6,,1,1,,,1,,2,,,,,,"Polio, Jose J",,,,, +NATS,1101,014,24,5,,4,6,,,2,,,1,,2,,,,,,"Polio, Jose J",,,,, +NATS,1142,001,9,3,7,,,1,,,,,,1,,,,,,,"Lalani, Amin",,,,, +NATS,1142,002,10,1,2,1,,,,1,,,,,3,,,,,,"Hennessy, Emily T",,,,, +NATS,1142,003,13,3,2,,,,,1,,,,1,,,,,,,"Hennessy, Emily T",,,,, +NATS,1142,004,10,3,,1,1,1,,,,,,,,,,,,,"Kirkland, Pamela I",,,,, +NATS,1142,005,13,2,3,,1,,,,,,,,1,,,,,,"Kirkland, Pamela I",,,,, +NATS,1142,006,3,9,3,1,1,1,,,2,,,,,,,,,,"Gregory, Denise",,,,, +NATS,1143,001,2,7,1,1,1,,,,,,1,,1,,,,,,"Donaldson, Katherine E",,,,, +NATS,1311,001,8,12,7,8,14,16,12,6,4,,3,,1,,1,,1,,"Hairston, Marc R","Gogoi, Antareep",,,, +NATS,2333,HN1,25,,,,,,,,,,,,,,,,,,"Taylor, Stephanie M","Randolph, Erika D","Torres, Cristina A",,, +NATS,3341,001,20,3,1,1,,,,,,,,,,,,,1,,"Dorsey, Floyd Z",,,,, +NATS,3341,002,20,1,1,,2,,1,,,,,,2,,,,,,"Dorsey, Floyd Z",,,,, +NATS,3343,001,,8,4,1,2,,,,,,,,,,,,,,"Gregory, Denise",,,,, +NATS,4100,051,,,,,,,,,,,,,,26,,2,,,"Krawietz, Paul",,,,, +NSC,3361,001,12,29,41,27,23,20,29,26,37,,30,,6,,3,,9,,"Miller, Van S",,,,, +NSC,3361,002,4,7,9,5,5,6,5,6,12,,11,,2,,,,3,,"Taylor, Anna M","Eshbaugh, Kaitlyn Q",,,, +NSC,3361,003,8,16,20,5,5,9,10,5,4,3,3,2,3,,,,2,,"Sultana, Rukhsana","Kroon, Samantha L",,,, +NSC,3361,004,19,16,5,3,2,2,,,,1,,,,,,,,,"Marks, William","Okolie, Ifunanya M",,,, +NSC,3361,005,7,11,15,6,9,8,4,4,1,3,,,2,,,,2,,"McWilliams, Steven P","Edun, Fiyinfoluwa F",,,, +NSC,3361,006,2,4,2,2,,2,3,2,3,2,2,,4,,,,,,"Oleksiak, Cecily",,,,, +NSC,3361,HN1,3,13,3,1,2,3,,,,,,,,,,,,,"LaDow, Eva S",,,,, +NSC,3361,HN2,5,13,3,1,2,,,,,,1,,,,,,,,"LaDow, Eva S",,,,, +NSC,4310,001,17,1,6,2,1,,1,,1,,,,,,,,,,"Miller, Van S",,,,, +NSC,4320,0W1,39,4,1,1,,1,,,1,,,,,,,,,,"Jahangiri, Faisal R",,,,, +NSC,4320,0W2,4,2,10,5,,2,1,1,,1,,2,2,,,,,,"Oleksiak, Cecily",,,,, +NSC,4351,001,9,11,2,1,,,,,,,,,,,,,,,"Miller, Van S",,,,, +NSC,4351,002,32,,,1,1,,,,1,,,,,,,,,,"Jahangiri, Faisal R",,,,, +NSC,4352,001,30,1,6,2,2,1,,,1,,,,1,,,,,,"Zwierzchowski, Amy",,,,, +NSC,4352,002,16,15,13,4,6,3,3,1,2,1,,2,,,,,1,,"Raboune, Siham","Ashshareef, Salma",,,, +NSC,4352,HN1,1,12,4,1,1,,2,,,,,,,,,,4,,"LaDow, Eva S",,,,, +NSC,4353,101,1,5,4,1,,,,,,,,,,,,,,,"McWilliams, Steven P","Casmedes, Isabella Y",,,, +NSC,4353,102,2,6,4,,,,,,,,,,,,,,2,,"Raboune, Siham",,,,, +NSC,4353,103,,2,8,1,1,,,,,,,,1,,,,,,"Raboune, Siham","Valencia, Julianna P",,,, +NSC,4353,105,7,7,1,,,,,,,,,,,,,,,,"Zwierzchowski, Amy","Boston, Bethany",,,, +NSC,4353,107,2,6,4,1,,,,,,,,,1,,,,,,"Marks, William","Kim, Minsung",,,, +NSC,4353,108,6,1,1,,,,,1,,,,,,,,,2,,"Taylor, Anna M","Campen, Catherine E",,,, +NSC,4353,109,5,9,1,,,,,,,,,,,,,,,,"Zwierzchowski, Amy",,,,, +NSC,4354,001,17,28,24,14,7,3,7,4,,,,1,1,,,,,,"Marks, William","Yang, Ke",,,, +NSC,4354,002,26,5,16,3,6,3,3,3,2,1,,1,1,,,,1,,"Engineer, Crystal T","El Zoghby, Yara T",,,, +NSC,4356,001,,5,,,3,,,4,,,,,,,,,,,"Sultana, Rukhsana",,,,, +NSC,4356,002,,16,,,18,,,11,,,6,,1,,,,2,,"Eagle, Andrew L","Mousavi, Seyedeh Leila",,,, +NSC,4359,501,1,19,,,12,,,2,,,3,,,,,,,,"Rypma, Bart P","Ma, Jessica",,,, +NSC,4362,001,,1,4,1,,1,,1,2,,1,,3,,,,,,"Nguyen, Lena H",,,,, +NSC,4363,001,,90,,,5,,,1,,,,,,,,,,,"Dussor, Gregory O","Schaub, Mandee",,,, +NSC,4363,002,4,7,3,5,5,1,2,1,2,1,,,,,,,2,,"Raboune, Siham",,,,, +NSC,4364,0W1,1,41,1,,1,1,,,,,,,,,,,,,"Shareef, Safi Ullah","Kian, Saeid",,,, +NSC,4366,001,,23,,,13,,,7,,,4,,3,,,,2,,"Solodkin, Ana J","Rodriguez, Daniella",,,, +NSC,4366,002,5,10,7,8,12,3,4,1,1,,3,,2,,1,,1,,"Taylor, Anna M","Green, Audrey",,,, +NSC,4372,0W1,,5,11,20,10,4,1,3,1,,,,,,,,2,,"Burton, Michael D","Ramos Freitas, Lindsey E",,,, +NSC,4373,0W1,22,20,21,6,4,6,2,2,2,,,,,,,,,,"Marks, William","Krauth, Melissa",,,, +NSC,4373,0W2,1,2,7,3,1,1,5,2,,,,,3,,,,1,,"Oleksiak, Cecily",,,,, +NSC,4377,001,7,2,1,1,1,,,2,1,,2,,2,,,,,,"Miller, Van S",,,,, +NSC,4381,001,,30,,,3,,,,,,,,,,,,3,,"Thorn, Catherine A",,,,, +NSC,4382,0W1,93,17,7,1,,1,,,,,,,,,,,1,,"Jahangiri, Faisal R","Nematgorgani, Shiva",,,, +NSC,4388,001,4,10,9,6,,,,,,,,,,,,,,,"McWilliams, Steven P",,,,, +NSC,4389,001,4,2,2,1,1,,,1,,,,,,,,,,,"Ofen, Noa",,,,, +NSC,4V90,001,13,7,2,2,,,,,,,,,,,,,,,"Zwierzchowski, Amy",,,,, +NSC,4V95,001,,,,,,,,,,,,,,14,,,,,"Landrum, Payton E",,,,, +NSC,4V96,005,,,,,,,,,,,,,,10,,,,,"Zwierzchowski, Amy",,,,, +NSC,4V98,005,,,,,,,,,,,,,,13,,,,,"Gu, Zirong",,,,, +NSC,4V98,033,,,,,,,,,,,,,,11,,,1,,"Thorn, Catherine A",,,,, +OB,6152,X01,,17,3,,,,,,,,,,,,,,,,"Hicks, Robert F",,,,, +OB,6248,CW1,,31,,,,,,,,,,,,,,,1,,"Hicks, Robert F",,,,, +OB,6253,CW1,,,,,,,,,,,,,,,3,,1,17,"Warner, Lizette",,,,, +OB,6301,001,,4,12,5,6,2,,,,,,,,,,,,,"Hicks, Jeffrey N",,,,, +OB,6301,0W1,,40,20,6,3,2,,2,,,,,,,,,1,,"Hasenhuttl, Maria","Shen, Jia",,,, +OB,6301,0W2,,13,2,1,1,1,,,,,,,,,,,,,"Hasenhuttl, Maria",,,,, +OB,6301,501,,16,22,4,,4,,2,,,,,,,,,1,,"Hicks, Jeffrey N",,,,, +OB,6301,CW1,,20,6,,,,,,,,,,,,,,,,"Ghosh, Anne F",,,,, +OB,6301,CW2,,22,,,,,,,,,,,,,,,1,,"Bianco-Mathis, Virginia",,,,, +OB,6301,GW1,,9,9,1,3,,,2,,,,,,,,,,,"Hicks, Jeffrey N",,,,, +OB,6301,GW2,,21,,,,,,,,,,,2,,,,,,"Dowse, Eileen",,,,, +OB,6301,MBC,,25,17,2,,1,,,,,,,,,,,,,"Hicks, Jeffrey N",,,,, +OB,6301,X01,,14,3,,1,1,,,,,,,,,,,2,,"Hicks, Jeffrey N",,,,, +OB,6331,501,,27,,,,,,,,,,,,,,,,,"Hasenhuttl, Maria",,,,, +OB,6332,001,,41,,,3,,,,,,,,,,,,,,"Ziegler, Laurie L","Salehi Heidari, Samira",,,, +OB,6332,0W1,,27,3,,6,1,,1,,,,,,,,,,,"Ziegler, Laurie L","Salehi Heidari, Samira",,,, +OB,6332,0W2,,26,7,2,,,1,2,,,,,,,,,,,"Wu, Junfeng","Jiang, Ning",,,, +OB,6332,0W3,,24,,2,9,,,,,,,,,,,,,,"Ziegler, Laurie L","Salehi Heidari, Samira",,,, +OB,6334,CW1,,14,7,6,2,2,,,,,,,1,,,,1,,"Latham, Van M",,,,, +OB,6348,CW1,,18,1,1,,,,,,,,,1,,,,,,"Plaisance Bryan, Suzette T",,,,, +OB,6348,CW2,,26,,,,,,,,,,,,,,,,,"Narro, Amber J",,,,, +OB,6350,CW1,,17,8,1,5,,,,,,,,,,,,1,,"Hicks, Robert F",,,,, +OB,6352,CW1,,16,3,,1,,,,,,,,,,,,1,,"Warner, Lizette",,,,, +OB,6357,CW1,,18,,,,,,,,,,,,,,,,,"Dixon, Nancy","Gregory, James",,,, +OB,6370,CW1,,5,4,1,1,,,,,,,,1,,,,,,"Latham, Van M",,,,, +OB,6377,CW1,,25,,4,2,,,,,,,,,,,,,,"Plaisance Bryan, Suzette T",,,,, +OB,6378,CW1,,8,2,,2,,,,,,,,1,,,,,,"Albrecht, Dale J",,,,, +OB,6379,CW1,,7,4,1,,,,,,,,,,,1,,,,"Albrecht, Dale J",,,,, +OB,6383,CW1,,8,1,1,1,,,,,,,,,,,,,,"Norton, Larry W",,,,, +OBHR,3310,001,2,14,21,17,4,3,,,,,,,,,,,,,"Huang, He",,,,, +OBHR,3310,002,3,6,6,8,7,15,5,4,6,,3,,,,,,2,,"Skuza, Agnieszka","Venkumahanti, Rachana S",,,, +OBHR,3310,003,5,27,18,4,5,,1,,,,,,,,,,,,"Kautz, Jason D",,,,, +OBHR,3310,004,5,7,12,5,6,14,2,5,5,1,,,,,,,,,"Skuza, Agnieszka","Venkumahanti, Rachana S",,,, +OBHR,3310,005,3,10,24,10,8,3,1,,,,,,,,,,,,"Kautz, Jason D",,,,, +OBHR,3310,501,,16,10,17,8,1,2,3,,1,,,1,,,,1,,"Lee, Barbara H",,,,, +OBHR,3310,502,7,17,18,11,3,3,1,,,,,,,,,,,,"Kautz, Jason D",,,,, +OBHR,3310,503,,7,13,14,17,7,,2,,1,,,1,,,,,,"Lee, Barbara H",,,,, +OBHR,3330,001,7,15,1,1,16,1,2,8,1,,2,,,,,,4,,"Morris, Mark","Kim, Hwayoung","Lu, Renjie",,, +OBHR,3330,002,,10,14,13,10,8,8,1,,,,,,,,,,,"Meda, Edward","Acharya, Vishruth","Jiang, Ning",,, +OBHR,3330,003,4,10,9,2,19,9,1,,3,,1,,1,,,,1,,"Weekley, Jeffrey A","Hanchinal, Aditya A",,,, +OBHR,3330,004,,7,25,8,4,3,1,,,,,,,,,,,,"Meda, Edward","Acharya, Vishruth","Jiang, Ning",,, +OBHR,3330,005,,8,12,12,7,11,5,2,4,,,,2,,,,2,,"Meda, Edward","Acharya, Vishruth","Jiang, Ning",,, +OBHR,3330,006,48,4,,2,3,,,1,1,,,,,,,,,,"Albrecht, Dale J","Jiang, Rui",,,, +OBHR,3330,007,7,5,11,3,16,9,1,6,,,,,2,,,,1,,"Weekley, Jeffrey A","Hanchinal, Aditya A",,,, +OBHR,3330,501,1,21,3,3,6,2,,3,,2,,,2,,,,1,,"Morris, Mark","Kim, Hwayoung","Lu, Renjie",,, +OBHR,3330,502,,12,3,5,13,2,2,4,1,1,1,,,,,,3,,"Morris, Mark","Kim, Hwayoung","Lu, Renjie",,, +OBHR,4300,001,49,,,,,,,,,,,,,,,,,,"Edgington, Kyle D",,,,, +OBHR,4310,001,46,7,,2,4,,,,,,,,,,,,,,"McNulty, Diane S","Barden, John P",,,, +OBHR,4331,501,5,4,2,4,1,,,,1,,,,,,,,,,"Albrecht, Dale J",,,,, +OBHR,4333,501,2,3,12,3,2,,1,1,1,,,1,,,,,,,"Albrecht, Dale J",,,,, +OBHR,4334,001,2,2,4,,8,2,,,,,,,,,,,,,"Weekley, Jeffrey A","Hanchinal, Aditya A",,,, +OBHR,4335,501,,6,5,7,4,,2,,,,,,,,,,,,"Meda, Edward","Acharya, Vishruth","Jiang, Ning",,, +OBHR,4339,001,9,9,1,3,2,,,,1,,,,,,,,,,"Albrecht, Dale J","Frias, Noel E",,,, +OBHR,4354,001,3,12,9,3,2,,2,,,,,,,,,,,,"Meda, Edward","Acharya, Vishruth","Jiang, Ning",,, +OPRE,3310,001,4,16,24,6,3,3,2,1,,,,,1,,,,,,"Alborz, Shawn",,,,, +OPRE,3310,002,,3,8,,13,14,,18,,,1,,2,,,,,,"Parks, David","Sharma, Rahul",,,, +OPRE,3310,003,,9,14,5,7,10,5,4,3,1,,,1,,,,1,,"Mirzaeian, Neda","Marar, Abhijit",,,, +OPRE,3310,004,5,7,12,16,13,5,2,,,,,,,,,,,,"Shahsavand, Parisa",,,,, +OPRE,3310,005,6,18,,10,11,8,4,1,1,,,,,,1,,,,"Qi, Anyan","Ghosh, Pramit",,,, +OPRE,3310,006,6,12,7,5,18,6,4,1,1,,,,,,,,,,"Wang, Mengxin","Ghosal, Shayak",,,, +OPRE,3310,007,6,12,4,6,17,5,2,2,2,,,,,,,,4,,"Wang, Mengxin","Ghosal, Shayak",,,, +OPRE,3310,008,,2,4,,8,20,,14,4,,4,,2,,,,2,,"Parks, David","Sharma, Rahul",,,, +OPRE,3310,009,1,12,12,12,5,2,3,6,1,3,,,,,,,2,,"Kennedyd, Sarmann I","Verma, Samarth","Bandyopadhyay, Ishani",,, +OPRE,3310,010,4,6,14,7,12,4,6,3,1,,1,2,,,,,,,"Kennedyd, Sarmann I","Bandyopadhyay, Ishani","Verma, Samarth",,, +OPRE,3310,011,3,5,8,13,9,5,4,4,1,1,5,1,,,,,1,,"Kennedyd, Sarmann I","Verma, Samarth","Bandyopadhyay, Ishani",,, +OPRE,3310,0W1,15,18,7,7,7,3,1,2,,,,,,,,,,,"Widdifield, David S",,,,, +OPRE,3310,0W2,,9,,8,32,,2,6,,,2,,,,,,,,"Subramoniam, Ramesh","Udata, Bhaskara Ravi Teja",,,, +OPRE,3310,501,,35,,8,13,,,4,,,,,,,,,,,"Hogan, James W",,,,, +OPRE,3320,001,1,,2,3,4,5,1,4,4,,2,,4,,,,1,,"Fatehi, Soraya","Yan, Tianyu",,,, +OPRE,3330,001,4,11,5,7,8,9,7,7,5,1,,1,,,,,3,,"Kennedyd, Sarmann I","Bandyopadhyay, Ishani","Verma, Samarth",,, +OPRE,3330,002,13,13,11,7,6,6,1,1,1,,,,,,,,,,"Alborz, Shawn",,,,, +OPRE,3330,0W1,19,8,11,5,6,4,1,2,1,,,,1,,,,1,,"Alborz, Shawn",,,,, +OPRE,3330,0W2,25,11,5,6,5,4,2,,1,1,,,,,,,,,"Alborz, Shawn",,,,, +OPRE,3333,001,,12,18,16,6,7,5,3,,,,,2,,,,1,,"Nguyen, Hien T","Trivedi, Prachi Rajendra",,,, +OPRE,3333,002,3,5,18,10,6,9,3,4,5,,,,4,,,,1,,"Oguzman, Neslihan",,,,, +OPRE,3333,003,6,13,6,8,10,3,4,5,4,1,,3,4,,,,2,,"Brussolo, Monica E","Bendigeri, Bhushan","Lohia, Varun",,, +OPRE,3333,004,3,17,4,9,8,4,3,2,4,3,1,3,5,,,,3,,"Enayaty Ahangar, Negin","Talathi, Aryan U",,,, +OPRE,3333,005,17,7,7,4,8,3,6,6,,1,3,3,1,,1,,1,,"Ahadi, Khatereh","Saxena, Mani","Gatne, Sushmita Sunil",,, +OPRE,3333,006,6,15,5,5,10,5,9,4,,3,,,2,,,,2,,"Whalen, Tristan G","Mukhopadhyay, Avik",,,, +OPRE,3333,0W1,3,14,10,3,4,5,4,2,3,2,2,1,5,,,,11,,"Enayaty Ahangar, Negin","Talathi, Aryan U",,,, +OPRE,3333,0W2,3,14,4,8,2,9,4,1,2,3,1,2,5,,,,11,,"Enayaty Ahangar, Negin","Talathi, Aryan U",,,, +OPRE,3333,501,4,7,7,6,11,5,6,3,7,2,1,3,3,,,,1,,"Sajjadi, Seyed R",,,,, +OPRE,3340,001,2,11,3,4,2,2,5,2,,2,1,,7,,,,5,,"Enayaty Ahangar, Negin","Talathi, Aryan U",,,, +OPRE,3340,501,13,6,3,2,3,9,2,5,2,3,2,2,6,,,,2,,"Whalen, Tristan G","Mukhopadhyay, Avik",,,, +OPRE,3360,001,1,2,4,11,6,7,3,8,9,5,2,2,1,,,,2,,"Woldu, Malgorzata",,,,, +OPRE,3360,002,13,12,5,9,6,3,3,5,2,2,1,3,,,,,1,,"Ramezani, Rasoul","Shankar, Nandhakumar Raj",,,, +OPRE,3360,003,2,15,9,10,8,13,4,2,,,,,1,,,,1,,"Chen, Mingliu","Yan, Tianyu",,,, +OPRE,3360,004,,9,3,7,14,4,4,8,2,5,3,,2,,,,4,,"Wang, Yining","Cheerla, Anirudh Reddy",,,, +OPRE,3360,005,9,11,4,8,1,5,8,4,3,3,5,,,,,,3,,"Farzaneh, Mohammad Amin",,,,, +OPRE,3360,006,12,9,5,6,5,6,8,2,5,2,,4,,,,,1,,"Ramezani, Rasoul","Shankar, Nandhakumar Raj",,,, +OPRE,3360,007,7,3,7,6,6,9,5,3,4,3,3,5,,,,,2,,"Ramezani, Rasoul","Shankar, Nandhakumar Raj",,,, +OPRE,3360,008,,6,4,6,6,4,3,6,3,7,3,1,6,,,,5,,"Toptal, Aysegul","Sibam, Patnala",,,, +OPRE,3360,009,1,13,5,8,4,6,4,6,2,2,,1,8,,,,3,,"Toptal, Aysegul","Sibam, Patnala",,,, +OPRE,3360,010,4,19,,24,7,3,3,2,,1,1,,,,,,,,"Qin, Qi","Jiang, Shanlin",,,, +OPRE,3360,011,2,12,9,7,13,13,6,,,,,,1,,,,1,,"Chen, Mingliu","Yan, Tianyu",,,, +OPRE,3360,012,2,6,12,4,3,6,7,5,4,,5,,3,,,,2,,"Bu, Like",,,,, +OPRE,3360,0W1,2,8,12,13,10,6,3,4,4,1,,,1,,,,1,,"Brussolo, Monica E","Bendigeri, Bhushan",,,, +OPRE,3360,0W2,6,22,4,7,12,2,4,2,,1,2,2,,,,,,,"Brussolo, Monica E","Bendigeri, Bhushan",,,, +OPRE,3360,502,12,8,10,9,7,9,3,2,1,1,,1,,,,,1,,"Ahadi, Khatereh","Saxena, Mani","Gatne, Sushmita Sunil",,, +OPRE,4310,001,2,5,2,4,5,7,1,2,2,2,,,1,,,,,,"Ramanathan, Kannan","Chaparla, Grashma Srihita","Podugu, Kanakadurga",,, +OPRE,4320,001,,1,1,5,8,5,6,2,2,1,,,,,,,,,"Subramoniam, Ramesh","Nassa, Hardik",,,, +OPRE,4330,501,,5,5,3,3,6,,1,1,,4,,,,,,3,,"Frazelle, Andrew","Sharma, Rahul",,,, +OPRE,4340,0W1,2,9,7,8,8,5,5,2,1,,2,,1,,,,,,"Hu, Bin","Wei, Jiarui",,,, +OPRE,4345,001,1,8,4,3,,1,,1,,,,,,,,,,,"Durow, Wesley",,,,, +OPRE,4350,001,3,8,2,9,2,4,2,1,,1,,,,,,,1,,"Sethi, Avanti P","Dutta, Sayantan",,,, +OPRE,4350,501,3,2,1,3,4,1,4,2,1,,,,,,,,,,"Sethi, Avanti P",,,,, +OPRE,4357,001,2,3,,,3,2,,1,,,,1,,,,,,,"Naseri, Mo",,,,, +OPRE,4362,001,9,9,8,4,7,1,3,2,,,,,,,,,,,"Widdifield, David S",,,,, +OPRE,4V91,001,5,16,11,4,2,1,1,,,,,,,,,,,,"Brussolo, Monica E","Lohia, Varun",,,, +OPRE,6301,001,,9,4,5,9,6,4,,,,,,,,,,,,"Sethi, Avanti P","Dutta, Sayantan",,,, +OPRE,6301,002,,16,4,9,1,1,4,4,,,,,1,,,,1,,"Ahadi, Khatereh","Saxena, Mani","Gatne, Sushmita Sunil",,, +OPRE,6301,003,,5,1,,7,7,7,5,,,,,3,,1,,,,"Wang, Shouqiang","Jiang, Shanlin",,,, +OPRE,6301,5W1,,15,8,8,3,,1,2,,,,,2,,,,1,,"Leach, Sonia E","Lohia, Varun",,,, +OPRE,6301,AW1,,11,2,,,,,,,,,,,,,,1,,"Kim, Dohyeong",,,,, +OPRE,6301,CH1,,13,3,2,1,2,,,,,,,,,,,,,"Kim, Dohyeong",,,,, +OPRE,6301,CW1,,9,2,1,1,,,,,,,,,,1,,,,"Kim, Dohyeong",,,,, +OPRE,6301,GW1,,6,2,,,1,,,,,,,1,,1,,,,"Bush, Rhonda L",,,,, +OPRE,6301,MBC,,4,3,2,7,6,4,2,,,,,2,,,,,,"Wang, Shouqiang","Jiang, Shanlin",,,, +OPRE,6301,MBP,,13,2,5,2,3,,,,,,,,,,,3,,"Sethi, Avanti P","Dutta, Sayantan",,,, +OPRE,6301,XW1,,9,1,1,4,,,,,,,,,,,,2,,"Bush, Rhonda L",,,,, +OPRE,6302,001,,10,17,8,4,1,,,,,,,1,,,,2,,"Janakiraman, Ganesh","Marar, Abhijit",,,, +OPRE,6302,002,,8,15,15,10,1,,,,,,,,,,,,,"Wang, Guihua","Tahergandomabadi, Mohammadmahdi",,,, +OPRE,6302,0W1,,10,5,5,10,4,,4,,,,,1,,,,2,,"Leach, Sonia E","Lohia, Varun",,,, +OPRE,6302,501,,4,5,5,5,1,,,,,,,1,,,,,,"Mirzaeian, Neda","Marar, Abhijit",,,, +OPRE,6302,AW1,,15,2,1,2,,,,,,,,,,,,,,"Leach, Sonia E",,,,, +OPRE,6302,CW1,,14,6,1,3,,,,,,,,,,,,,,"Ladipo, Anna",,,,, +OPRE,6302,CW2,,18,7,1,2,1,,,,,,,,,,,,,"Ladipo, Anna",,,,, +OPRE,6302,GW1,,14,2,1,2,,,,,,,,1,,,,,,"Ladipo, Anna",,,,, +OPRE,6303,0W1,,16,4,6,13,3,1,3,,,,,2,,,,3,,"Sethi, Avanti P","Singh, Manjot",,,, +OPRE,6304,001,,10,4,4,13,4,,,,,,,,,,,,,"Wang, Mengxin","Ghosal, Shayak",,,, +OPRE,6325,501,,4,4,2,1,,,,,,,,,,,,,,"Wang, Guihua","Tahergandomabadi, Mohammadmahdi",,,, +OPRE,6332,001,,9,3,7,2,1,1,4,,,,,,,,,,,"Ramanathan, Kannan","Chaparla, Grashma Srihita","Podugu, Kanakadurga",,, +OPRE,6332,002,,10,11,12,9,1,,,,,,,1,,1,,2,,"Rios Uribe, Ignacio A","Ghosh, Pramit",,,, +OPRE,6332,003,,6,1,,1,,,2,,,,,,,,,,,"Katok, Elena M","Chen, Qiuxia",,,, +OPRE,6332,0W1,,5,2,,6,1,,1,,,,,,,,,,,"Ramanathan, Kannan","Chaparla, Grashma Srihita","Podugu, Kanakadurga",,, +OPRE,6332,0W2,,6,7,3,3,6,,7,,,,,3,,,,3,,"Ramanathan, Kannan","Chaparla, Grashma Srihita","Podugu, Kanakadurga",,, +OPRE,6332,501,,11,6,2,1,,,3,,,,,2,,,,1,,"Ramanathan, Kannan",,,,, +OPRE,6341,0W1,,8,8,5,6,1,,,,,,,1,,,,,,"Honhon, Dorothee B","Chen, Qiuxia",,,, +OPRE,6359,001,,9,3,8,5,1,,,,,,,,,,,,,"Sethi, Avanti P","Singh, Manjot",,,, +OPRE,6359,002,,4,5,4,2,1,1,2,,,,,,,,,,,"Toptal, Aysegul","Sibam, Patnala",,,, +OPRE,6359,003,,14,3,2,1,4,4,,,,,,1,,,,,,"Whalen, Tristan G","Mukhopadhyay, Avik",,,, +OPRE,6359,005,,8,2,1,1,,2,,,,,,,,,,1,,"Whalen, Tristan G","Mukhopadhyay, Avik",,,, +OPRE,6359,006,,1,3,,4,1,1,3,,,,,1,,,,,,"Toptal, Aysegul","Sibam, Patnala",,,, +OPRE,6359,0W2,,14,6,1,2,3,,4,,,,,,,,,4,,"Ahadi, Khatereh","Saxena, Mani","Gatne, Sushmita Sunil",,, +OPRE,6359,501,,3,,2,1,1,1,2,,,,,,,,,,,"Ramezani, Rasoul","Nguyen, Trung B",,,, +OPRE,6362,001,,2,3,3,2,5,,1,,,,,,,,,,,"Kennedyd, Sarmann I","Bandyopadhyay, Ishani","Verma, Samarth",,, +OPRE,6362,0W1,,16,12,4,2,2,,,,,,,,,,,,,"Alborz, Shawn",,,,, +OPRE,6364,0W1,,6,2,3,2,,1,1,,,,,2,,,,,,"Ramanathan, Kannan","Chaparla, Grashma Srihita","Podugu, Kanakadurga",,, +OPRE,6366,0W1,,6,3,2,3,4,1,5,,,,,4,,,,,,"Leach, Sonia E","Lohia, Varun",,,, +OPRE,6366,501,,5,1,1,3,,,,,,,,,,,,,,"Leach, Sonia E","Lohia, Varun",,,, +OPRE,6367,001,,24,,,,,,,,,,,,,,,,,"Parks, David",,,,, +OPRE,6369,0W1,,9,6,6,2,,,,,,,,,,,,,,"Subramoniam, Ramesh","Nassa, Hardik",,,, +OPRE,6369,501,,13,9,8,3,,,2,,,,,1,,,,,,"Subramoniam, Ramesh","Nassa, Hardik",,,, +OPRE,6370,501,,24,8,4,7,,,,,,,,2,,,,,,"Sabri, Ehap H","Nguyen, Trung B",,,, +OPRE,6371,001,,12,10,14,10,7,1,,,,,,,,,,,,"Hu, Bin","Wei, Jiarui",,,, +OPRE,6371,0W1,,2,4,3,1,1,,1,,,,,,,,,,,"Katok, Elena M","Chen, Qiuxia",,,, +OPRE,6372,PW1,,7,4,1,,,1,,,,,,,,,,,,"Cazares, Joseph",,,,, +OPRE,6373,PW1,,6,7,,,,,,,,,,,,,,,,"Cazares, Joseph",,,,, +OPRE,6378,001,,3,16,11,5,3,,,,,,,,,,,,,"Widdifield, David S",,,,, +OPRE,6378,0W1,,4,9,15,4,1,,,,,,,,,,,,,"Widdifield, David S",,,,, +OPRE,6379,501,,5,5,4,2,1,1,,,,,,1,,,,,,"Rajamani, Divakar","Tahergandomabadi, Mohammadmahdi",,,, +OPRE,6382,0W1,,35,1,1,,1,,1,,,,,1,,,,,,"Vicario, Joseph A","Divin, Diane T",,,, +OPRE,6V98,001,,,,,,,,,,,,,,,,,,27,"Fierst, John","Widdifield, David S",,,, +OPRE,7051,001,,,,,,,,,,,,,,,,,,14,"Sethi, Suresh P",,,,, +OPRE,7353,001,,6,7,4,4,,,,,,,,,,,,,,"Wang, Yining",,,,, +PA,2325,001,,9,1,,2,1,,,,,1,,,,,,,,"Benavides, Abraham",,,,, +PA,2325,HN1,2,18,1,,,,,,,,,,,,,,,,"Harrington, James","Lee, Moonsoo",,,, +PA,3333,0W1,17,4,5,2,2,,,1,,,,1,3,,,,,,"Zeraatpisheh, Abdollah",,,,, +PA,3355,001,,7,4,1,1,,1,,,,,,,,,,,,"Russell Murray, Allison R",,,,, +PA,3380,0W1,,15,2,2,,,,1,3,,,,,,,,,,"Suk, Jinju",,,,, +PA,3382,001,,8,,,1,,,1,,,,,,,,,,,"McCaskill, John R",,,,, +PA,4350,001,,4,2,2,1,,,1,,,,,,,,,,,"Russell Murray, Allison R",,,,, +PA,4386,0W1,36,14,6,3,3,1,1,1,1,,,2,3,,,,,,"Maxwell, Sarah P",,,,, +PA,6311,501,,18,,,,,,,,,,,,,,,,,"McCaskill, John R",,,,, +PA,6313,501,,19,,,,,,,,,,,,,,,,,"McCaskill, John R","Pavel, Md Eyasin Ul Islam",,,, +PA,6320,501,,10,,1,,,,,,,,,,,1,,,,"McCandless, Sean",,,,, +PA,6321,001,,10,,,,,,,,,,,,,,,,,"Benavides, Teodoro J",,,,, +PA,6345,501,,9,,,,,,,,,,,,,1,,,,"McCandless, Sean",,,,, +PA,6348,0W1,,13,,,,,,,,,,,,,,,,,"Benavides, Teodoro J",,,,, +PA,6370,0W1,,5,4,,,,,1,,,,,,,,,,,"Tura, Memduh",,,,, +PA,6382,0W1,,15,,3,,1,,,,,,,,,,,1,,"Searing, Elizabeth A","Wicker, Brandy M","Stevens, Sah-Jay",,, +PA,6387,0W1,,10,,,,,,,,,,,,,,,,,"Searing, Elizabeth A","Wicker, Brandy M","Stevens, Sah-Jay",,, +PA,6399,501,,10,,,,,,,,,,,,,,,,,"McCaskill, John R",,,,, +PHIL,1301,001,2,33,,3,33,,4,24,,2,11,,4,,,,3,,"Amato, Lawrence A",,,,, +PHIL,1301,002,10,5,6,4,,1,1,,,,,,1,,,,1,,"Tsou, Jonathan Y",,,,, +PHIL,1307,001,,45,,4,36,,3,15,,,5,,4,,,,3,,"Amato, Lawrence A",,,,, +PHIL,2303,001,4,2,3,2,4,2,3,,2,,1,,2,,,,3,,"Campos, Laura Graciela",,,,, +PHIL,4322,001,,5,1,3,,1,1,,,,,,,,,,1,,"Bambach, Charles R",,,,, +PHIL,4331,001,,4,5,,1,1,,,,1,,,3,,1,,1,,"Gonzalez Nunez, Humberto J",,,,, +PHIL,4333,001,,10,,2,1,2,2,,,,,,1,,,,1,,"Davies, Katherine",,,,, +PHIL,6325,001,,9,2,,,,,,,,,,,,,,,,"Davies, Katherine",,,,, +PHIN,1120,001,,22,,,,,,,,,,,,,,,1,,"Gold, Terry",,,,, +PHIN,1120,002,,19,,,,,,,,,,,,,,,2,,"Gold, Terry",,,,, +PHIN,1121,001,,12,,,,,,,,,,,1,,,,1,,"Bell, John S",,,,, +PHIN,2125,001,,10,,,,,,,,,,,,,,,1,,"Gold, Terry",,,,, +PHYS,1100,001,1,,,,,,,,,,,,,29,,,,,"Goncalves Pinheiro, Alexandre",,,,, +PHYS,1101,101,3,18,2,4,1,,1,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Niloy, Md Shaid Hasan",,, +PHYS,1101,102,1,20,3,1,1,,,,2,,,,1,,,,,,"Khan, Amena L","Kadala, Roger H","Niloy, Md Shaid Hasan",,, +PHYS,1101,103,,26,2,1,,,,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Koirala, Babita",,, +PHYS,1101,104,5,19,3,,,1,,1,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Ali, Akbar",,, +PHYS,1101,105,,20,7,,,,1,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Desai, Amogh N",,, +PHYS,1101,106,,20,5,,1,1,1,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Desai, Amogh N",,, +PHYS,1101,107,1,22,2,2,1,1,,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Ali, Akbar",,, +PHYS,1101,601,,16,2,3,2,1,2,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Koirala, Babita",,, +PHYS,1102,101,11,12,,,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Imran, Tuhin Muhammad",,, +PHYS,1102,102,,13,11,,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya",,,, +PHYS,1102,103,12,9,2,,1,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Kamble, Nisha Vinay",,, +PHYS,1102,104,2,7,14,,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Rezvani, Sina",,, +PHYS,1102,105,4,15,2,2,1,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Rezvani, Sina",,, +PHYS,1102,106,6,12,2,,,1,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Seifi, Melodee O","Xie, Yunan",, +PHYS,1102,107,7,15,,,,,,,,,,,1,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Shamma, Abeda Sultana",,, +PHYS,1102,108,8,16,,,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Shamma, Abeda Sultana",,, +PHYS,1102,601,8,14,1,,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Obenza, Alexander M",,, +PHYS,1102,602,4,13,1,,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Obenza, Alexander M",,, +PHYS,1301,001,17,17,16,13,12,11,8,8,8,3,3,3,4,,1,,4,,"Penev, Kaloyan M","Jafarzadeh, Seyed Javad",,,, +PHYS,1301,501,92,10,3,,,,,,,,,,,,,,,,"Goncalves Pinheiro, Alexandre","Smith, Sean S",,,, +PHYS,1302,001,11,16,21,8,18,14,4,20,,,,1,1,,,,2,,"Zhu, Qingyu","Lin, Manshuo",,,, +PHYS,1302,002,52,26,1,10,9,2,5,8,1,1,,,2,,,,,,"Kadala, Roger H","Seifi, Melodee O",,,, +PHYS,2125,101,11,17,,,,,,,,,,1,1,,,,,,"Khan, Amena L","Kadala, Roger H","Crawford, John A",,, +PHYS,2125,102,8,15,4,,,2,,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Kajla, Rohit",,, +PHYS,2125,103,1,28,,1,,,,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Wu, Yuxiang",,, +PHYS,2125,104,6,19,1,,,1,,,,,,,2,,,,,,"Khan, Amena L","Kadala, Roger H","Ghosh, Bishal K",,, +PHYS,2125,105,,22,2,4,1,,1,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Nadella, Sahithi",,, +PHYS,2125,106,3,22,3,,,,,,,,,,1,,,,,,"Khan, Amena L","Kadala, Roger H","Awoyinka, Tunde D",,, +PHYS,2125,107,9,13,2,4,,,,,,,1,,,,,,,,"Khan, Amena L","Kadala, Roger H","Kapte, Isha Sunil",,, +PHYS,2125,108,5,16,2,2,1,1,,,,,1,1,,,,,,,"Khan, Amena L","Kadala, Roger H","Ghosh, Bishal K",,, +PHYS,2125,109,4,19,3,,,,,2,,,,,2,,,,,,"Khan, Amena L","Kadala, Roger H","Magadi Shivalingaiah, Meghraj",,, +PHYS,2125,110,3,20,2,1,,,,,,,2,,1,,,,,,"Khan, Amena L","Kadala, Roger H","Magadi Shivalingaiah, Meghraj",,, +PHYS,2125,111,4,22,1,,,1,,,,,,,2,,,,,,"Khan, Amena L","Kadala, Roger H","Yadav, Priti",,, +PHYS,2125,112,7,14,1,1,2,1,1,1,,,,,,,,,1,,"Khan, Amena L","Kadala, Roger H","Awoyinka, Tunde D",,, +PHYS,2125,113,9,16,2,,,,,1,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Crawford, John A",,, +PHYS,2125,114,5,20,1,2,,1,,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Zhao, Kehui",,, +PHYS,2125,115,6,16,2,1,,,,2,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Kajla, Rohit",,, +PHYS,2125,116,6,20,1,1,1,,,1,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Jafarzadeh, Seyed Javad",,, +PHYS,2125,117,3,20,1,1,1,,1,,1,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Yadav, Priti",,, +PHYS,2125,601,11,12,1,3,1,,,,,,,1,,,,,,,"Khan, Amena L","Kadala, Roger H","Kapte, Isha Sunil",,, +PHYS,2125,602,2,20,1,2,2,1,1,,,,,,,,,,,,"Khan, Amena L","Kadala, Roger H","Wu, Yuxiang",,, +PHYS,2126,101,8,15,4,1,1,,,,,,,,1,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Modumudi, Sai Madhav",,, +PHYS,2126,102,12,16,,,,,,,,,,,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Aker, Adam",,, +PHYS,2126,103,20,6,,1,,,,,,,,,,,,,1,,"Saleh, Lamya","Mac Alevey, Paul J","Pineda, Crosby",,, +PHYS,2126,104,14,8,2,1,,,1,,,,,,,,,,1,,"Saleh, Lamya","Mac Alevey, Paul J","Ruwali, Shisir",,, +PHYS,2126,105,14,12,2,,,,,,,,,1,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Shrestha, Samyak",,, +PHYS,2126,106,1,16,6,3,2,1,,,,,,,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Seifi, Melodee O",,, +PHYS,2126,107,,7,14,4,1,,,,,,,,,,,,1,,"Saleh, Lamya","Mac Alevey, Paul J",,,, +PHYS,2126,108,7,16,3,1,,1,,,,,,,1,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Neubauer, Brennan B",,, +PHYS,2126,109,5,13,3,1,,,,,1,,,,,,,,2,,"Saleh, Lamya","Mac Alevey, Paul J","Neubauer, Brennan B",,, +PHYS,2126,110,10,14,3,2,,,,1,,,,,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Sapkota, Dipak",,, +PHYS,2126,111,19,3,2,1,1,1,,,,,,,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Imran, Tuhin Muhammad","Kamble, Nisha Vinay",, +PHYS,2126,112,8,17,2,1,,1,,,,,1,,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Palos, Rylee K",,, +PHYS,2126,113,17,9,2,,1,,,,,,,,,,,,1,,"Saleh, Lamya","Mac Alevey, Paul J","Ahmad, Faiz",,, +PHYS,2126,114,13,10,4,2,,,,,,,,,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Patra, Rittik",,, +PHYS,2126,115,24,3,,,1,,,,,,,,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Pineda, Crosby",,, +PHYS,2126,116,13,11,,1,,,,,1,,,,,,,,2,,"Saleh, Lamya","Mac Alevey, Paul J","Rahman, Md. Musfiqur",,, +PHYS,2126,117,3,16,3,,1,,1,,1,,,,1,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Palos, Rylee K",,, +PHYS,2126,118,7,12,5,,,,,2,,1,,,,,,,1,,"Saleh, Lamya","Mac Alevey, Paul J","Imran, Tuhin Muhammad",,, +PHYS,2126,119,4,24,1,,,,,,,,,,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J",,,, +PHYS,2126,120,19,10,1,,,,,,,,,,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Kader, Md Joadul",,, +PHYS,2126,121,17,10,1,,,,,,,,,1,,,,,,,"Saleh, Lamya","Mac Alevey, Paul J","Shrestha, Samyak","Neubauer, Brennan B",, +PHYS,2126,122,13,3,,,,,,,,,,,2,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Patra, Rittik",,, +PHYS,2126,123,21,3,,1,,,,,,,,,1,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Rahman, Md. Musfiqur",,, +PHYS,2126,124,26,3,,,,,,,,,,,1,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Kader, Md Joadul",,, +PHYS,2126,125,15,13,1,1,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Sapkota, Dipak",,, +PHYS,2126,601,4,6,1,1,,,,1,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Ahmad, Faiz",,, +PHYS,2126,602,5,4,1,,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Modumudi, Sai Madhav",,, +PHYS,2126,603,9,13,2,2,,1,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Kamble, Nisha Vinay","Imran, Tuhin Muhammad",, +PHYS,2126,604,11,17,1,,,,,,,,,,,,,,,,"Mac Alevey, Paul J","Saleh, Lamya","Ruwali, Shisir",,, +PHYS,2303,001,6,7,5,6,2,,,1,,,,,1,,,,,,"Khan, Amena L","Gogoi, Antareep",,,, +PHYS,2325,001,201,15,3,3,,,1,3,,,,,2,,,,4,,"Lv, Bing","Goncalves Pinheiro, Alexandre","Khalid, Muhammad",,, +PHYS,2325,002,33,55,18,27,35,15,14,17,9,4,6,4,6,,,,2,,"Ishak-Boushaki, Mustapha","Sooriyaarachchi, Vinu K",,,, +PHYS,2325,003,7,10,5,7,14,13,16,13,7,4,2,5,15,,,,7,,"Goeckner, Matthew J","Allen, Cody R",,,, +PHYS,2326,001,64,31,27,18,12,7,10,9,7,2,4,3,2,,,,3,,"Saleh, Lamya","Lochridge, Matthew D",,,, +PHYS,2326,002,2,8,13,11,24,25,14,28,16,3,9,6,14,,,,14,,"Smith, Aaron","Ryan, Conor",,,, +PHYS,2326,003,2,29,23,32,39,37,10,4,5,3,,1,2,,,,6,,"Gartstein, Yuri","Arabiat, Aya H",,,, +PHYS,2326,004,16,61,22,25,62,18,9,5,4,,,,4,,,,7,,"Lumata, Lloyd L",,,,, +PHYS,3330,001,5,4,2,3,2,2,,1,,1,1,,1,,,,1,,"King, Lindsay J","McNally, Christina M",,,, +PHYS,3380,001,2,6,,,3,2,2,1,2,,,,2,,,,,,"Anderson, Phillip C","Tonoian, David",,,, +PHYS,3411,501,,3,,2,1,1,1,1,1,1,,,2,,,,1,,"Mac Alevey, Paul J","Patel, Mahammed Suleman",,,, +PHYS,3416,001,4,1,,2,3,2,1,7,2,,4,,6,,1,,1,,"Malko, Anton","Smith, Sean S",,,, +PHYS,4301,001,3,6,4,6,1,2,1,1,,1,,,3,,,,2,,"Gartstein, Yuri","Xie, Yunan",,,, +PHYS,4340,001,2,3,5,,2,,,,,,,,1,,,,1,,"Zeng, Bei","Gupta, Arunaday",,,, +PHYS,4352,001,11,8,5,4,,1,,,,,,,1,,,,,,"Vasko, Ivan","Tonoian, David",,,, +PHYS,4373,101,,10,,,,,,,,,,,,,,,,,"Slinker, Jason D","Adams, Austen C",,,, +PHYS,5301,001,,4,3,2,1,1,2,,,,,,,,,,,,"Mac Alevey, Paul J","Patel, Mahammed Suleman",,,, +PHYS,5311,001,,10,,,2,,,2,,,,,,,,,,,"Kesden, Michael H","Aker, Adam",,,, +PHYS,5322,001,,1,3,3,5,,,,,,,,,,,,1,,"Zhang, Xiaojia","Zhao, Kehui",,,, +PHYS,6300,001,,6,3,1,6,3,,,,,,,,,1,,,,"Lee, Mark","Allen, Cody R",,,, +PPOL,4396,002,2,1,5,2,,,,,,,,,,,,,,,"Clark, Amanda","Chang, Gary","Bi, Hanying",,, +PPOL,4396,003,3,3,1,,1,1,,1,,,,,,,,,,,"Clark, Amanda","Chang, Gary",,,, +PPPE,6301,501,,3,5,2,1,2,,,,,,,,,,,,,"Cisneros Tersitsch, Marco Elias","Singh, Sonali",,,, +PPPE,6302,001,,8,4,1,,,,,,,,,,,,,,,"Sobolev, Anton",,,,, +PPPE,6302,501,,6,4,2,1,,,,,,,,,,,,,,"Sobolev, Anton",,,,, +PPPE,6303,501,,1,8,3,1,,,,,,,,,,,,,,"Zhang, Pengfei","Khan, Humza",,,, +PPPE,6310,501,,4,16,5,1,,,,,,,,,,,,,,"Fass, Simon M",,,,, +PPPE,6315,501,,6,4,,,,,,,,,,,,,,,,"Howe, Nathaniel M",,,,, +PPPE,6329,001,,13,2,,,,,,,,,,,,,,,,"Tura, Memduh",,,,, +PPPE,6340,001,,10,,,,,,,,,,,,,,,,,"Scotch, Richard K",,,,, +PSCI,3301,HN1,3,11,3,,,1,,,,,,,,,,,,,"Dow, Douglas C",,,,, +PSCI,3303,001,3,5,12,7,13,7,,5,,1,1,1,2,,,,3,,"Gray, Thomas R","Kim, Pyung",,,, +PSCI,3310,501,8,7,12,5,5,1,,,1,,,,,,,,,,"Sipos, Savannah M",,,,, +PSCI,3325,001,4,7,11,7,13,12,6,4,4,1,,,4,,,,2,,"Lowry, Robert C","Shafiq, Sadman",,,, +PSCI,3328,001,38,19,13,6,4,2,,3,,1,,1,,,,,2,,"Edgerton, Jared","Bin Kamal, Md Khalid",,,, +PSCI,4307,001,3,1,1,1,,1,,1,,,1,,1,,,,,,"Brandt, Patrick T","Hoque, Rafsanul",,,, +PSCI,4319,001,,10,28,4,4,4,,,1,,,1,,,,,,,"Bram, Curtis","Cincotta, Mamie G",,,, +PSCI,4323,HN1,5,14,,,,,,,,,,,,,,,,,"Roetzel Ossenfort, Natalie J",,,,, +PSCI,4328,001,6,24,5,,,1,3,1,,,1,,,,,,,,"Santoro, Lauren A","Islam, Maria",,,, +PSCI,4329,001,1,9,9,12,31,8,7,2,1,,1,,3,,,,1,,"Peinhardt, Clint W","Shin, Hanna","Alfa, Victor L",,, +PSCI,4341,001,2,11,9,10,4,10,5,,,,1,,3,,,,,,"Miller, Banks P","Hollis, Camron",,,, +PSCI,4363,001,1,15,5,5,15,4,1,2,,,,,,,,,,,"Cheruvu, Sivaram","Tompkins, Kayleigh S",,,, +PSCI,4370,HN1,24,19,5,,,,,,,,,,,,,,,,"Chin, Michelle L","Snead, Adrian","Piazza, John","LaMura, Sandra","Guillory, Emmanual", +PSCI,4372,HN1,,48,,,,,,,,,,,,,,,,,"Daly, John A","Chin, Michelle L",,,, +PSCI,4373,HN1,,46,1,1,,,,,,,,,,,,,,,"Mbyirukira, Shema N","Warbrick, Malcolm","Bergendorff, Karlee","Browne, Vanesa","Chin, Michelle L", +PSCI,4377,001,3,3,2,11,10,1,,,,,,1,1,,,,1,,"Stewart, Marianne C","Yin, Huiyan",,,, +PSCI,4396,001,4,13,5,3,3,3,,,,,1,,,,,,,,"Gray, Thomas R","Elmore, Naela",,,, +PSCI,4396,002,,3,12,5,4,2,,,,,,,1,,,,,,"Pinckney, Jonathan","Wang, Ariel A",,,, +PSCI,4V66,501,21,,,,,,,,,,,,,,,,,,"Seagroves, Tony A",,,,, +PSCI,4V67,HN1,7,8,1,,,,,,,,,,,,,,,,"Joiner, Joanne",,,,, +PSCI,4V76,HN1,48,,,,,,,,,,,,,,,,,,"Warbrick, Malcolm","Ramanathan, Subhasri","Chin, Michelle L",,, +PSCI,6302,001,,6,4,1,2,,,,,,,,,,,,,,"Sobolev, Anton",,,,, +PSCI,6303,501,,5,11,8,3,1,,,,,,,,,,,,,"Zhang, Pengfei","Khan, Humza",,,, +PSCI,6315,501,,10,10,,,1,,,,,,,,,,,,,"Howe, Nathaniel M",,,,, +PSCI,6321,001,,7,5,3,2,,,,,,,,,,,,,,"Cheruvu, Sivaram",,,,, +PSCI,6350,001,,6,3,1,1,,,,,,,,,,,,,,"Edgerton, Jared","Pillai, Maitreyi M",,,, +PSCI,6355,501,,2,5,5,,,,,,,,,,,,,,,"Pinckney, Jonathan",,,,, +PSY,2301,001,,32,27,19,15,12,10,1,3,,2,2,5,,,,2,,"Brody, Salena M","Hafiz, Mariam",,,, +PSY,2301,002,7,25,18,17,10,13,10,6,6,3,3,1,8,,,,2,,"Ybarra, Regina K","Wang, Bangjie","Prince, Erin",,, +PSY,2301,0W1,,41,21,21,14,21,7,5,9,,2,4,12,,,,11,,"Brody, Salena M","Coats, Ummi K","Sierra, Francisco J",,, +PSY,2301,0W2,45,77,32,17,7,9,3,2,1,,2,,3,,,,,,"Sasson, Noah J","Calderon, Rachel M","Pezanko, Luke",,, +PSY,2301,HN1,8,6,7,1,2,,1,,,,,,,,,,,,"Devdas, Neetha R",,,,, +PSY,2301,HN2,9,6,5,1,2,,1,,,,,,,,,,,,"Devdas, Neetha R",,,,, +PSY,2314,001,9,17,17,13,11,5,6,1,6,3,2,3,7,,,,,,"Atchison, Kristin J","Padilla Cardoso, Mayra A",,,, +PSY,2314,0W1,,12,24,7,19,6,7,8,7,1,2,2,3,,,,2,,"Drew, Linda M","Hsieh, Uan-Luen",,,, +PSY,2317,001,10,10,6,6,2,2,3,,1,,,,3,,,,2,,"Atchison, Kristin J","Batchalli Maruthy, Gayathri",,,, +PSY,2317,0W1,,47,6,6,4,2,,3,1,,,,1,,,,,,"Fearon, Danielle","Behboudi, Mohammad Hossein",,,, +PSY,2317,0W2,,28,9,3,7,2,1,1,2,1,1,3,2,,,,,,"Ruggero, Camilo J","Brown, Tracy",,,, +PSY,3100,001,9,2,1,,,,,,,,,,,,,,,,"Large, Adrienne N",,,,, +PSY,3310,001,,145,,,24,,,6,,,3,,6,,,,,,"Timmons, Lisa N","Delfosse, Camille M",,,, +PSY,3310,0W1,,98,3,2,7,1,1,1,,,1,,1,,,,,,"Bonner, Deborah","Gutierrez, Alyssa M",,,, +PSY,3331,001,32,13,13,7,12,7,2,3,1,4,6,2,5,,,,1,,"Park, Bo Kyung","Han, Eun Jin",,,, +PSY,3331,0H1,,28,10,10,22,14,11,13,5,3,,,7,,,,5,,"Huxtable-Jester, Karen J","Telidevara, Amrita Kaushik",,,, +PSY,3332,001,,31,9,5,10,3,2,4,,,3,,4,,,,,,"Holub, Shayla C","Heinrich, Melissa D",,,, +PSY,3336,001,3,2,3,5,3,4,,,,,,,1,,,,1,,"Atchison, Kristin J",,,,, +PSY,3338,001,1,4,4,1,2,1,3,1,2,,1,1,,,,,,,"Tang, Alva","Kim, Taesun",,,, +PSY,3339,0H1,,7,3,3,9,3,4,2,1,,3,,7,,,,,,"Huxtable-Jester, Karen J","Sudheesh, Athul",,,, +PSY,3342,0W1,,56,,,1,,,1,,,2,,,,,,,,"Bonner, Deborah","Liu, Yiyao",,,, +PSY,3352,001,,3,9,4,9,6,5,4,3,3,1,1,6,,,,2,,"Skinner, Margaret","Izurieta Munoz, Haydee S",,,, +PSY,3360,0W1,2,14,31,13,31,17,4,6,9,2,5,2,1,,,,1,,"Drew, Linda M","Koch, Mia N",,,, +PSY,3361,001,44,15,6,13,10,2,7,6,4,,2,,,,3,,,,"Roark, Dana A","Cortez, Jared I",,,, +PSY,3361,0W1,18,10,10,6,11,3,1,3,,1,2,,3,,,,,,"Seaman, Kendra L","Nguyen, Linh Thi D",,,, +PSY,3362,001,1,12,,1,12,,1,11,1,2,2,,2,,,,1,,"Mills, Candice M","Gholap, Neha P",,,, +PSY,3392,0W1,39,26,11,5,5,3,1,1,1,,,,2,,,,,,"Grant, Meridith G","Millward, Kennedy A",,,, +PSY,3392,0W2,48,17,10,7,4,2,4,,1,,,1,,,,,,,"Grant, Meridith G","Millward, Kennedy A",,,, +PSY,3393,001,1,5,7,3,3,2,1,,,,,,,,,,,,"Smith, Evan T","Sherard, Glenn H",,,, +PSY,3393,002,,2,1,1,3,,,,,,,,3,,,,2,,"Damme, Katherine S","Eisenberg, LuLu A",,,, +PSY,3393,003,9,7,3,1,,1,,,,,,,,,,,,,"Shirvani, Forouz","Hosseinpourkhoshkbari, Reyhaneh",,,, +PSY,3393,004,4,3,5,,1,2,,,1,,,,1,,,,,,"Yoon, Leehyun","Lilly, Lauren H",,,, +PSY,3393,005,,14,4,2,,,1,,,,,,,,,,,,"Fearon, Danielle","Monroe, Anthony J",,,, +PSY,3393,006,7,8,4,2,1,,,,,,,,,,,,,,"Shirvani, Forouz","Rodriguez, Stephanie",,,, +PSY,3393,501,,7,2,1,1,2,,,,1,,,1,,2,,,,"Tillman, Gail D","Smith, Emily J",,,, +PSY,4326,001,3,7,2,2,3,2,,,,2,,,,,,,1,,"Kent, Jerillyn",,,,, +PSY,4328,001,4,5,3,8,9,4,3,7,5,3,4,2,1,,,,,,"Kane, Heidi S","Li, Yue",,,, +PSY,4331,001,7,4,12,4,8,5,2,2,1,1,,,4,,,,1,,"Boyd, Ryan L","Macphail, Donald C",,,, +PSY,4343,001,4,19,17,17,15,13,10,4,7,3,2,2,8,,,,1,,"Ybarra, Regina K","Carrico, Sara M",,,, +PSY,4343,0W1,11,38,17,23,17,8,7,5,5,,2,1,4,,,,1,,"Ybarra, Regina K","Kulkarni, Maitreyee",,,, +PSY,4343,0W2,,16,24,31,27,19,11,5,2,2,3,1,4,,,,1,,"Pinkham, Amy E","Gu, Pan",,,, +PSY,4344,001,,40,,,14,,,2,,,,,1,,,,2,,"Timmons, Lisa N","Redig, Samantha L",,,, +PSY,4347,001,3,7,4,7,8,6,7,3,5,2,1,,3,,,,3,,"Nelson Taylor, Jackie A","Li, Yue","Peacock, Dru D",,, +PSY,4348,001,,3,8,4,1,3,5,1,1,,,,,,,,2,,"Skinner, Margaret",,,,, +PSY,4359,501,1,6,,,12,,,1,,,,,,,,,3,,"Rypma, Bart P","Ma, Jessica",,,, +PSY,4365,501,15,8,3,2,,1,1,,,,,,2,,,,,,"Raman, Rachna",,,,, +PSY,4394,001,,,,,,,,,,,,,,21,,1,1,,"Choate, Michael J",,,,, +PSY,4395,001,,,,,,,,,,,,,,37,,1,,,"Choate, Michael J",,,,, +PSY,4V90,002,,15,,,2,,,,,,,,,,,,,,"Capili, Conrad R",,,,, +PSY,4V90,0W1,,11,6,3,4,1,1,1,,,,,3,,,,3,,"Ruggero, Jennifer L",,,,, +REAL,3305,001,1,,1,1,2,2,2,4,4,1,4,2,1,,,,,,"Guttery, Randall","Thota, Saranya",,,, +REAL,3305,003,,1,,2,1,4,1,1,4,4,1,2,,,,,,,"Guttery, Randall","Thota, Saranya",,,, +REAL,4328,501,,3,2,1,4,,,,,,,,,,,,,,"Zale, Daniel B",,,,, +REAL,6321,0W1,,17,3,1,,,1,,,,,,,,,,,,"Lynch, Julie","Chakravarthula, Komal",,,, +RELS,3351,001,3,3,1,,1,,,,,,,,2,,,,,,"Anjum, Zafar",,,,, +RHET,1302,001,,5,,4,4,1,,,,,2,,1,,,,,,"Martinez, Lilia E",,,,, +RHET,1302,003,5,5,,2,2,,1,,1,,,,2,,,,,,"Sahota, Kiran B",,,,, +RHET,1302,004,1,2,6,4,1,1,,,1,,,,2,,,,,,"Sidders, Tiffany",,,,, +RHET,1302,005,1,4,2,1,4,,1,1,1,,,,3,,,,,,"Boye, Allison","King, Carie S",,,, +RHET,1302,006,8,5,1,1,,1,,,,,1,,1,,,,,,"Sahota, Kiran B",,,,, +RHET,1302,007,,2,2,2,3,2,2,1,,,,,4,,,,1,,"Sidders, Tiffany",,,,, +RHET,1302,008,4,1,4,1,1,2,,2,,,1,,,,,,1,,"Bennett, Jason H",,,,, +RHET,1302,009,10,2,2,2,1,,,,,,,,1,,,,,,"Wang, Siting",,,,, +RHET,1302,010,1,5,3,4,1,,,1,,,,,1,,,,1,,"Ahmad, Muhammad",,,,, +RHET,1302,011,4,3,5,1,,1,1,1,,,,,1,,,,,,"Gu, Jiajia",,,,, +RHET,1302,012,3,3,7,,2,,1,,,,,,,,,,1,,"D'Monte, Nikita",,,,, +RHET,1302,013,2,7,2,1,1,1,,,1,,,,3,,,,,,"Ahmad, Muhammad",,,,, +RHET,1302,014,3,7,4,1,,1,1,,,,,,1,,,,,,"Gu, Jiajia",,,,, +RHET,1302,015,7,2,2,4,1,,,,,,,,,,,,1,,"Bennett, Jason H",,,,, +RHET,1302,016,3,7,6,2,1,,,,,,,,,,,,,,"D'Monte, Nikita",,,,, +RHET,1302,017,4,2,3,,2,,,,,,,,3,,,,1,,"Priyadarshi, Abhipriya K",,,,, +RHET,1302,018,6,5,3,1,1,,,,,,,,1,,,,,,"Arrabai, Mustafa M",,,,, +RHET,1302,022,8,5,3,,1,,,,,,,,2,,,,,,"Hwang, Kyeongmin",,,,, +RHET,1302,023,1,2,1,6,1,1,,,3,,,,3,,,,,,"Priyadarshi, Abhipriya K",,,,, +RHET,1302,024,14,2,1,1,,,1,,,,,,,,,,,,"Simion, Raluca N",,,,, +RHET,1302,025,,3,3,7,2,1,1,,,1,,,,,,,,,"Yang, Dawn D",,,,, +RHET,1302,029,4,3,6,1,1,,,,,,1,,1,,,,,,"Frickhoeffer, Matthis P",,,,, +RHET,1302,030,5,3,4,1,3,,,,,,,,,,,,,,"Olivas, Inez C",,,,, +RHET,1302,031,,5,5,1,,1,2,2,,,,,1,,,,,,"Nusrat, Masrufa A",,,,, +RHET,1302,032,11,3,,1,,2,,,,,,,,,,,,,"Alem, Hosanna G",,,,, +RHET,1302,033,9,,2,3,2,1,,,,,,,1,,,,,,"Heidari, Marjan",,,,, +RHET,1302,034,,7,6,,1,,,,,,,,1,,,,1,,"Nusrat, Masrufa A",,,,, +RHET,1302,035,1,3,1,4,4,,2,1,,,,,1,,,,,,"Boye, Allison","King, Carie S",,,, +RHET,1302,036,6,5,2,1,,1,1,,,,,,1,,,,,,"Heidari, Marjan",,,,, +RHET,1302,037,8,4,3,1,,,,1,,,,,1,,,,1,,"Burghelea, Clara I",,,,, +RHET,1302,038,6,6,4,2,,,,,,,,,,,,,,,"Hwang, Kyeongmin",,,,, +RHET,1302,039,4,8,,1,1,,,1,,,,,2,,,,,,"Momeni, Bahar",,,,, +RHET,1302,040,5,6,3,1,1,,,,,1,,,,,,,,,"Ham, Jeeah",,,,, +RHET,1302,041,3,4,3,1,2,2,,,,,,,1,,,,,,"King, Carie S",,,,, +RHET,1302,042,6,5,2,4,,,,,,,,,1,,,,,,"Burghelea, Clara I",,,,, +RHET,1302,043,8,4,2,,1,,,,,,1,,2,,,,,,"Alem, Hosanna G",,,,, +RHET,1302,044,7,9,,,,,,,,,,,1,,,,1,,"Sen Gupta, Karl S",,,,, +RHET,1302,045,,4,2,1,3,2,,,1,,,,5,,,,,,"Siddiqui, Rifat R",,,,, +RHET,1302,046,3,3,5,3,1,1,,1,,,,,,,,,,,"Siddiqui, Rifat R",,,,, +RHET,1302,047,6,9,,1,1,,,1,,,,,1,,,,,,"Drott, Caitlin",,,,, +RHET,1302,048,7,9,1,,,,,,,,,,2,,,,,,"Drott, Caitlin",,,,, +RHET,1302,0H1,3,3,2,2,1,,1,,1,,,,,,,,1,,"Yu, Katherine",,,,, +RHET,1302,0H2,,1,3,5,5,1,,,1,,,,,,,,1,,"Cranfill, Jennifer E",,,,, +RHET,1302,0H3,1,1,4,1,3,1,3,,,,,,2,,,,,,"Cates, Rosemond T",,,,, +RHET,1302,0H4,11,7,1,,,,,,,,,,,,,,,,"Ham, Jeeah",,,,, +RHET,1302,0H5,,1,2,4,3,2,1,1,,,,,1,,,,,,"Yu, Katherine",,,,, +RHET,1302,0H6,1,,4,4,1,2,1,1,,1,,,1,,,,,,"Cranfill, Jennifer E",,,,, +RHET,1302,0H7,1,1,6,2,2,1,1,,,,,,2,,,,,,"Cates, Rosemond T",,,,, +RHET,1302,0H8,6,6,3,1,,,,,,,,,1,,,,,,"Griffin, Janna L",,,,, +RHET,1302,501,4,2,1,1,3,2,,1,1,,,,4,,,,,,"Walker, Jason",,,,, +RHET,1302,502,6,5,2,2,1,2,,,,,,,,,,,,,"Arrabai, Mustafa M",,,,, +RHET,1302,5H1,5,9,1,,1,1,,,1,,,,1,,,,,,"Momeni, Bahar",,,,, +RHET,1302,5H2,12,3,1,,,1,,,,1,,,1,,,,,,"Griffin, Janna L",,,,, +RHET,1302,HN1,11,5,1,1,,,,,,,,,,,,,,,"Riley, Kristin N",,,,, +RHET,2302,0H1,5,8,,2,,,,,1,,,,2,,,,,,"Montgomery, Christina F",,,,, +RHET,2302,0H2,15,3,,,,,,,,,,,,,,,,,"Montgomery, Christina F",,,,, +RHET,4310,001,5,3,1,2,,,,,,,,,,,,,,,"Evans, William A",,,,, +RHET,4320,0W1,7,2,1,1,,,,,,,,,,,,,1,,"Kelley, Erin L",,,,, +RHET,6320,001,,,,,,,,,,,,,,,1,,,11,"Smith-Brecheisen, Linda",,,,, +RMIS,4331,001,8,2,1,,1,2,2,3,,,1,,1,,,,2,,"Kaplan, Larry S",,,,, +SE,2340,003,,3,1,,,1,,2,,,,,2,,,,2,,"Cole, John P",,,,, +SE,2340,004,,1,,2,2,1,1,3,,,,,,,,,,,"Nguyen, Nhut","Guo, Xiaosu",,,, +SE,2340,005,1,2,,1,1,2,,3,2,,,,1,,,,,,"Zhao, Yi","Guo, Xiaosu",,,, +SE,2340,006,1,2,,2,4,1,3,1,2,,,,,,,,,,"Wang, Alice","Guo, Xiaosu",,,, +SE,3162,051,,14,1,,,2,,,,,,2,,,,,,,"Srivastava, Aditya",,,,, +SE,3162,052,,9,,3,1,,,1,,,,,,,,,1,,"Cole, John P",,,,, +SE,3162,091,,11,1,,,,,,1,1,1,,,,,,,,"Srivastava, Aditya",,,,, +SE,3162,092,,2,2,3,3,,,,,,,,,,,,,,"Cole, John P",,,,, +SE,3306,001,7,19,11,21,32,6,7,6,2,,,,2,,,,1,,"Satpute, Meghana N",,,,, +SE,3341,006,1,,1,1,2,1,,,,,2,,1,,,,1,,"Jiang, Shengjie","Rajapakshage, Himasha Miurangi W",,,, +SE,3345,003,1,,,3,4,,1,1,1,,,,,,,,,,"Nemec, Andrew S",,,,, +SE,3345,502,,2,1,2,2,2,,2,,,,,,,,,,,"Khan, Kamran Z",,,,, +SE,3354,003,4,4,4,1,,,,1,,1,,,,,,,,,"Nouroz Borazjany, Mehra",,,,, +SE,3377,001,1,2,1,2,2,3,2,2,,,,,,,,,,,"Min, Richard K","Song, Xiaoyu",,,, +SE,3377,005,,1,,2,5,3,1,,,,,,,,,,,,"Satpute, Meghana N",,,,, +SE,3377,006,,,1,,5,,,1,,,3,,,,,,,,"Belkoura, Mohamed Amine",,,,, +SE,4347,001,,,5,1,2,,1,1,,,1,,,,,,,,"Solanki, Nidhiben M","Wang, Guanghua","Miao, Miao",,, +SE,4348,001,,2,2,2,,,,,,,2,,,,,,3,,"Yen, I-Ling","Miao, Miao",,,, +SE,4348,002,2,2,2,1,1,,,1,1,,,,,,,,,,"Christiansen, Michael G","Sakib, Md Nazmus","Das, Souvik",,, +SE,4348,005,9,2,,,,,,,,1,,,,,,,,,"DeGroot, Doug",,,,, +SE,4348,501,,3,5,2,,1,1,,,,,,,,,,,,"Salazar, Elmer E","Zhou, Yisheng",,,, +SE,4351,001,7,8,7,12,8,4,10,3,6,4,1,1,,,,,,,"Chung, Lawrence","Alshomar, Ahmad","Zhang, Jinheng",,, +SE,4352,001,3,19,12,6,14,2,3,,1,,,,,,,,,,"Kumar, Pushpa S","Pratap, Ashish",,,, +SE,4367,001,14,4,9,11,7,6,2,5,2,1,2,,6,,1,,,,"Nouroz Borazjany, Mehra","Rath, Avilash S",,,, +SE,4367,501,3,8,9,6,13,12,5,7,1,3,2,,1,,,,,,"Paulk, Mark C","Hsu, Chih-Wei",,,, +SE,4376,001,1,,,2,2,2,2,1,,1,,,,,,,,,"Zalila-Wenkstern, Rym","Paulk, Mark C","Alshomar, Ahmad",,, +SE,4381,001,2,12,16,18,35,24,11,6,4,1,,,,,1,,,,"Paulk, Mark C","Siddiqui, S. M. Tahmid","Rathnasuriya, Ravishka S",,, +SE,4485,001,,70,,,,,,,,,,,,,,,,,"Wong, Weichen E","Chen, Zizhao",,,, +SE,6329,001,,12,3,,3,1,1,,,,,,,,,,1,,"Paulk, Mark C","Malhotra, Brij Gulsharan",,,, +SE,6329,M01,,7,4,,,,,,,,,,1,,,,,,"Nguyen, Tien N",,,,, +SE,6361,M01,,12,,,,,,,,,,,,,,,,,"Nouroz Borazjany, Mehra",,,,, +SE,6362,001,,5,3,6,4,1,,,,,,,,,,,1,,"Chung, Lawrence","Alshomar, Ahmad","Pham, To Kim Bao",,, +SE,6367,M01,,15,,,,,,,,,,,,,,,,,"Wong, Weichen E","Chen, Zizhao",,,, +SGNL,1301,001,16,1,,1,,,,,,,,,,,,,,,"Trammell-Conerly, Erika M",,,,, +SOC,1301,001,3,13,10,5,16,3,1,6,2,3,2,,3,,,,,,"Gavigan, Brenda B","Haque, Samiul",,,, +SOC,1301,0W1,50,4,,1,1,1,,,1,,,,2,,,,,,"Asfaw, Sirak",,,,, +SOC,1301,0W2,,28,10,6,2,1,2,1,1,2,,,,,,,2,,"Elsafadi, Hoda O",,,,, +SOC,1301,HN1,14,8,,1,,,,,,,,,,,,,,,"Skaggs, Sheryl L",,,,, +SOC,2300,001,,5,8,3,3,1,,,,,,,2,,,,1,,"Smith, Erin",,,,, +SOC,3321,0W1,6,20,13,9,4,5,6,2,1,2,1,,3,,,,2,,"Lanham, Carol C","Haque, Samiul",,,, +SOC,3342,0W1,33,16,1,7,1,1,,2,,,,1,,,,,,,"Asfaw, Sirak",,,,, +SOC,3363,001,3,6,2,2,1,,,,,,,,,,,,2,,"Gavigan, Brenda B","Haque, Samiul",,,, +SOC,3382,001,,20,,,1,2,,,,,,,1,,,,1,,"McCaskill, John R",,,,, +SOC,4302,001,2,7,6,,5,2,1,1,1,,1,,2,,,,2,,"Scotch, Richard K","Briggs-Megafu, Tamnala E",,,, +SOC,4305,001,2,14,6,1,3,2,,1,,,,,,,,,1,,"Skaggs, Sheryl L","Haque, Samiul",,,, +SOC,4369,001,18,21,7,1,,,,,,,,,,,,,,,"Dickey, Galen L",,,,, +SOC,4369,0W1,25,16,3,3,4,2,2,1,,,1,,3,,,,1,,"Kwon, Soyoung","Briggs-Megafu, Tamnala E",,,, +SOC,4372,0W1,44,37,7,,1,,,,,,,,1,,,,,,"Dickey, Galen L","Briggs-Megafu, Tamnala E",,,, +SOC,4384,0W1,42,3,1,1,,,,,,,1,,1,,,,,,"Dickey, Galen L","Briggs-Megafu, Tamnala E",,,, +SOC,4385,0W1,60,9,5,2,2,,,,,,,,,,,,,,"Dickey, Galen L","Briggs-Megafu, Tamnala E",,,, +SOC,4385,HN1,4,11,2,2,,1,,,,,,,,,,,,,"Kim, Dohyeong","Hahm, Kristine J",,,, +SOC,4386,0W1,62,13,11,5,4,3,1,2,1,1,1,,3,,,,,,"Maxwell, Sarah P",,,,, +SOC,6340,001,,9,1,,,,,,,,,,,,,,,,"Scotch, Richard K",,,,, +SPAN,1311,001,,12,1,,,1,,,,,,,,,,,,,"Saunders, Joy",,,,, +SPAN,1311,002,4,3,5,,,2,,,,,,,1,,,,,,"Puentes, Yunet",,,,, +SPAN,1312,001,3,3,2,2,2,,1,,,,,,1,,,,,,"Alins Breda, Diego",,,,, +SPAN,1312,002,4,3,,,1,1,,1,,,,,,,,,,,"Alins Breda, Diego",,,,, +SPAN,2312,001,1,3,5,1,,,,,,,,,,,,,,,"Fernandez Cobos, Laura",,,,, +SPAN,2312,002,3,2,3,,,3,,,,,,,,,,,,,"Puentes, Yunet",,,,, +SPAN,3311,001,5,7,,2,,1,,,1,,,,,,,,1,,"Camacho Guardado, Amalia Lorena",,,,, +SPAN,3316,001,5,4,1,,,,1,,,,,,,,,,,,"Alins Breda, Diego",,,,, +SPAN,3330,001,13,11,3,1,,,,,,,,,1,,,,,,"Camacho Guardado, Amalia Lorena",,,,, +SPAU,3301,001,9,17,5,7,8,5,5,7,1,,1,,2,,,,,,"Walsh, Diane G",,,,, +SPAU,3303,001,5,21,15,5,3,3,3,,,,,,,,,,,,"Trail, Amy M","Lewicki, Jane M",,,, +SPAU,3304,001,,1,2,3,1,3,,,1,,,,,,,,1,,"Lee, Yune S",,,,, +SPAU,3305,001,,19,,,2,,,1,,,1,,,,,,,,"Jett, Whitney G",,,,, +SPAU,3341,001,,1,4,1,,3,1,1,,,,,1,,,,1,,"Warner-Czyz, Andrea D",,,,, +SPAU,3341,0W1,,15,8,5,3,2,2,,1,1,,,,,,,3,,"Fowler-Brookman, Stephanie L",,,,, +SPAU,3342,0W1,,18,,,2,,,,,,,,,,,,,,"Bonner, Deborah","Liu, Yiyao",,,, +SPAU,3343,001,,6,2,1,7,5,1,4,4,1,,,2,,,,,,"Mehta, Sonya","Sun, Minsi",,,, +SPAU,3343,002,,4,1,1,1,,,1,,,1,,1,,,,1,,"Mehta, Sonya","Sun, Minsi",,,, +SPAU,3344,001,10,19,10,6,2,1,,,,,1,,,,,,,,"Behroozmand, Roozbeh","Qi, Shuang",,,, +SPAU,3388,0H1,,,,,,,,,,,,,,40,,,,,"Neale, Hannah D",,,,, +SPAU,3390,001,,,,,,,,,,,,,,11,,,,,"Neale, Hannah D",,,,, +SPAU,4308,001,5,1,4,1,,4,1,2,,1,,1,,,,,,,"Su, Lei",,,,, +SPAU,4342,001,,23,,,3,,,,,,,,,,,,,,"Neale, Hannah D",,,,, +SPAU,4394,0H1,,28,,,4,,,1,,,1,,,,,,,,"Klimkowski, Hillary E","Moustafa, Rana H",,,, +SPAU,4395,001,6,5,2,1,,,1,,,,,,1,,,,,,"Mueller, Amanda B",,,,, +STAT,1342,001,6,5,4,5,5,2,5,4,7,,1,3,6,,,,4,,"Koshevnik, Yuly","Taskin, Fariha",,,, +STAT,2332,001,17,21,11,8,7,5,2,2,2,3,,,1,,,,1,,"Estacio-Hiroms, Kemelli","Husain, Md Maidul",,,, +STAT,2332,002,10,5,13,6,13,3,4,5,8,2,2,1,6,,,,,,"Jiang, Shengjie","Zhou, Changkai",,,, +STAT,2332,003,7,22,9,10,11,6,6,3,2,2,1,,,,,,1,,"Estacio-Hiroms, Kemelli","Husain, Md Maidul",,,, +STAT,2332,004,8,5,3,5,5,1,2,2,1,2,1,,3,,,,,,"Jiang, Shengjie","Sajal, Ibrahim Hossain",,,, +STAT,3355,001,2,45,,12,3,,2,5,,,,,3,,,,,,"Smiley, Octavious A","Gammune, Dona Hasini V",,,, +STAT,3355,002,,29,,5,5,,1,1,,,,,1,,,,,,"Smiley, Octavious A","Gammune, Dona Hasini V",,,, +STAT,3360,001,14,9,13,5,11,3,3,3,3,,2,,,,,,4,,"Koshevnik, Yuly","Kim, Sungbum",,,, +STAT,4351,001,7,6,3,5,4,2,3,3,6,,4,1,5,,,,4,,"Koshevnik, Yuly","Taskin, Fariha",,,, +STAT,4351,501,7,7,10,6,2,3,5,2,,,2,,,,,,1,,"Wu, Nan","Taskin, Fariha",,,, +STAT,4352,001,2,3,5,,5,1,3,,2,,,,2,,,,1,,"Chang, Hyunwoong","Fuksman, Lirit",,,, +STAT,4355,001,4,1,6,4,3,1,1,1,1,,,,,,,,,,"Tang, Chuan-Fa","Anjum, Sharaf",,,, +STAT,4360,001,26,8,12,8,1,4,3,,,1,,,,,,,1,,"Wang, Jiayi","Gammune, Dona Hasini V",,,, +STAT,4382,001,3,4,2,3,3,1,1,,,,,,,,,,,,"Koshevnik, Yuly","Sim, Hyeonduk",,,, +STAT,4475,001,7,7,,,,,,,,,,,,,,,,,"Estacio-Hiroms, Kemelli","Wang, Tingfang",,,, +STAT,5351,001,,12,3,4,1,1,1,2,,,,,,,,,4,,"Chen, Min","Jahan, Mahmuda",,,, +STAT,6337,001,,1,1,2,4,3,1,3,,,,,1,,1,,1,,"Biswas, Swati","Wang, Tingfang",,,, +STAT,6340,001,,12,2,4,7,6,1,4,,,,,,,1,,4,,"Choudhary, Pankaj K","Brakefield, Bryn M",,,, +STAT,7330,001,,13,1,,1,,,,,,,,,,,,,,"Li, Qiwei",,,,, +SYSM,6301,001,,9,6,1,3,,,1,,,,,,,,,,,"Joshi, Bela","Amoori, Ali R",,,, +SYSM,6301,S01,,9,,3,,,,,,,,,,,,,,,"Koganti, Ramakrishna",,,,, +SYSM,6306,S01,,6,2,1,1,,,,,,,,,,,,,,"Kapoor, Bhanu",,,,, +SYSM,6320,S01,,6,,,5,,,,,,,,,,,,,,"Peng, Mike W","Shen, Jia",,,, +THEA,1310,001,,40,,,1,,,,,,,,,,,,,,"Hamzeh, Fatemeh",,,,, +THEA,1310,002,7,24,6,,2,,,,,,,,,,,,,,"Hixson, Maiza",,,,, +THEA,1310,003,16,14,7,2,1,,2,1,,,,,2,,,,2,,"Miron, Emmalyn W",,,,, +THEA,1310,004,4,18,16,4,1,1,,,1,,,,1,,,,1,,"Enyaosah, Damian P",,,,, +THEA,1310,005,7,19,4,1,,2,,1,,,,,1,,,,1,,"Hixson, Maiza",,,,, +THEA,1310,HN1,25,,,,,,,,,,,,,,,,,,"Trevino, Christopher L",,,,, +THEA,1351,001,9,4,3,1,1,,,,,,,,1,,,,1,,"Lingo, Kathy P",,,,, +THEA,2372,001,5,4,2,,,2,,,,,,,1,,,,1,,"Lingo, Kathy P",,,,, +THEA,3320,001,10,3,3,,,,,,,,,,,,,,,,"Lingo, Kathy P",,,,, +UNIV,2074,001,,,,,,,,,,,,,,127,,3,,,"Beauchamp, Hillary L",,,,, +UNIV,2V96,001,,,,,,,,,,,,,,18,,,,,"Chavez, Dixiana",,,,, +UNIV,2V96,002,,,,,,,,,,,,,,18,,,,,"Young, Chadwin D",,,,, +UNIV,3074,001,,,,,,,,,,,,,,87,,3,,,"Beauchamp, Hillary L",,,,, +UNIV,3112,001,,,,,,,,,,,,,,53,,,,,"Luong, Thuy T",,,,, +UNIV,4073,001,,,,,,,,,,,,,,30,,1,,,"Beauchamp, Hillary L",,,,, +UNIV,4076,001,,,,,,,,,,,,,,27,,,,,"Thomas, John D",,,,, +UNIV,4076,002,,,,,,,,,,,,,,22,,,,,"Thomas, John D",,,,, +UNIV,4076,003,,,,,,,,,,,,,,29,,,,,"Thomas, John D",,,,, +UNIV,4076,004,,,,,,,,,,,,,,29,,,,,"Thomas, John D",,,,, +VPAS,3340,001,1,3,1,2,4,,,,,,,,1,,,,,,"Baker, Barbara L",,,,, +VPAS,3340,002,,5,3,1,2,2,,,,1,,,1,,,,1,,"Miller, Cynthia M",,,,, +VPAS,4310,0W1,1,6,5,3,3,1,,1,2,,,,2,,,,,,"Schlobohm, Maribeth L",,,,, +VPAS,4389,001,,2,7,1,3,4,,2,1,,,,,,,,,,"Baker, Barbara L",,,,, +VPAS,4389,002,6,5,1,,,,,,,,,,,,,,,,"Parsoneault, Catherine J",,,,, +VPAS,6339,501,,13,,,,,,,,,,,,,,,,,"Pomara, John J",,,,, \ No newline at end of file From 7189b788c16b0b72e0ad2ff6a1e8b4c98a4f8409 Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Wed, 26 Mar 2025 12:07:19 -0500 Subject: [PATCH 07/22] testing different layout of RMP info --- client/src/components/SectionContent.tsx | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index c7b78e1..5564f7d 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -47,7 +47,25 @@ const GraphContainer = styled.div` @media (min-width: 992px) { & { - box-shadow: 0 15px 30px rgba(233, 233, 233, 0.7); + box-shadow: 0 15px 15px rgba(233, 233, 233, 0.7); + border-radius: 5px; + padding: 20px; + } + } +`; + +const ProfessorDetailsContainer = styled.div` + width: 100%; + + @media (max-width: 992px) { + & { + padding-top: 20px; + } + } + + @media (min-width: 992px) { + & { + box-shadow: 0 15px 15px rgba(233, 233, 233, 0.7); border-radius: 5px; padding: 20px; } @@ -362,7 +380,7 @@ export default function SectionContent({ - + From 206dedd5f68969b408e0ffe66ce83fc5c30db0ec Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Wed, 26 Mar 2025 12:10:52 -0500 Subject: [PATCH 08/22] changing the professor details container --- client/src/components/SectionContent.tsx | 94 +++++++++++------------- 1 file changed, 41 insertions(+), 53 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index 5564f7d..c358db4 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -385,64 +385,52 @@ export default function SectionContent({ + - - - - - PROFESSOR DETAILS - - - {instructor && courseRating ? ( + + + + + PROFESSOR DETAILS + + + + {courseRating} + Course rating + + + + {instructor?.difficulty_rating ? instructor.difficulty_rating : `N/A`} + + Level of difficulty + + + + {instructor?.would_take_again ? `${instructor.would_take_again}%` : `N/A`} + + Would take again + + + {instructor?.ratings_count ? instructor.ratings_count : `N/A`} + Ratings count + + + {instructor?.tags && ( <> - - {courseRating ? courseRating : `N/A`} - Course rating - - - - {instructor?.difficulty_rating ? instructor.difficulty_rating : `N/A`} - - Level of difficulty - - - - {instructor?.would_take_again ? `${instructor.would_take_again}%` : `N/A`} - - Would take again - - - {instructor?.ratings_count ? instructor.ratings_count : `N/A`} - Ratings count - +

Tags

+ + {instructor.tags.split(",").map((tag) => ( + {tag} + ))} + - ) : null} -
+ )} +
- - {instructor?.tags && ( - <> -

Tags

- - {instructor.tags.split(",").map((tag) => ( - {tag} - ))} - - - )} - - - Other Sections - {renderRelatedSections()} - ); } From d08622904b24a8f4799871be6798d6b00a49f5cf Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Wed, 26 Mar 2025 12:28:39 -0500 Subject: [PATCH 09/22] changing the professor details container and style --- client/src/components/SearchResults.tsx | 2 +- client/src/components/SectionContent.tsx | 81 ++++++++++++++---------- 2 files changed, 50 insertions(+), 33 deletions(-) diff --git a/client/src/components/SearchResults.tsx b/client/src/components/SearchResults.tsx index 8f37be0..1e8cc86 100644 --- a/client/src/components/SearchResults.tsx +++ b/client/src/components/SearchResults.tsx @@ -209,4 +209,4 @@ export default function Results({ search, sectionId, router }: ResultsProps) { ); -} +} \ No newline at end of file diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index c358db4..9f35c77 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -56,6 +56,7 @@ const GraphContainer = styled.div` const ProfessorDetailsContainer = styled.div` width: 100%; + margin-top: 2rem; @media (max-width: 992px) { & { @@ -140,42 +141,55 @@ const RMPStat = styled.h5` `; const RMPDescpription = styled.p` - font-weight: 400; + font-family: var(--font-family); + font-weight: 500; + color: rgb(117, 117, 117); margin-top: 0px !important; margin-bottom: 0px !important; @media (max-width: 768px) { & { - font-size: 0.8rem; + font-size: 0.9rem; } } @media (min-width: 768px) and (max-width: 1200px) { & { - font-size: 0.7rem; + font-size: 0.9rem; } } @media (min-width: 1200px) { & { - font-size: 0.8rem; + font-size: 1rem; } } `; const RMPTag = styled.p` + font-family: var(--font-family); + font-weight: 500; + color: rgb(84, 84, 84); border-radius: 1rem; - background-color: #f0f0f0; + background-color: #f5f5f5; padding: 0.5rem 1rem; margin-right: 1rem; - box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; + margin-bottom: 0.5rem; + transition: all 0.2s ease-in-out; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + + &:hover { + background-color: #e8e8e8; + transform: translateY(-1px); + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); + } `; const RMPHeader = styled.a` font-family: var(--font-family); font-weight: 700; font-size: 1.15rem; - text-decoration: underline !important; - color: #333 !important; + text-decoration: ${props => props.href && props.href !== "#" ? "underline" : "none"} !important; + color: ${props => props.href && props.href !== "#" ? "#1890ff" : "#333"} !important; @media (max-width: 768px) { & { @@ -387,50 +401,53 @@ export default function SectionContent({ - - - + + + - PROFESSOR DETAILS + Professor Details - - - {courseRating} + + {instructor && courseRating ? ( + <> + + {courseRating ? courseRating : `N/A`} Course rating - + {instructor?.difficulty_rating ? instructor.difficulty_rating : `N/A`} Level of difficulty - + {instructor?.would_take_again ? `${instructor.would_take_again}%` : `N/A`} Would take again - + {instructor?.ratings_count ? instructor.ratings_count : `N/A`} Ratings count + + ) : null} + + + {instructor?.tags && ( + <> +

Tags

+ + {instructor.tags.split(",").map((tag) => ( + {tag} + ))} - {instructor?.tags && ( - <> -

Tags

- - {instructor.tags.split(",").map((tag) => ( - {tag} - ))} - - - )} -
- -
+ + )} + ); -} +} \ No newline at end of file From 98044541282ae8f541a2700c08d1d54ad4deab4a Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Wed, 26 Mar 2025 12:37:35 -0500 Subject: [PATCH 10/22] fix build issues with removing suggested courses section --- .../src/components/SearchResultsContent.tsx | 8 +- client/src/components/SectionContent.tsx | 85 +++++++++---------- 2 files changed, 45 insertions(+), 48 deletions(-) diff --git a/client/src/components/SearchResultsContent.tsx b/client/src/components/SearchResultsContent.tsx index d914b1d..7939218 100644 --- a/client/src/components/SearchResultsContent.tsx +++ b/client/src/components/SearchResultsContent.tsx @@ -39,9 +39,9 @@ export default function SearchResultsContent({ section, instructor, courseRating, - relatedSections, + // relatedSections, loadingSection, - handleRelatedSectionClick, + // handleRelatedSectionClick, error, }: SearchResultsContentProps) { if (section) { @@ -50,8 +50,8 @@ export default function SearchResultsContent({ section={section} instructor={instructor} courseRating={courseRating} - relatedSections={relatedSections} - handleRelatedSectionClick={handleRelatedSectionClick} + // relatedSections={relatedSections} + // handleRelatedSectionClick={handleRelatedSectionClick} /> ); } else if (loadingSection) { diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index 9f35c77..2952b82 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -1,5 +1,5 @@ import type { Grades, RMPInstructor } from "@utd-grades/db"; -import { Col, Row, Spin } from "antd"; +import { Col, Row} from "antd"; import { BarElement, CategoryScale, @@ -13,7 +13,6 @@ import { Bar } from "react-chartjs-2"; import styled from "styled-components"; import type { UserFriendlyGrades } from "../types"; import { extractGrades, getColors } from "../utils"; -import SectionCard from "./SectionCard"; ChartJS.register(CategoryScale, LinearScale, BarElement, Tooltip); @@ -203,29 +202,29 @@ const Section = styled.span` font-weight: 400; `; -const OtherSectionsHeader = styled.p` - font-family: var(--font-family); - font-weight: 700; - text-transform: uppercase; - font-size: 16px; -`; - -const OtherSectionsRow = styled(Row)` - padding-top: 3rem; -`; - -const SectionsContainer = styled.div` - display: flex; - justify-content: space-between; - flex-flow: row nowrap; - align-content: flex-start; - overflow-x: auto; - overflow-y: hidden; - -webkit-overflow-scrolling: touch; - padding: 10px; - margin-left: -10px; - width: 100%; -`; +// const OtherSectionsHeader = styled.p` +// font-family: var(--font-family); +// font-weight: 700; +// text-transform: uppercase; +// font-size: 16px; +// `; + +// const OtherSectionsRow = styled(Row)` +// padding-top: 3rem; +// `; + +// const SectionsContainer = styled.div` +// display: flex; +// justify-content: space-between; +// flex-flow: row nowrap; +// align-content: flex-start; +// overflow-x: auto; +// overflow-y: hidden; +// -webkit-overflow-scrolling: touch; +// padding: 10px; +// margin-left: -10px; +// width: 100%; +// `; const Stack = styled.div` display: flex; @@ -295,35 +294,33 @@ const FlexSmall = styled.div` `; interface SectionContentProps { - relatedSections: Grades[]; + // relatedSections: Grades[]; section: Grades; instructor: RMPInstructor; courseRating: number | null; - handleRelatedSectionClick: (search: string, id: number) => void; + // handleRelatedSectionClick: (search: string, id: number) => void; } export default function SectionContent({ - relatedSections, section, instructor, courseRating, - handleRelatedSectionClick, }: SectionContentProps) { - const renderRelatedSections = () => { - if (relatedSections) { - return relatedSections - .filter((s) => s.id != section.id) - .map((s) => ( - - )); - } - - return ; - }; + // const renderRelatedSections = () => { + // if (relatedSections) { + // return relatedSections + // .filter((s) => s.id != section.id) + // .map((s) => ( + // + // )); + // } + + // return ; + // }; const grades = extractGrades(section); const keys = Object.keys(grades) as (keyof UserFriendlyGrades)[]; // we can be confident only these keys exist From 635c9dc0843f2128c54c11b3e3ca03d002c7a689 Mon Sep 17 00:00:00 2001 From: Giang Pham Date: Thu, 27 Mar 2025 09:12:13 -0500 Subject: [PATCH 11/22] fix bug: name not matched --- client/src/components/SearchResults.tsx | 9 ++++++--- client/src/utils/index.ts | 22 ++++++++++++++-------- 2 files changed, 20 insertions(+), 11 deletions(-) diff --git a/client/src/components/SearchResults.tsx b/client/src/components/SearchResults.tsx index 1e8cc86..65743f0 100644 --- a/client/src/components/SearchResults.tsx +++ b/client/src/components/SearchResults.tsx @@ -95,13 +95,16 @@ export default function Results({ search, sectionId, router }: ResultsProps) { ); // some professors have the same name so we need to get the whole list - const normalName: string = normalizeName( + const normalName: string[] = normalizeName( `${section?.instructor1?.first} ${section?.instructor1?.last}` ); const { data: instructors } = useQuery( ["instructors", sectionId], - () => db!.getInstructorsByName(normalName), + async () => { + const results = await Promise.all(normalName.map((name) => db!.getInstructorsByName(name))); + return results.flat(); + }, { enabled: !!section } ); @@ -209,4 +212,4 @@ export default function Results({ search, sectionId, router }: ResultsProps) { ); -} \ No newline at end of file +} diff --git a/client/src/utils/index.ts b/client/src/utils/index.ts index 4de5991..6b531bf 100644 --- a/client/src/utils/index.ts +++ b/client/src/utils/index.ts @@ -95,8 +95,7 @@ export function extractGrades(grades: Grades): UserFriendlyGrades { // normalize name with RMP standard (from Evan's Python script) // https://github.com/emw8105/professor-ratings-script/blob/main/aggregator.py -export function normalizeName(name: string): string { - if (name === "Yu Chung Vincent Ng") return "yu chung ng"; +export function normalizeName(name: string): string[] { // Trim leading and trailing spaces name = name.trim(); @@ -119,11 +118,18 @@ export function normalizeName(name: string): string { // Replace hyphens with spaces name = name.replace(/-/g, " "); - // Handle "Last, First" format by swapping and converting to lowercase - if (name.includes(", ")) { - const [last, first] = name.split(", ", 2); - return `${first?.trim().toLowerCase()} ${last?.trim().toLowerCase()}`; - } else { - return name.trim().toLowerCase(); + name = name.toLowerCase(); + if (name.split(/\s+/).filter(Boolean).length >= 3) { + const parts = name.split(/\s+/).filter(Boolean); + const variations = [name]; + for (let i = 1; i < parts.length - 1; i++) { + const variation = parts + .slice(0, i) + .concat(parts.slice(i + 1)) + .join(" "); + variations.push(variation); + } + return variations; } + return [name]; } From bead8de761a8974ba95504e4c6d84f26d4f11c6c Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Thu, 27 Mar 2025 13:25:19 -0500 Subject: [PATCH 12/22] wokring on UI changes --- client/src/components/SectionContent.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index 2952b82..b9c0273 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -410,23 +410,23 @@ export default function SectionContent({ {instructor && courseRating ? ( <> - + {courseRating ? courseRating : `N/A`} Course rating - + {instructor?.difficulty_rating ? instructor.difficulty_rating : `N/A`} Level of difficulty - + {instructor?.would_take_again ? `${instructor.would_take_again}%` : `N/A`} Would take again - + {instructor?.ratings_count ? instructor.ratings_count : `N/A`} Ratings count From 7b4a961d0034c2382189b76fb132473752ccad7d Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Thu, 27 Mar 2025 23:47:25 -0500 Subject: [PATCH 13/22] RMP data design updated on SectionContent component --- client/public/rmp-logo.png | Bin 0 -> 9374 bytes client/src/components/SectionContent.tsx | 125 +++++++++++++++-------- 2 files changed, 84 insertions(+), 41 deletions(-) create mode 100644 client/public/rmp-logo.png diff --git a/client/public/rmp-logo.png b/client/public/rmp-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..562493d9dc2dfd54ce72989ca18200028d0156f2 GIT binary patch literal 9374 zcmZX4bzD?k*ER?Y<sOcYSBP zzxTPH-~0YCGjPs6Yp-?fwbx#2T_;pcMIMYpfrEmA0#;OzeTjmC1_A!I#{vQ0BI7{| zzz?>Af}S%9N^(E)gSr}>OOJv=i=rqC)pSeSOLre3nQZ7*oG&ssk2E;PZy~1*p|7VE z#ZiirC0J=eDA0BrNy{?ffJg?-bv1tlKKl$MF~`a(gkpgnk#%9j!wAW+q}6^A1hCRx zEO=b;)^+y@Zl?Y5QGGu=JzTb1kwRKo{f2>fKy`{h1Mv5{EJOa9zk(#Tu zODr{PaGEo)Z?3UB-I+|4UDLudMw>;k^AkXh3Yq1HYqFCD1y29-|3!uWa%V6u9fCmm z1`3stPl#X#MlOwlNI4C+9I;t|>sT1zbUl%(YSdXj7Rs%eik#oGHDUG?(pYp|3?z_u z7TW`3AUIlvt?5Ley2P|Sa2=sGG7_D`rwYt>QRTn>Bk}mT3~<%$0}JFGe0u~roW^!3 zgdyUf*@qZ8KHx(HRk}N%WLqTo*Sm3;S06Af9d;Wrg-G=~xD{G8D!xFu$LS8^lml>` z@f?t!oX4jO$Y-5vtLULgy-q}$5JU2>KK%j?!{XQWx zn4fr`sL$GnA|Ik;g>MavCFcPMlGtVW-rrf3?E+>ilxAgR^C?><0Jy1D`&*6Y=QWoi zg*62HE36NsUk#@-sI^t}G(uwKgz+y}G2n+(Lfm`&>3}VL)cRwx?Vt?LKMmE>&PZX2{|f7> z_Q#_Z=`A&C95Wuqrb9#-N<(EV6NZqhOE3=dId5FdYfktpE$BbeX!F7BdXO)v((N!YQuVh!E3;Oc`XK#Ovm4B3?v_&&DkrHwo{1M zFNif<|7mPJZ8Gw?Tz8sxneK~Y(^$((G>);GtIZRi1bqikemz;Fbu=P_-)C1hPdbBB zDtYHQTWxjJ|E#Qc+QgTmMmC3C1bbNG+IH)3fN!|>RirpGF^ftZA%h%xHZ3d#qIi2A z7kNA+I($Ld9YMW&dfj?GzuzCm)socP)|t&?$?l{(P~8(mW}Ng*d_wTUL-G~dV^y(3 z1O!lT>^#k7N-sO3EJNJ0`^u<9zb2;jcF%rlzhS57EB##PUR5xdGT)<2Mf_AVK2fRF z=T&@rB6yKfk^1 z&u4A8F8fq{=+75@TW@wv?v=cT_$&sZVpS#dyx9$EU)V(ups=LBi@B=5J)8S3_)Mqt z;ZzQ%(Kn%=(u*zLZ^m*JLq!%Ggr4|ZESrk=P#IF7tWqBz{oqngDb}r^- za$EAp6lt#G@f~O+?SgHfgFk79;Y;3dbKgZ!i{{@oaxb{8f>*s-Z;q6Om;BJ0yd_DS zaxacE?~8dYfBRgv)w#VWGN0Nm$fVi!BxTnn*zxo^$$9eq&aU-x(7t%F>QxV(@XbM| zj5lYR5+$X8ZPe}gqRFW-0G4k|{Ss3){}V&Onc)NugD$eKI%V3a``N)X6a(*%HwI%! zXUHXX3Ukcw6M)SiI5YpN+DgORxrehUU;J9v+4uCTiF+~w6>sL}+s|Q~I08C31K^02 zddJnKFvFQYgz{8`mlQOXZA69u?>Br9oxFY9kOa zXkdD5`J&?p6f?+Jfgc@Ah5j4wXPcGHlQB4Z-A9Y!5 zU@Vx)aS4bjJM;FprE#ga%0P@?fZP)VQLX)=@pn>(+09onc)LHhMsp@@U69KDW_|fJq1WVAao!+#wUtu|Y>dKz2AwkFWKpx>_$)S_ z_kVu%(up`?w#)_j-mE@}e*eKXFd%;!nASsIt=hNq*0(KH z!xD4b#|}^Iez{B=?VN9?IS&zny|7Zoq}+5kfS-%gGG7iwKZjJ;y;*nfh-kDWPnOsK zxx_r>M5QoN4$ZwRSgODdOB7akah@eU3!3h^ckuBw-sv$NT*)VS7#0P1<`?^o^X+jK zf+;-)oq&9j@zfK0k&C6kKwWnof~u|Ec14^IX-w0(hhxfI;8SXKS41^B7!)IJS8UR{ z@GWQJiw4W(N*LFt%)s;bFk)c9oB}LHKR?gza*11Y zhd~49KNn>B%wDC}ljaY%55>aRshkIRc7_R!3G}tXy>Kanv@(6~8i18+#}n=<#$WI{ zhFSfr%$vT{iO7}-{>a4&KauLF-4!LV**XW}GOgLS+1Ac`nQUwrtw?$3Dz9qV?D^Ix zL(;R4sL4n8-dejdHBxD6OqWe`1ryVK{;JSG)YP$zYxm9c&6D|=we5vw&!}K4kvxR> za*IWL3Ngg(XLf-0Wm`u?y12oZcUn_mAzI^r*{i)}2XmgW4BU>r1X>k-kB~s}f<_Y{xT9)&@98Qg zmmoDwThtextzL!5*(@~o4u6El)o!wbQW%&e>tD*4Erb@0A$v? zzDu*=FHP4=Exl0mORuJp20;~y(L8h*fL78315Vvfx(j} z=Y>}lultBrE!(1x;tPnFn(`&o?s!T({es33k*{Z213+Ppvu7z7P&BoZj`d^0;WP}W zMn7N35m66)_`EAIK}pNedWUvM7z4cA*~0wp=5i_uFY&1Z06mxe+?5^iqFbN!YKm+) zwVUSZ^~t#ES07SWb<5$5J;QMP^PUs;7WDA_1931kP$}2yRn_*GTo(4paT_yZhK@JE8JRjgjRbh;Ubvqt)>?i#lU$VOJ=pt`#e86CMja9?6$+^ z$m_tG=T#FHhR{`~l}}EodV~-ZmThK(phB!zXZY%Bq@-(qs{er$K8H^E*X`NietCZo z4h3~No9Vary4Qw&@KZErJXsMt|?l(CV%=Kq=ozBTj(A971 z;Tp@iN8jZmsJ2gp33l~LtP^mdtCe9NMV4B8aZ~z|+d9cD<-4b|vikC~pj)5&lDngu zx2u*>v{r$$TG4PMPFmPjn1;Y6FW(U>r(*A^S@8Vy?Pw_|mkz$9o2ruLxL4huVvR*% zihDoydvhh`3F_ufN!ao&xDMxfRuYrAL$sbGbr zA=`zMme`i#|L9zw)R+IKabIH9Qs%KH8c!=AWV*|0&1`9rK4KodL)=S(FXa*g@TY9X zTFzzt0ww)`?kNH_8%**5G#1U;YwN0K#6qz5eZ!-igGzvw9b+cY9dMbhC!WX0RPZVW7 zLvbjCP!&RW2?Z+neoJ+felf=|XFA-Eg74%Id!<34u|NdPG5HPBL2I0yq%wFHBp|Ml zXy~M99nhVpN-V8_iBDrIW+mk;L_&GMFCXVJ`F1Iv4n88;sT~i)1$_N8ef|ye;N?nk z#k>x}yt{-G@~Zn&SEnf}{GC)b-CT1ZtOI&RUi1ddEUec3bHLX!DjKo_yh=OPY)7kK z=IES*iH@J+`JsX3Qsb6wi{mSyEE(m-3{6}W$*YZ)+AkqO&_J@hlA=%hV>yr2dh!XP zUkb};#`6d(vf8Jfh!;MB1{#I}+2aQqiFD)40MMnbf*T~rP|HRk^!11}t?-j(+c6S| zf?9P@#?LOqe!mNAQx?n+iiY_^`@;gGMJy>qXmD$>we^q>^zd<(z#^MQzV7}r6@k@& z3m=08lqqT$ML<^jRm6iQW*;IE`%i9`FjZ_&5MTtGfT>r!XoN?MCiypn+7DKh0|i!Mj4-JAu7v>GR`dK=Dg&IZ473UDeEn!2{3VtU!M zDL4#-zBc>aYc-h`DMG+y_f*j!xy#171%qXXG$UFEN*v$w#8=EkG?E^!_6GglVrSw@ zwhv{-7i;++Gi)-$4-CHZECztk@lB98<^_2Kj%v!Gv8 zvBr-M@2>YT`^H#nb}N&!$Wwxdrfc^DbFxuY2w;nW(pV|(5CLf5jw>rAr3HMGdIlX9 z=MQ7Evt9l+*)siWZgTFRe+p~`P+n5>d7zm1_~NQ~$^7bi;w3><(aY z06TjjC&JA%^LXr&9UcRG2|dw%VaDmrQ_Q<&3mwbFg1If_&)ZaYKsF)h^Q5bZ)B$eW zs#f$0I3#6ExC&dK_@)M_*sEK0};gG?CE#Jnbb|;mrH_`o8@#;x=M`?ydiA&ppAU<)PmP0PdDMO`kWX>;HoAbtzY2_?6NTe=^V&=m&xqHS zTU;q%$@`OypIdMAWMAg&z5l?5n-0t>7f~|$PE)%?|BB2ztWYX!afbGn|{mQI% z2M>@$_>WNQL~(6;N)SXTP?Z9^wubd>rRU24(0U^*yH34geHWgfSi^K<4!@Jbq3|wu z$13aoo)b3Q!+NU!6=#!#{Z zWC0|U9>%A-wr`OKaeIpaHb)`sHs4h#;eXN7kfdC5l+mlqBG!(lgN`t?^vHaNE-sR|Y^!t635%;r@yJ2pj^)HUmJ5eHn2 zh|Ek8i}D2Z_u|RzOvA*3AVJ$!ohm3bM!2LgP^{4!^4Nx0Ub-E$V~P(Q+|#Q>T@!C= zesSI$n)+C7CRHVuIy0`HSdMLb?VYmhG8+I|E-iFQeH~PRtnJ6jOj>(e7^ijn! zl>$j2TR+vEe#bnX+2a#V&VR~uF;6M@c0iU_0s|(10j9b*@(pvdPSyRw{Lr+3RmSj& z9pX3`ljWad^(^{hca7q}x<4jO6p&}vt4f#%r38TTItT-HiBkiE$Qn!3zgpb+mBg4l zW`*AbQXzn@3Jbi8`fLL9DBo-DeFKWjj6>WA{q%ymzQC7w`41mWYxl>*{DH8@x)o!A zeQ>%vjoBhca{t)7xl(_l0VqRViKD!N&BC;Tq!f71(V3)SQsMUp!IH%ywq}-v3DI5q z$gtbQ&_xtX9WVT%h93U3@nLEVR)uM@Qx(vCyC@l!<}U=GPTbK5(K#2#oC&j-_OOEn zs&OEQOvNW&2t_`HJ3J6ab}X{of;c$m-ZMxE;Yr}A%d#ESXuznZT&9(A~|35IfQ`oE9QcR@#}6&3Pdr#h^ZZ zz9b&0Q4DOd4GsNk+esEX;jfC7){{l1Xpk48VZzQE3Z%%K(J61831;`mi&-@zt+$Er zDqzD`La_+p%z>R!y~nQz4NO$IYz;Ey(fY*WB3bsyMXpbq*!>ZtHcbeKw{%`hjMUjaX0f#z&!oToS^4JkeA6@N&`0HfcZNV^olwugkC1@OzWE&cfKnRSW;o4w zmBY&s^;*KL1HAxdq_O;Xk2#Me!|ikb`3w#NvUYje+NU)VSN5iNz9RjhO?=rDNoSSi zFdk0c%pba&VD^{e0ie#QWh%uAH$Sgo&)+i@G3bhM|HK+-26VkuUNwg`v@D+gu;S}$ z`mzAfqaZJ$x(bT~46qcjxPfkj_LC&*>1pl!CqvJFfe;t-0tOwkCD<6SE4(ZYd1XFq ziKjCt73ou1f|;b8W-lC_4G7XruOom?l-w8*Wc`usSMZv|8=iMIK+kVVLm|^WuYnZe zM*dUDY{h=mXt}1Et#;oOP=WDoctUNSu9AmM7 z7Hl*kCB|^lcOuvubcF4}-f$wo6F($)c+iP2+RRY>W9{XL0&`cub_>HkGp@Lp?XX`7 znepQTyee^gEc=fX{kS}9L;@{N>q?3mBUuHp9G5g!SbDFgiuFRZf+un}Fu-y^1E)li z#Cm=@4HHbksJIg2MPd0j%F$-)cB&WccOA{zl=0ueXfOtW4i#&Q)m8xLMY_nOM@dc^ z(Gbe zo-FKG{4PJGy0PVE7M`){?2SF1@4=SVg`xqCFLR?snD~0N+iJMrYoNLqx^Lm_scrGf zW*?(P4-X@bSmQQ%G#tbEYO@i+hXM0Av-haTN_^?<8;G}VMm2VoCW-(h_vU0l<7F4u zpd+-u>r^u(x?6!>VY)R&dEubWC~-#~FA)O2h}}%4{Ve%HaQ0RL1$k_2vaJ`=qyJcc zjiK_nPOUKig?5I`*_C4~k3i5F$|J zIQpFI%Me*u5VmF|)^##Bv%z;rCR3Wt^O3Ig-&MmZ^9!9=xNFXu*P`q<0tcT9nIEvi zTfD`~JCo4e2_Z|L_=d_w1PCNr{Kg5^lV$mtba*sP;=h)g*}4-!9OaT?t%!SlOQsGe z&~CrcDvd_stXn%8akX5mEd8t=99=(Ye-zSc9Zi0ax>UF_K_F~|wcNBCAsV1$!YQy5 zh=EHgYaQ*^>c}B%wAg&)GDfL2Qolx6Yc(!c({A-eFj_Iml+Wi^y(6#PY;{}dvgE7V z+IhaTlMCB71i>ICxSGgM*X+alit8dC9Y{rGbMXf-CFypR*=wtKAfzY`-@!UMH1lWQ zkUc)UQ@>_f+e0va;T{tMvOJ-Rc>V7Ybr$;}jLvM&FjXAANW-$T8kE=9N)77X8vnUx zD@glHs)SCMM{N`%dqE6meOO zF289>Asg0nlid*>U$sly*>^G8|)s!m_`lp)@MipLVWrcFV)tJV5ZsoJFO0FY^E9}r^ zsW;P{BQ7?8EcGnqIBc}V`#Os(PIU!~LRNl>ap2^fpqPS?4d_KeGK9Ll1?f-3zaoo~ zRqm#Db|<^jTvK9);^4zd`7_zhJ~9>oS*TLj{6OCiQij?kZ%M0%{p>WT01prCw40msjMpsN_xd_YS$sa-HHkA(8%_abRG{K^39#9H*N zZqy2UH?Wo9rGER&#qnw*TUaSXZqw$} zvh}8MUi!uJ>Zw&9P@^fg?1|pUkQR_j;M&)p$u_LTD5rgVs)_4KA?edJ&ASgYZ-8hw zMK@@eg)ebI8zSNt{-JrQmrI7{)64aS;#grQ8lj&SP0V7y1J`apk~sK5%fJyI>#`c>x#aEyS%zzgS3d{ZR`n_7^i zyA_F7u+n$ZW|VG%ND_z_Xiv*3HR(J+4L_P>1%q1)kD5P)52>V!V7N;QF1Y1*SXqQ$ z=0HS_cFLEvO)kW4pf?{-(Lm?{gp_@X>3&nw1-;eA*=-11-Dz8!%*dNYqej<0T&^Yp zO@TmFlqU^Nd{hO-2VrI3c8Zo3^Ib|PKV>a1@gq6jv2xTVF>evY+%u^^m=Ri0Cy*kg9Q+w zrm8XQNZQvLABRGu>YW9^vih6zC_H3FQjdE87yOqkq&*k#YXZ{cOUAv^BqTLQh$JOb zJ^#|8QY-&RAO<8jzuU4xYpC;2=CjOiCPfm9jPyu$&v_r9hmY*g;9_Ur$xLL8WB{g+ zAcmI&Lheu~Q{vDS^>1 z=a9r=J|B#-w*>s@F%SJ7|6d(>va|a9G`=HwafKcbDThAEdoUBytp5Lu&jSM|)pKC? zr=L;002t_~Bp{(_t5`vz%xI66BOe*j=tG3G0`0$^K~hzFr-?`$aQ6vdDJ<05eemYWc-@az1!%2=o@<7^|m^fkzRnK*I=i^COajk17Ti>s86w z{BQl@!Bhb8V^!7&sEwtL2w+CTBgHI3wWAfLtUq7yP~`Mq2?g?I3I zG;$>v#puUmWG$3kt@^H&%+*;*JS^0D*^9n@6-}1@fE*x;NhmCq(~-}$&lCDQTkUZQ z9bJ_}WE9c@EIJy3Xij=w8QGR-Tkem7DP5n{SYPD-bFYt#eoUC5V#aIa|6ExsSL{t+!efmpM0h{p_P;Twzuz5v2L*7W`g4Mkn@;1SdZ-|0CVRB`` zk?t5|!<#mml{C!gB>``y*fK-&owEpi;GL}(HT;E!~`?_*xShR%h{Z)2FbleMe8{8 zii=N}bb-w2Rl7So-|}v+|IQVHM?a=7%j`iU@WU-rfuu!)om9{YH(5G+B)%>XDJj>C zp1wp3i_&Y#H}7^%A$%0jL0d`M;+%%g*IpY^(Og{lfF{`^uJ(bbe{+pR8(Mw7-z|f#@rTY0Qqb zWTDOmv#tIUkH4EAR)k3B!)BfTzHdVJQ&#qDfx))rAsakH+4E0sHvrr&RnWkYbT)UM z8Y@-OSsF4}NGsUU(!-vweIw|w2n+FI*>jJj$OeLjOR03eF8iO%Gq3+Yik=>JhLviE z_t~PgdQ;gN!3;||;lWC#_C!1cfBXw$AuauLOtbOG#8e@59UZ|Y2|55E7J;|F>M^(& z{%U>bA3`GgdLo0MN~!y(h?oT@sAIwdF<{)}_1BFU&CIGAUW^QEOtPqu-~>Gik~R}X zyf88{ayAzD>kKg<`j>U`GhUqZyY6Hmxc7jccJo_}<+5>+{e#K_`Y~PE?vP&J0`WvS d@>O3{m(Zyg&b3Pl;DsX;#pf!rrP8JW{|`v2qTc`j literal 0 HcmV?d00001 diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index b9c0273..170ce9e 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -1,20 +1,21 @@ import type { Grades, RMPInstructor } from "@utd-grades/db"; -import { Col, Row} from "antd"; +import { Col, Row, Tooltip } from "antd"; import { BarElement, CategoryScale, Chart as ChartJS, ChartOptions, LinearScale, - Tooltip, + Tooltip as ChartTooltip, } from "chart.js"; -import React from "react"; +import React, { useMemo, useState } from "react"; import { Bar } from "react-chartjs-2"; import styled from "styled-components"; import type { UserFriendlyGrades } from "../types"; import { extractGrades, getColors } from "../utils"; +import { LinkOutlined } from '@ant-design/icons'; -ChartJS.register(CategoryScale, LinearScale, BarElement, Tooltip); +ChartJS.register(CategoryScale, LinearScale, BarElement, ChartTooltip); const Container = styled.div` padding-top: 20px; @@ -100,21 +101,27 @@ const Stat = styled.h5` const RMPScore = styled.span` color: #333333; + line-height: 1; @media (max-width: 992px) { & { - font-size: 20px; - padding-left: 0.3rem; - line-height: 1; - font-weight: 550; + font-size: 24px; + font-weight: 700; } } @media (min-width: 992px) { & { - font-size: 3.5rem; - line-height: 0.8; - font-weight: bolder; + font-size: 3.0rem; + } + } +`; + +const RMPSubHeader = styled(SubHeader)` + @media (max-width: 992px) { + & { + font-size: 14px; + margin-top: 0.5rem !important; } } `; @@ -168,14 +175,13 @@ const RMPTag = styled.p` font-family: var(--font-family); font-weight: 500; color: rgb(84, 84, 84); - border-radius: 1rem; + border-radius: 1px; background-color: #f5f5f5; - padding: 0.5rem 1rem; - margin-right: 1rem; - margin-bottom: 0.5rem; + padding: 0.4rem .4rem; transition: all 0.2s ease-in-out; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + &:hover { background-color: #e8e8e8; transform: translateY(-1px); @@ -187,8 +193,18 @@ const RMPHeader = styled.a` font-family: var(--font-family); font-weight: 700; font-size: 1.15rem; - text-decoration: ${props => props.href && props.href !== "#" ? "underline" : "none"} !important; - color: ${props => props.href && props.href !== "#" ? "#1890ff" : "#333"} !important; + color: #333333 !important; + text-decoration: none !important; + border-bottom: ${props => props.href && props.href !== "#" ? "1px solid #333333" : "none"}; + margin-bottom: 0.5rem; + transition: color 0.2s ease; + display: inline-flex; + align-items: center; + gap: 0.5rem; + + &:hover { + color: #666666 !important; + } @media (max-width: 768px) { & { @@ -243,8 +259,7 @@ const OrderedStack = styled.div` & { display: flex; flex-direction: column; - justify-content: center; - padding-right: 2rem; + justify-content: flex-start; } } `; @@ -253,6 +268,9 @@ const OrderedFirst = styled.div` @media (min-width: 992px) { & { order: 1; + display: flex; + align-items: flex-end; + line-height: 1; } } @media (max-width: 992px) { @@ -284,11 +302,14 @@ const OrderedSecond = styled.div` `; const FlexSmall = styled.div` - @media (min-width: 992px) { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: flex-start; + + @media (max-width: 992px) { & { - display: flex; - flex-direction: row; - justify-content: space-between; + gap: 1rem; } } `; @@ -368,22 +389,22 @@ export default function SectionContent({ {`${section.semester.season} ${section.semester.year}`} - - - {instructor?.quality_rating ? instructor.quality_rating : "N/A"} + +
+ {courseRating ? courseRating : "N/A"} - {instructor?.quality_rating ? "/5" : ""} + {courseRating ? "/5" : ""} - - - RMP SCORE - +
+ Course Rating +
Total Students {section.totalStudents} @@ -401,18 +422,40 @@ export default function SectionContent({ - + See more on + RMP + + } + overlayInnerStyle={{ + backgroundColor: 'white', + color: '#333333', + border: '1px solid rgba(233, 233, 233, 0.7)', + borderRadius: '1px', + padding: '10px', + + fontSize: '14px', + fontFamily: 'var(--font-family)', + fontWeight: '500', + }} + > - Professor Details - + + Professor Details + {instructor?.url && } + + {instructor && courseRating ? ( <> - {courseRating ? courseRating : `N/A`} - Course rating + {instructor?.quality_rating ? instructor.quality_rating : `N/A`} + RMP Score @@ -436,8 +479,8 @@ export default function SectionContent({ {instructor?.tags && ( <> -

Tags

- +

Tags

+ {instructor.tags.split(",").map((tag) => ( {tag} ))} From ba760f233a5279316db86b585448e22b008b3f66 Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Thu, 27 Mar 2025 23:49:14 -0500 Subject: [PATCH 14/22] RMP data design updated on SectionContent component --- client/src/components/SectionContent.tsx | 58 +----------------------- 1 file changed, 2 insertions(+), 56 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index 170ce9e..c3e25ea 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -8,7 +8,7 @@ import { LinearScale, Tooltip as ChartTooltip, } from "chart.js"; -import React, { useMemo, useState } from "react"; +import React from "react"; import { Bar } from "react-chartjs-2"; import styled from "styled-components"; import type { UserFriendlyGrades } from "../types"; @@ -247,60 +247,6 @@ const Stack = styled.div` flex-direction: column; `; -const OrderedStack = styled.div` - @media (max-width: 992px) { - & { - display: flex; - flex-direction: row; - align-items: flex-end; - } - } - @media (min-width: 992px) { - & { - display: flex; - flex-direction: column; - justify-content: flex-start; - } - } -`; - -const OrderedFirst = styled.div` - @media (min-width: 992px) { - & { - order: 1; - display: flex; - align-items: flex-end; - line-height: 1; - } - } - @media (max-width: 992px) { - & { - order: 2; - } - } -`; - -const OrderedSecond = styled.div` - font-family: var(--font-family); - color: rgb(117, 117, 117); - font-weight: 600; - font-size: 18px; - - @media (min-width: 992px) { - & { - order: 2; - text-align: center; - } - } - @media (max-width: 992px) { - & { - order: 1; - align-self: center; - padding-top: 1rem; - } - } -`; - const FlexSmall = styled.div` display: flex; flex-direction: row; @@ -322,7 +268,7 @@ interface SectionContentProps { // handleRelatedSectionClick: (search: string, id: number) => void; } -export default function SectionContent({ +export default function SectiSonContent({ section, instructor, courseRating, From a3b371962cd41cf29a5139cea6e6c6d9684f5663 Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Fri, 28 Mar 2025 00:03:33 -0500 Subject: [PATCH 15/22] added color to RMPScore and Difficulty --- client/src/components/SectionContent.tsx | 34 ++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index c3e25ea..2197ec4 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -268,6 +268,22 @@ interface SectionContentProps { // handleRelatedSectionClick: (search: string, id: number) => void; } +const getDifficultyColor = (difficulty: number): string => { + if (difficulty <= 1) return '#2ecc71'; // Very green + if (difficulty <= 2) return '#27ae60'; // Green + if (difficulty <= 3) return '#f1c40f'; // Yellow + if (difficulty <= 4) return '#e67e22'; // Orange + return '#e74c3c'; // Red +}; + +const getRMPColor = (rating: number): string => { + if (rating >= 4.5) return '#2ecc71'; // Very green + if (rating >= 3.75) return '#27ae60'; // Yellow green + if (rating >= 3) return '#f1c40f'; // Yellow + if (rating >= 2) return '#e67e22'; // Orange + return '#e74c3c'; // Red +}; + export default function SectiSonContent({ section, instructor, @@ -400,12 +416,26 @@ export default function SectiSonContent({ {instructor && courseRating ? ( <> - {instructor?.quality_rating ? instructor.quality_rating : `N/A`} + + {instructor?.quality_rating ? ( + + {instructor.quality_rating} + + ) : ( + 'N/A' + )} + RMP Score - {instructor?.difficulty_rating ? instructor.difficulty_rating : `N/A`} + {instructor?.difficulty_rating ? ( + + {instructor.difficulty_rating} + + ) : ( + 'N/A' + )} Level of difficulty From db46c277606d22f16099025872f5d690a51af206 Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Fri, 28 Mar 2025 00:17:00 -0500 Subject: [PATCH 16/22] updated builtwithlove --- client/src/components/Core.tsx | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/client/src/components/Core.tsx b/client/src/components/Core.tsx index 5830555..45c3596 100644 --- a/client/src/components/Core.tsx +++ b/client/src/components/Core.tsx @@ -61,6 +61,16 @@ const TrendsText = styled.p` margin-bottom: 0; `; +const BuiltWithLove = styled.p` + display: flex; + align-items: center; + justify-content: center; + gap: 0.5rem; + font-size: 1.2rem; + margin: 0.5rem 0; + font-weight: 550; +`; + const NebulaLogo = styled.img` height: 1.375rem; filter: drop-shadow(0 0 4px rgb(0 0 0 / 0.6)); @@ -90,11 +100,10 @@ function Core({ children }: CoreProps) { Compare everything in one place with UTD Trends -

+ Built with by{" "} - ACM Dev. Raw data available{" "} - for download. -

+ ACM Dev +

Designed by Bharat Arimilli. Thanks to{" "} Garrett Gu,{" "} @@ -103,6 +112,9 @@ function Core({ children }: CoreProps) { donors. + + Raw data available for download +

From c8b188e37b2231ee80d0d857ef0e60d133c23bce Mon Sep 17 00:00:00 2001 From: jor-dango Date: Fri, 28 Mar 2025 01:11:53 -0500 Subject: [PATCH 17/22] updated tooltip styling --- client/src/components/SectionContent.tsx | 82 ++++++++++++++++-------- 1 file changed, 54 insertions(+), 28 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index 2197ec4..fd798ed 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -8,7 +8,7 @@ import { LinearScale, Tooltip as ChartTooltip, } from "chart.js"; -import React from "react"; +import React, { useRef, useState } from "react"; import { Bar } from "react-chartjs-2"; import styled from "styled-components"; import type { UserFriendlyGrades } from "../types"; @@ -304,6 +304,12 @@ export default function SectiSonContent({ // return ; // }; + const [hovered, setHovered] = useState<"advising" | "schedule" | null>(null); + const [tooltipPosition, setTooltipPosition] = useState({ top: 0, left: 0 }); + const buttonRefs = { + advising: useRef(null), + schedule: useRef(null), + }; const grades = extractGrades(section); const keys = Object.keys(grades) as (keyof UserFriendlyGrades)[]; // we can be confident only these keys exist @@ -384,34 +390,54 @@ export default function SectiSonContent({ - - See more on - RMP - - } - overlayInnerStyle={{ - backgroundColor: 'white', - color: '#333333', - border: '1px solid rgba(233, 233, 233, 0.7)', - borderRadius: '1px', - padding: '10px', - - fontSize: '14px', - fontFamily: 'var(--font-family)', - fontWeight: '500', - }} - + + setHovered("advising")} + onMouseLeave={() => setHovered(null)} + ref={buttonRefs.advising} > - - Professor Details - {instructor?.url && } - - + Professor Details + {instructor?.url && } + {hovered && ( + <> +
+ See more on + RMP + +
+
+ + )} + {instructor && courseRating ? ( <> From 441ff6aecc9d5a4b53d989542bc366b402da62b5 Mon Sep 17 00:00:00 2001 From: jor-dango Date: Fri, 28 Mar 2025 01:13:24 -0500 Subject: [PATCH 18/22] modified tooltip styling slightly --- client/src/components/SectionContent.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index fd798ed..3fd6e06 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -415,14 +415,14 @@ export default function SectiSonContent({ borderRadius: "0.5rem", fontSize: "0.75rem", lineHeight: "1rem", - color: "#ffffff", + color: "#000000", whiteSpace: "nowrap", - backgroundColor: "#333333", + backgroundColor: "#ffffff", boxShadow: "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)", }} > See more on - RMP + RMP
Date: Fri, 28 Mar 2025 01:17:44 -0500 Subject: [PATCH 19/22] Removed extraneous code --- client/src/components/SectionContent.tsx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index 3fd6e06..146e68c 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -304,12 +304,8 @@ export default function SectiSonContent({ // return ; // }; - const [hovered, setHovered] = useState<"advising" | "schedule" | null>(null); - const [tooltipPosition, setTooltipPosition] = useState({ top: 0, left: 0 }); - const buttonRefs = { - advising: useRef(null), - schedule: useRef(null), - }; + const [hovered, setHovered] = useState<"rmpLink" | null>(null); + const rmpLinkRef = useRef(null); const grades = extractGrades(section); const keys = Object.keys(grades) as (keyof UserFriendlyGrades)[]; // we can be confident only these keys exist @@ -395,9 +391,9 @@ export default function SectiSonContent({ href={instructor?.url || "#"} target={instructor?.url ? "_blank" : "_self"} style={{ position: "relative" }} - onMouseEnter={() => setHovered("advising")} + onMouseEnter={() => setHovered("rmpLink")} onMouseLeave={() => setHovered(null)} - ref={buttonRefs.advising} + ref={rmpLinkRef} > Professor Details {instructor?.url && } From cae63638d942248e65b5c304b9ff0865c854dabd Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Fri, 28 Mar 2025 01:18:25 -0500 Subject: [PATCH 20/22] fixed small build isues --- client/src/components/SectionContent.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index 146e68c..b591c59 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -1,5 +1,5 @@ import type { Grades, RMPInstructor } from "@utd-grades/db"; -import { Col, Row, Tooltip } from "antd"; +import { Col, Row } from "antd"; import { BarElement, CategoryScale, @@ -304,8 +304,11 @@ export default function SectiSonContent({ // return ; // }; - const [hovered, setHovered] = useState<"rmpLink" | null>(null); - const rmpLinkRef = useRef(null); + const [hovered, setHovered] = useState<"advising" | "schedule" | null>(null); + const buttonRefs = { + advising: useRef(null), + schedule: useRef(null), + }; const grades = extractGrades(section); const keys = Object.keys(grades) as (keyof UserFriendlyGrades)[]; // we can be confident only these keys exist From 3c9d6b4c24ce581f7d024b29b0f7b615f71dff45 Mon Sep 17 00:00:00 2001 From: FarhanJamil0001 Date: Fri, 28 Mar 2025 01:23:27 -0500 Subject: [PATCH 21/22] fixed small build isues --- client/src/components/SectionContent.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index b591c59..ad90d3b 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -8,7 +8,7 @@ import { LinearScale, Tooltip as ChartTooltip, } from "chart.js"; -import React, { useRef, useState } from "react"; +import React, { useState, useRef } from "react"; import { Bar } from "react-chartjs-2"; import styled from "styled-components"; import type { UserFriendlyGrades } from "../types"; @@ -304,11 +304,8 @@ export default function SectiSonContent({ // return ; // }; - const [hovered, setHovered] = useState<"advising" | "schedule" | null>(null); - const buttonRefs = { - advising: useRef(null), - schedule: useRef(null), - }; + const [hovered, setHovered] = useState<"rmpLink" | null>(null); + const rmpLinkRef = useRef(null); const grades = extractGrades(section); const keys = Object.keys(grades) as (keyof UserFriendlyGrades)[]; // we can be confident only these keys exist From 5ffa1c05983f56f978cd2e21291a0e48bd9f035a Mon Sep 17 00:00:00 2001 From: Giang Pham Date: Fri, 28 Mar 2025 10:00:49 -0500 Subject: [PATCH 22/22] fix bug: some of the courses may not be found so cannot render the instructor's data --- client/src/components/SearchResults.tsx | 27 +++++++-- client/src/components/SectionContent.tsx | 72 ++++++++++++------------ 2 files changed, 57 insertions(+), 42 deletions(-) diff --git a/client/src/components/SearchResults.tsx b/client/src/components/SearchResults.tsx index 65743f0..7cfc3e5 100644 --- a/client/src/components/SearchResults.tsx +++ b/client/src/components/SearchResults.tsx @@ -114,15 +114,30 @@ export default function Results({ search, sectionId, router }: ResultsProps) { useEffect(() => { if (instructors && section) { - for (const ins of instructors) { + // when there is only professor that matches the needed name -> set the instructor to that prof + // this helps prevent that some of the courses may not be listed in the RMP data but we still want to the prof data + + // however, if there're 2 profs with the same name and the course we're looking for is not listed in either instructor's RMP courses + // then we don't know who to return + // this will not be a problem when the new RMP data is updated + if (instructors.length === 1) { + setInstructor(instructors[0]); const rating = db!.getCourseRating( - ins.instructor_id, + instructors[0]!.instructor_id, `${section.subject}${section.catalogNumber}` ); - if (rating) { - setInstructor(ins); - setCourseRating(rating); - break; + setCourseRating(rating); + } else { + for (const ins of instructors) { + const rating = db!.getCourseRating( + ins.instructor_id, + `${section.subject}${section.catalogNumber}` + ); + if (rating) { + setInstructor(ins); + setCourseRating(rating); + break; + } } } } else { diff --git a/client/src/components/SectionContent.tsx b/client/src/components/SectionContent.tsx index ad90d3b..335ab8c 100644 --- a/client/src/components/SectionContent.tsx +++ b/client/src/components/SectionContent.tsx @@ -1,3 +1,4 @@ +import { LinkOutlined } from "@ant-design/icons"; import type { Grades, RMPInstructor } from "@utd-grades/db"; import { Col, Row } from "antd"; import { @@ -8,12 +9,11 @@ import { LinearScale, Tooltip as ChartTooltip, } from "chart.js"; -import React, { useState, useRef } from "react"; +import React, { useRef, useState } from "react"; import { Bar } from "react-chartjs-2"; import styled from "styled-components"; import type { UserFriendlyGrades } from "../types"; import { extractGrades, getColors } from "../utils"; -import { LinkOutlined } from '@ant-design/icons'; ChartJS.register(CategoryScale, LinearScale, BarElement, ChartTooltip); @@ -112,7 +112,7 @@ const RMPScore = styled.span` @media (min-width: 992px) { & { - font-size: 3.0rem; + font-size: 3rem; } } `; @@ -177,11 +177,10 @@ const RMPTag = styled.p` color: rgb(84, 84, 84); border-radius: 1px; background-color: #f5f5f5; - padding: 0.4rem .4rem; + padding: 0.4rem 0.4rem; transition: all 0.2s ease-in-out; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); - &:hover { background-color: #e8e8e8; transform: translateY(-1px); @@ -195,7 +194,7 @@ const RMPHeader = styled.a` font-size: 1.15rem; color: #333333 !important; text-decoration: none !important; - border-bottom: ${props => props.href && props.href !== "#" ? "1px solid #333333" : "none"}; + border-bottom: ${(props) => (props.href && props.href !== "#" ? "1px solid #333333" : "none")}; margin-bottom: 0.5rem; transition: color 0.2s ease; display: inline-flex; @@ -269,19 +268,19 @@ interface SectionContentProps { } const getDifficultyColor = (difficulty: number): string => { - if (difficulty <= 1) return '#2ecc71'; // Very green - if (difficulty <= 2) return '#27ae60'; // Green - if (difficulty <= 3) return '#f1c40f'; // Yellow - if (difficulty <= 4) return '#e67e22'; // Orange - return '#e74c3c'; // Red + if (difficulty <= 1) return "#2ecc71"; // Very green + if (difficulty <= 2) return "#27ae60"; // Green + if (difficulty <= 3) return "#f1c40f"; // Yellow + if (difficulty <= 4) return "#e67e22"; // Orange + return "#e74c3c"; // Red }; const getRMPColor = (rating: number): string => { - if (rating >= 4.5) return '#2ecc71'; // Very green - if (rating >= 3.75) return '#27ae60'; // Yellow green - if (rating >= 3) return '#f1c40f'; // Yellow - if (rating >= 2) return '#e67e22'; // Orange - return '#e74c3c'; // Red + if (rating >= 4.5) return "#2ecc71"; // Very green + if (rating >= 3.75) return "#27ae60"; // Yellow green + if (rating >= 3) return "#f1c40f"; // Yellow + if (rating >= 2) return "#e67e22"; // Orange + return "#e74c3c"; // Red }; export default function SectiSonContent({ @@ -386,7 +385,6 @@ export default function SectiSonContent({ - Professor Details - {instructor?.url && } + {instructor?.url && } {hovered && ( <>
See more on - RMP - + RMP
-
+
)} - {instructor && courseRating ? ( + {instructor ? ( <> @@ -444,7 +444,7 @@ export default function SectiSonContent({ {instructor.quality_rating} ) : ( - 'N/A' + "N/A" )} RMP Score @@ -456,7 +456,7 @@ export default function SectiSonContent({ {instructor.difficulty_rating} ) : ( - 'N/A' + "N/A" )} Level of difficulty @@ -478,7 +478,7 @@ export default function SectiSonContent({ {instructor?.tags && ( <>

Tags

- + {instructor.tags.split(",").map((tag) => ( {tag} ))} @@ -488,4 +488,4 @@ export default function SectiSonContent({ ); -} \ No newline at end of file +}