Difference between revisions of "Round"
From NoSQLZoo
(Update to mongo shell.) |
|||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{{TopTenTips}} | {{TopTenTips}} | ||
<div style="min-height:25em"> | <div style="min-height:25em"> | ||
Rounding is easy inside a <code>MapReduce</code> as it is possible to use the <code>Math</code> object provided by JavaScript.<br/> | Rounding is easy inside a <code>MapReduce</code> as it is possible to use the <code>Math</code> object provided by JavaScript.<br/> | ||
More information on <code>Math</code> can be found [https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math here].<br/><br/> | More information on <code>Math</code> can be found [https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Math here].<br/><br/> | ||
− | At the time of writing the <code>aggregation()</code> method has no rounding functions, though it is still doable with <code>$mod</code> and <code>$multiply</code>, as shown [http://www.kamsky.org/stupid-tricks-with-mongodb/rounding-numbers-in-aggregation-framework here] by the lead project manager at MongoDB<br/> | + | At the time of writing the <code>aggregation()</code> method has no rounding functions, though it is still doable with <code>$mod</code> and <code>$multiply</code>, as shown [http://www.kamsky.org/stupid-tricks-with-mongodb/rounding-numbers-in-aggregation-framework here] by the lead project manager at MongoDB.<br/> |
</div> | </div> | ||
==MapReduce== | ==MapReduce== | ||
− | <div class="q nonum" data-lang=" | + | <div class="q nonum" data-lang="mongo"> |
− | <pre class=def> | + | <pre class="def"> |
− | + | db.world.mapReduce( | |
− | + | function(){ | |
− | + | emit(this.name, this.population); | |
− | + | }, | |
− | + | function(key, values){ | |
− | + | return values; | |
− | + | }, | |
− | + | { | |
− | + | finalize: function(key,values){ | |
+ | return { | ||
+ | "population": values, | ||
+ | "population in millions": Math.round(values/1000000) | ||
+ | }; | ||
+ | }, | ||
+ | out: {inline: 1}, | ||
+ | query: {"name": "United Kingdom"} | ||
+ | } | ||
) | ) | ||
</pre> | </pre> | ||
Line 38: | Line 30: | ||
==Aggregate== | ==Aggregate== | ||
− | <div class="q nonum" data-lang=" | + | <div class="q nonum" data-lang="mongo"> |
− | <pre class=def> | + | <pre class="def"> |
− | + | db.world.aggregate([ | |
− | + | {"$match": {"name": "United Kingdom"}}, | |
− | + | {"$project":{ | |
− | + | "_id": 1, | |
− | + | "name": 1, | |
− | + | "population":{"$divide": ["$population", 1000000]} | |
− | + | }}, | |
− | + | {"$project":{ | |
− | + | "_id": 0, | |
− | + | "name": 1, | |
− | + | "population": '$population', | |
− | + | "population in millions":{ | |
− | + | "$divide":[ | |
− | + | {"$subtract":[ | |
− | + | {"$multiply": ['$population', 100]}, | |
− | + | {"$mod": [{"$multiply": ['$population',100]}, 1]} | |
+ | ]}, | ||
+ | 100 | ||
+ | ] | ||
+ | } | ||
+ | }} | ||
+ | ]).pretty() | ||
</pre> | </pre> | ||
</div> | </div> |
Revision as of 02:46, 6 April 2018
Rounding is easy inside a MapReduce
as it is possible to use the Math
object provided by JavaScript.
More information on Math
can be found here.
At the time of writing the aggregation()
method has no rounding functions, though it is still doable with $mod
and $multiply
, as shown here by the lead project manager at MongoDB.
MapReduce
db.world.mapReduce( function(){ emit(this.name, this.population); }, function(key, values){ return values; }, { finalize: function(key,values){ return { "population": values, "population in millions": Math.round(values/1000000) }; }, out: {inline: 1}, query: {"name": "United Kingdom"} } )
Aggregate
db.world.aggregate([ {"$match": {"name": "United Kingdom"}}, {"$project":{ "_id": 1, "name": 1, "population":{"$divide": ["$population", 1000000]} }}, {"$project":{ "_id": 0, "name": 1, "population": '$population', "population in millions":{ "$divide":[ {"$subtract":[ {"$multiply": ['$population', 100]}, {"$mod": [{"$multiply": ['$population',100]}, 1]} ]}, 100 ] } }} ]).pretty()