DataFrameRow Class

Definition

A DataFrameRow is a collection of values that represent a row in a DataFrame.

public class DataFrameRow : System.Collections.Generic.IEnumerable<object>
type DataFrameRow = class
    interface seq<obj>
    interface IEnumerable
Public Class DataFrameRow
Implements IEnumerable(Of Object)
Inheritance
DataFrameRow
Implements

Properties

Item[Int32]

An indexer to return the value at index.

Item[String]

An indexer to return the value at columnName.

Methods

GetEnumerator()

Returns an enumerator of the values in this row.

GetValues()
ToString()

A simple string representation of the values in this row

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Applies to