FrameViewAddComputedColumnT Method |
Add a computed column.
Namespace:
Meta.Numerics.Data
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public void AddComputedColumn<T>(
string columnName,
Func<FrameRow, T> function
)
Public Sub AddComputedColumn(Of T) (
columnName As String,
function As Func(Of FrameRow, T)
)
public:
generic<typename T>
void AddComputedColumn(
String^ columnName,
Func<FrameRow^, T>^ function
)
member AddComputedColumn :
columnName : string *
function : Func<FrameRow, 'T> -> unit
Parameters
- columnName
- Type: SystemString
The name of the computed column. - function
- Type: SystemFuncFrameRow, T
The function that computes the column value.
Type Parameters
- T
- The type of the computed value.
See Also