This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id": 1995, | |
"higestPrice": 1000000, | |
"lowestPrice": 12000, | |
"averagePrice": 114059, | |
"priceStdDev": 81540 | |
}, | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.homeSales.aggregate([ | |
{ | |
$group: | |
{ | |
_id: {$year: "$date"}, | |
higestPrice: {$max: "$amount"}, | |
lowestPrice: {$min: "$amount"}, | |
averagePrice: {$avg: "$amount"}, | |
priceStdDev: {$stdDevPop: "$amount"} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_id": 1995, | |
"higestPrice": 1000000, | |
"lowestPrice": 12000, | |
"averagePrice": 114059.35206869633, | |
"priceStdDev": 81540.50490801703 | |
}, | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.homeSales.aggregate([ | |
{ | |
$group: | |
{ | |
_id: {$year: "$date"}, | |
higestPrice: {$max: "$amount"}, | |
lowestPrice: {$min: "$amount"}, | |
averagePrice: {$avg: "$amount"}, | |
priceStdDev: {$stdDevPop: "$amount"} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"address": { | |
"nameOrNumber": "2 - 3", | |
"street": "THE SWITCHBACK", | |
"town": "MAIDENHEAD", | |
"county": "WINDSOR AND MAIDENHEAD", | |
"postcode": "SL6 7RJ" | |
}, | |
"saleDate": ISODate("1999-03-15T00:00:00Z"), | |
"price": 5425000, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.homeSales.aggregate([ | |
{$match: { | |
amount: {$gte:3000000}} | |
}, | |
{$lookup: { | |
from: "postcodes", | |
localField: "address.postcode", | |
foreignField: "postcode", | |
as: "postcode_docs"} | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
{ | |
"_id": ObjectId("56005dda80c3678b19799e52"), | |
"amount": 3000000, | |
"date": ISODate("2012-04-19T00:00:00Z"), | |
"address": { | |
"nameOrNumber": "TEMPLE FERRY PLACE", | |
"street": "MILL LANE", | |
"town": "MAIDENHEAD", | |
"county": "WINDSOR AND MAIDENHEAD", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.homeSales.aggregate([ | |
{$match: { | |
amount: {$gte:3000000}} | |
}, | |
{$lookup: { | |
from: "postcodes", | |
localField: "address.postcode", | |
foreignField: "postcode", | |
as: "postcode_docs"} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
{ | |
"_id": ObjectId("56005dda80c3678b19799e52"), | |
"amount": 3000000, | |
"date": ISODate("2012-04-19T00:00:00Z"), | |
"address": { | |
"nameOrNumber": "TEMPLE FERRY PLACE", | |
"street": "MILL LANE", | |
"town": "MAIDENHEAD", | |
"county": "WINDSOR AND MAIDENHEAD", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.homeSales.aggregate([ | |
{$match: { | |
amount: {$gte:3000000}} | |
} | |
]) |