Series<'K, 'V>
Namespace: Deedle
The type Series<K, V>
represents a data series consisting of values V
indexed by
keys K
. The keys of a series may or may not be ordered
Table of contents
- Accessors and slicing
- Indexing
- Merging, joining and zipping
- Operators
- Projection and filtering
- Resampling
- Series data
- Windowing, chunking and grouping
- Other type members
Accessors and slicing
Instance members
Static members
Static member | Description |
( ? )(series, name)
Signature: (series:Series<string,'?492829> * name:string) -> '?492829
|
Indexing
Instance members
Merging, joining and zipping
Instance members
Operators
Static members
Projection and filtering
Instance members
Resampling
Instance members
Series data
Instance members
Windowing, chunking and grouping
Instance members
Other type members
Constructors
Constructor | Description |
new(keys, values)
Signature: (keys:'K [] * values:'V []) -> Series<'K,'V>
|
|
new(keys, values)
Signature: (keys:seq<'K> * values:seq<'V>) -> Series<'K,'V>
|
|
new(pairs)
Signature: pairs:seq<KeyValuePair<'K,'V>> -> Series<'K,'V>
|
|
new(...)
Signature: (index:IIndex<'K> * vector:IVector<'V> * vectorBuilder:IVectorBuilder * indexBuilder:IIndexBuilder) -> Series<'K,'V>
|
Instance members
Instance member | Description |
After(lowerExclusive)
Signature: lowerExclusive:'K -> Series<'K,'V>
|
|
AsyncMaterialize()
Signature: unit -> Async<Series<'K,'V>>
|
|
Before(upperExclusive)
Signature: upperExclusive:'K -> Series<'K,'V>
|
|
Between(lowerInclusive, upperInclusive)
Signature: (lowerInclusive:'K * upperInclusive:'K) -> Series<'K,'V>
|
|
EndAt(upperInclusive)
Signature: upperInclusive:'K -> Series<'K,'V>
|
|
Format(startCount, endCount)
Signature: (startCount:int * endCount:int) -> string
|
Shows the series content in a human-readable format. The resulting string shows a limited number of values from the series. Parameters
|
Format(itemCount)
Signature: itemCount:int -> string
|
Shows the series content in a human-readable format. The resulting string shows a limited number of values from the series. Parameters
|
Format()
Signature: unit -> string
|
Shows the series content in a human-readable format. The resulting string shows a limited number of values from the series. |
GetAddressRange(range)
Signature: range:RangeRestriction<Address> -> Series<'K,'V>
|
Internal helper used by |
Materialize()
Signature: unit -> Series<'K,'V>
|
|
MaterializeAsync()
Signature: unit -> Task<Series<'K,'V>>
|
|
StartAt(lowerInclusive)
Signature: lowerInclusive:'K -> Series<'K,'V>
|
Static members
Static member | Description | ||
( $ )(f, series)
Signature: (f:('V -> '?492866) * series:Series<'K,'V>) -> Series<'K,'?492866>
|
Custom operator that can be used for applying a function to all elements of
a series. This provides a nicer syntactic sugar for the
val s1 : obj
Full name: docs.s1 val adjust : v:float -> float
Full name: docs.adjust val v : float
val max : e1:'T -> e2:'T -> 'T (requires comparison)
Full name: Microsoft.FSharp.Core.Operators.max |