有一篇文章描述了如何在一个非常具体的例子中做到这一点:
https://community.powerbi.com/t5/Community-Blog/Linear-Interpolation-with-Power-BI/ba-p/341202
但是代码的可移植性不是很好,因为它通过名称等引用特定的列。
它也没有把代码打包成一个函数,所以你的power查询会被一堆额外的步骤和变量弄得乱七八糟。
发布于 2020-09-25 23:35:56
我已经写了一个(相对)通用的函数,用于在power查询中插入值(对于power bi和M码也很有用)。
它接受一个表和两个列名作为输入。它根据最接近的x,y对输出插入了丢失的y值的表-由传递给它的数据的顺序(而不是数值接近度)指示。如果你需要数值上的接近,只需在传递给这个函数之前按x(可能还有buffer)进行排序。
(Input as table, xColumn as text, yColumn as text) =>
//Interpolates missing yColumn values based on nearest existing xColumn, yColumn pairs
let
Buffer = Table.Buffer(Input),
//index for joining calculations and preserving original order
#"Added Main Index" = Table.AddIndexColumn(Buffer, "InterpolateMainIndex", 0, 1),
#"Two Columns and Index" = Table.RemoveColumns(#"Added Main Index", List.Select(Table.ColumnNames(#"Added Main Index"), each _ <> xColumn and _ <> yColumn and _ <> "InterpolateMainIndex")),
#"Remove Blanks" = Table.SelectRows(#"Two Columns and Index", each Record.Field(_, yColumn) <> null and Record.Field(_, yColumn) <> ""),
//index for refering to next non-blank record
#"Added Sub Index" = Table.AddIndexColumn(#"Remove Blanks", "InterpolateSubIndex", 0, 1),
//m = (y2 - y1) / (x2 - x1)
m = Table.AddColumn(#"Added Sub Index",
"m",
each (Number.From(Record.Field(_, yColumn))-Number.From(Record.Field(#"Added Sub Index"{[InterpolateSubIndex]+1}, yColumn))) /
(Number.From(Record.Field(_, xColumn))-Number.From(Record.Field(#"Added Sub Index"{[InterpolateSubIndex]+1}, xColumn))),
type number),
//b = y - m * x
b = Table.AddColumn(m, "b", each Record.Field(_, yColumn) - [#"m"] * Number.From(Record.Field(_, xColumn)), type number),
//rename or remove columns to allow full join
#"Renamed Columns" = Table.RenameColumns(b,{{"InterpolateMainIndex", "InterpolateMainIndexCopy"}}),
xColumnmb = Table.RemoveColumns(#"Renamed Columns",{yColumn, xColumn, "InterpolateSubIndex"}),
Join = Table.Join(#"Added Main Index", "InterpolateMainIndex", xColumnmb, "InterpolateMainIndexCopy", JoinKind.FullOuter),
//enforce orignal sorting
#"Sorted by Main Index" = Table.Sort(Join,{{"InterpolateMainIndex", Order.Ascending}}),
#"Filled Down mb" = Table.FillDown(#"Sorted by Main Index",{"m", "b"}),
//y = m * x + b
Interpolate = Table.ReplaceValue(#"Filled Down mb",null,each ([m] * Number.From(Record.Field(_, xColumn)) + [b]),Replacer.ReplaceValue,{yColumn}),
//clean up
#"Remove Temporary Columns" = Table.RemoveColumns(Interpolate,{"m", "b", "InterpolateMainIndex", "InterpolateMainIndexCopy"}),
#"Restore Types" = Value.ReplaceType(#"Remove Temporary Columns", Value.Type(Input))
in
#"Restore Types"
https://stackoverflow.com/questions/64067210
复制相似问题