Click or drag to resize
FrameFromValuesT, C, R, V Method (IEnumerableT, FuncT, C, FuncT, R, FuncT, V)
Create a data frame from a sequence of objects and functions that return row key, column key and value for each object in the input sequence. ## Parameters - `values` - Input sequence of objects - `colSel` - A function that returns the column key of an object - `rowSel` - A function that returns the row key of an object - `valSel` - A function that returns the value of an object

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R, C> FromValues<T, C, R, V>(
	IEnumerable<T> values,
	Func<T, C> colSel,
	Func<T, R> rowSel,
	Func<T, V> valSel
)

Parameters

values
Type: System.Collections.GenericIEnumerableT

[Missing <param name="values"/> documentation for "M:Deedle.Frame.FromValues``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``0,``3})"]

colSel
Type: SystemFuncT, C

[Missing <param name="colSel"/> documentation for "M:Deedle.Frame.FromValues``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``0,``3})"]

rowSel
Type: SystemFuncT, R

[Missing <param name="rowSel"/> documentation for "M:Deedle.Frame.FromValues``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``0,``3})"]

valSel
Type: SystemFuncT, V

[Missing <param name="valSel"/> documentation for "M:Deedle.Frame.FromValues``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``0,``3})"]

Type Parameters

T
C
R
V

Return Value

Type: FrameR, C

[Missing <returns> documentation for "M:Deedle.Frame.FromValues``4(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1},System.Func{``0,``2},System.Func{``0,``3})"]

See Also