Skip to content

Instantly share code, notes, and snippets.

@danared
Created November 2, 2015 18:10
Show Gist options
  • Save danared/ba7e034f7072cac8806c to your computer and use it in GitHub Desktop.
Save danared/ba7e034f7072cac8806c to your computer and use it in GitHub Desktop.
db.homeSales.aggregate([
{
$group:
{
_id: {$year: "$date"},
higestPrice: {$max: "$amount"},
lowestPrice: {$min: "$amount"},
averagePrice: {$avg: "$amount"},
priceStdDev: {$stdDevPop: "$amount"}
}
},
{
$sort: {_id: 1}
}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment