Click or drag to resize

FrameTable Methods

The FrameTable type exposes the following members.

Methods
  NameDescription
Public methodAddColumnT(String)
Adds a new column with the given name and type.
Public methodAddColumnT(String, ListT)
Adds a new column with the given name and stored values.
Public methodAddColumnsT
Adds new columns with the given names.
Public methodAddComputedColumnT
Add a computed column.
(Inherited from FrameView.)
Public methodAddRow(IReadOnlyDictionaryString, Object)
Adds a new row of data to the data frame.
Public methodAddRow(Object)
Add a new row of data to the data frame.
Public methodAddRowT(IReadOnlyListT)
Adds a new row of data to the frame.
Public methodAsColumnsT
Exposes a list of columns of uniform type.
(Inherited from FrameView.)
Public methodClear
Removes all data from the table.
Public methodDiscard
Constructs a new view that does not contain the given columns.
(Inherited from FrameView.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodStatic memberFromCsv
Creates a new frame table from a file of comma-separated values.
Public methodStatic memberFromDictionaries
Constructs a new frame table from a sequence of dictionaries.
Public methodGetColumnIndex
Gets the index of a given column.
(Inherited from FrameView.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGroupBy(String, FuncFrameView, IReadOnlyDictionaryString, Object)
Groups the data by the values in the given column, and computes aggregate quantities for each group.
(Inherited from FrameView.)
Public methodGroupByT(String, FuncFrameView, T, String)
Groups the data by the values in the given column, and computes the given aggregate quantity for each group.
(Inherited from FrameView.)
Public methodOrderBy(String)
Sorts the rows by the values in the given column.
(Inherited from FrameView.)
Public methodOrderBy(ComparisonFrameRow)
Sorts all rows by the given function.
(Inherited from FrameView.)
Public methodOrderBy(String, SortOrder)
Sort the rows by the values in the given column in the given direction.
(Inherited from FrameView.)
Public methodOrderByT(String, ComparisonT)
Sorts all rows by the given function of the given column.
(Inherited from FrameView.)
Public methodRemoveColumn
Removes the column with the given index from the data frame.
Public methodSelect(ICollectionString)
Constructs a new view, containing only the given columns.
(Inherited from FrameView.)
Public methodSelect(String)
Constructs a new view, containing only the given columns.
(Inherited from FrameView.)
Public methodToCsv
Write the data in the view to a comma-separated-value file.
(Inherited from FrameView.)
Public methodToDictionaries
Writes the data in the view as a sequence of dictionaries.
(Inherited from FrameView.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWhere(FuncFrameRow, Boolean)
Selects rows matching the given criteria.
(Inherited from FrameView.)
Public methodWhereT(String, FuncT, Boolean)
Selects rows in which the value of the given column matches the given criteria.
(Inherited from FrameView.)
Public methodWhereNotNull
Removes any rows that have null values in the named columns.
(Inherited from FrameView.)
Top
See Also