运算符 $linearFill 在文档序列中内插缺失值。 $linearFill运算符对缺失数据执行线性内插,使其可用于值差距(如时序数据)的数据集。
Syntax
{
$linearFill: {
input: < expression > ,
sortBy: {
< field >: < 1 or - 1 >
}
}
}
参数
| 参数 | Description |
|---|---|
input |
要为其内插缺失值的字段或表达式。 |
sortBy |
指定对数据进行内插排序的字段,以及排序顺序(1 表示升序,-1 降序)。 |
例子
请考虑商店集合中的这个示例文档。
{
"_id": "0fcc0bf0-ed18-4ab8-b558-9848e18058f4",
"name": "First Up Consultants | Beverage Shop - Satterfieldmouth",
"location": {
"lat": -89.2384,
"lon": -46.4012
},
"staff": {
"totalStaff": {
"fullTime": 8,
"partTime": 20
}
},
"sales": {
"totalSales": 75670,
"salesByCategory": [
{
"categoryName": "Wine Accessories",
"totalSales": 34440
},
{
"categoryName": "Bitters",
"totalSales": 39496
},
{
"categoryName": "Rum",
"totalSales": 1734
}
]
},
"promotionEvents": [
{
"eventName": "Unbeatable Bargain Bash",
"promotionalDates": {
"startDate": {
"Year": 2024,
"Month": 6,
"Day": 23
},
"endDate": {
"Year": 2024,
"Month": 7,
"Day": 2
}
},
"discounts": [
{
"categoryName": "Whiskey",
"discountPercentage": 7
},
{
"categoryName": "Bitters",
"discountPercentage": 15
},
{
"categoryName": "Brandy",
"discountPercentage": 8
},
{
"categoryName": "Sports Drinks",
"discountPercentage": 22
},
{
"categoryName": "Vodka",
"discountPercentage": 19
}
]
},
{
"eventName": "Steal of a Deal Days",
"promotionalDates": {
"startDate": {
"Year": 2024,
"Month": 9,
"Day": 21
},
"endDate": {
"Year": 2024,
"Month": 9,
"Day": 29
}
},
"discounts": [
{
"categoryName": "Organic Wine",
"discountPercentage": 19
},
{
"categoryName": "White Wine",
"discountPercentage": 20
},
{
"categoryName": "Sparkling Wine",
"discountPercentage": 19
},
{
"categoryName": "Whiskey",
"discountPercentage": 17
},
{
"categoryName": "Vodka",
"discountPercentage": 23
}
]
}
]
}
示例 1:内插缺失的销售数据
若要内插缺少的销售数据,请运行查询以先按名称对数据集中的存储进行分区。 然后,使用 $linearFill 运算符在分区内的商店内插缺少的销售数据。
db.stores.aggregate([{
"$match": {
"company": {
"$in": ["First Up Consultants"]
}
}
},
{
"$setWindowFields": {
"partitionBy": "$name",
"sortBy": {
"storeOpeningDate": 1
},
"output": {
"interpolatedSales": {
"$linearFill": "$sales.totalSales"
}
}
}
}
])
此查询返回的前三个结果为:
[
{
"_id": "0f4c48fe-c43b-4083-a856-afe6dd902077",
"name": "First Up Consultants | Appliance Bargains - Feilmouth",
"interpolatedSales": 26630
},
{
"_id": "c4883253-7ccd-4054-a7e0-8aeb202307b5",
"name": "First Up Consultants | Appliance Bargains - New Kari",
"interpolatedSales": 31568
},
{
"_id": "a159ff5c-6ec5-4ca8-9672-e8903a54dd90",
"name": "First Up Consultants | Appliance Bargains - Schadenstad",
"interpolatedSales": 59926
}
]
相关内容
- 查看用于 从 MongoDB 迁移到 Azure DocumentDB 的选项。
- 详细了解 与 MongoDB 的功能兼容性。