You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems to me that all grad courses are 500 level courses and all 500 level courses are grad courses so the course level filter does the same job as this? Wondering if you could verify this in the database
// Find the number of courses with catalog number >= 500db.getCollection('courses').find({catalogNumber: {$gte:'500'}}).count()// returns 3035// Find the number of grad coursesdb.getCollection('courses').find({track: 'GRAD'}).count()// returns 2910// Fund the number of undergrad courses with catalog number >= 500db.getCollection('courses').find({catalogNumber: {$gte: '500'},track: 'UGRD'}).count()// returns 125
Many of the 125 undergrad courses with catalog number >= 500 are the mysterious courses with catalog numbers in the 90s (see issue #8). Otherwise some of these courses are junior independent work courses (which some department use 9xx for)
As requested by @melyshu.
The text was updated successfully, but these errors were encountered: