Click or drag to resize

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
)

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