Deedle


FrameBuilder

Namespace: Deedle

Type that can be used for creating frames using the C# collection initializer syntax. You can use new FrameBuilder.Columns<...> to create a new frame from columns or you can use new FrameBuilder.Rows<...> to create a new frame from rows.

Example

The following creates a new frame with columns Foo and Bar:

1: 
2: 
3: 
4: 
5: 
var sampleFrame =
  new FrameBuilder.Columns<int, string> {
    { "Foo", new SeriesBuilder<int> { {1,11.1}, {2,22.4} }.Series }
    { "Bar", new SeriesBuilder<int> { {1,42.42} }.Series }
  }.Frame;
Multiple items
val int : value:'T -> int (requires member op_Explicit)

Full name: Microsoft.FSharp.Core.Operators.int

--------------------
type int = int32

Full name: Microsoft.FSharp.Core.int

--------------------
type int<'Measure> = int

Full name: Microsoft.FSharp.Core.int<_>
Multiple items
val string : value:'T -> string

Full name: Microsoft.FSharp.Core.Operators.string

--------------------
type string = System.String

Full name: Microsoft.FSharp.Core.string

Nested types and modules

TypeDescription
Columns<'R, 'C>
Rows<'R, 'C>
Fork me on GitHub