Adrian Chen
100/100
(Make your own calculation and replace the number 0 with the points you think you've earned.)
6
Saturday
Figuring out D3.
Circular graphing, Geographical graphing
db.aiddata.find({"donor": "Belgium"},{"recipient": 1, "disbursement_amount":1})
db.aiddata.find({"biodiversity":{$gt:0}},{"recipient" : 1, "disbursement_amout" : 1, "title" : 1})
db.runCommand({ distinct: "aiddata", key : "flow_type"})
db.runCommand({ distinct: "aiddata", key : "flow_type", query : { "disbursement_amount" : {$gt : 100000000}}})
db.aiddata.aggregate([{$match: {donor : "Belgium"}}. {$group : { _id : "$year", total: {$sum : "$disbursement_amount"}}}])