Represents a row of a DataFrame.
Is untyped, but returned values can be implicitly coerced to built-in types.
Represents a row of a DataFrame.
Is untyped, but returned values can be implicitly coerced to built-in types.
01 Syntax
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| GetEnumerator | 1 | IEnumerable.GetEnumerator() |
| TryGetValue | 2 | Sets value to the Value of the column at the passed index (in the dataframe's basis). |
| TryGetValue | 2 | Sets value to the value of the column at the passed index (in the dataframe's basis), having coerced it to the appropriate type if possible. |
| ToArray | 2 | Converts this column to an array of Value. |
| GetRange | 3 | Converts a subset of this row to an array of Value. |
| Equals | 1 | Object |
| GetHashCode | 1 | Object |
| ToString | 1 | Object |
| Map | 1 | Maps this row to a TypedRow. |
| Map | 1 | Maps this row to a TypedRowType. |
| Map | 1 | Maps this row to a TypedRowType1. |
| Map | 1 | Maps this row to a TypedRowType2. |
| Map | 1 | Maps this row to a TypedRowType3. |
| Map | 1 | Maps this row to a TypedRowType4. |
| Map | 1 | Maps this row to a TypedRowType5. |
| Map | 1 | Maps this row to a TypedRowType6. |
| op_Explicit | 1 | Equivalent to Row.ToArray() |
| Map | 1 |
03 Properties
04 Members
IEnumerable.GetEnumerator()
Int64, Value)Sets value to the Value of the column at the passed index (in the dataframe's basis).
If the passed index is out of bounds false is returned. Otherwise, true is returned;
String, Value)Sets value to the Value of the column with the passed name.
If the passed index is out of bounds false is returned. Otherwise, true is returned;
Int64, ``0)Sets value to the value of the column at the passed index (in the dataframe's basis), having coerced it to the appropriate type if possible.
If the passed index is out of bounds, or the coercing fails, false is returned. Otherwise, true is returned;
String, ``0)Sets value to the value of the column with the given name, having coerced it to the appropriate type if possible.
If the passed index is out of bounds, or the coercing fails, false is returned. Otherwise, true is returned;
Converts this column to an array of Value.
Throws if the row cannot fit in an array.
Converts this row to an array of Value.
The array is stored at index 0 in the passed array reference, which is initialized or resized if needed.
Int64, Int32)Converts a subset of this row to an array of Value.
Throws if the subset cannot fit in an array.
Converts a subset of this row to an array of Value.
The subset starts at the given index (in the dataframe's basis) and is of the given length.
The array is stored at index 0 in the passed array reference, which is initialized or resized if needed.
Converts a subset of this row to an array of Value.
The subset starts at the given index (in the dataframe's basis) and is of the given length.
The array is stored at the given index in the passed array reference, which is initialized or resized if needed.
Throws if subset cannot fit in an array.
Object)Object
Object
Object
Maps this row to a TypedRow.
Maps this row to a TypedRowType.
Maps this row to a TypedRowType1.
Maps this row to a TypedRowType2.
Maps this row to a TypedRowType3.
Maps this row to a TypedRowType4.
Maps this row to a TypedRowType5.
Maps this row to a TypedRowType6.
Equivalent to Row.ToArray()
Returns the Index (in the appropriate basis) of this row in the original dataframe.
Returns the number of entries in the this column. This will always match the number of columns in the original dataframe.
Int64)Return the value at the given index.
Will throw if the index is out of bounds. Use Row.TryGetValue() for non-throwing gets.
String)Return the value in the column with the given name.
Will throw if no column with that name exists . Use Row.TryGetValue() for non-throwing gets.