![]() | DFBool |
The DFBoolColumn type exposes the following members.
Name | Description | |
---|---|---|
![]() | DFBoolColumn | Default constructor. |
![]() | DFBoolColumn(String) | Constructs a DFBoolColumn instance with the given name. |
![]() | DFBoolColumn(String, IDFColumn) | Constructs a DFBoolColumn instance with the given name. Column elements are initialized with data from the given column, after conversion to bool. |
![]() | DFBoolColumn(String, Boolean) | Constructs a DFBoolColumn instance with the given name. Column elements are initialized with data from the given array. |
Name | Description | |
---|---|---|
![]() | ColumnType |
Gets the type of the objects held by this column.
(Overrides DFColumnColumnType) |
![]() | Count |
Gets the number of ojects in this column.
(Inherited from DFColumn) |
![]() | IsNumeric |
Returns true if the objects in this column are integers or floating point
numbers; otherwise, false.
(Inherited from DFColumn) |
![]() | IsSynchronized |
Returns false. Access to this class is not synchronized.
(Inherited from DFColumn) |
![]() | Item | Gets the object in this column at the given position. |
![]() | Label |
Gets and sets the label in the header of this column.
(Inherited from DFColumn) |
![]() | MissingValue |
Gets and sets the value used to represent missing values in this column.
(Inherited from DFColumn) |
![]() | Name |
Gets the name of this column.
(Inherited from DFColumn) |
![]() | SyncRoot |
Gets an object that can be used to synchronize access to this ICollection.
(Inherited from DFColumn) |
Name | Description | |
---|---|---|
![]() | Add |
Adds an object to this column.
(Inherited from DFColumn) |
![]() | Apply(String, FuncBoolean, Boolean) | Returns a new column with the given name and same size as this column, whose values are the result of applying the given unary function to each element of this column. |
![]() | Apply(String, FuncBoolean, Boolean, Boolean, DFBoolColumn) | Returns a new column with the given name and same size as this column, whose values are the result of applying the given binary function to each element of this column. The first parameter to the binary function is an element of self; the second parameter is the corresponding element of the passed column. |
![]() | Apply(String, FuncBoolean, Boolean, Boolean, Boolean) | Returns a new column with the given name and same size as this column, whose values are the result of applying the given binary function to each element of this column. The first parameter to the binary function is an element of self; the second parameter is the passed boolean. |
![]() | Clean | Returns a copy of this column without missing values. |
![]() | Clone |
Returns a deep copy of this column.
(Overrides DFColumnClone) |
![]() | Convert |
Converts an object to the type held by this column.
(Overrides DFColumnConvert(Object)) |
![]() | CopyTo(Array) |
Copies the contents of this column into the given array, beginning
at the first position within the array.
(Inherited from DFColumn) |
![]() | CopyTo(Array, Int32) |
Copies the contents of this column into the given array, beginning
at the given position within the array.
(Inherited from DFColumn) |
![]() | GetEnumerator |
Returns an enumerator for this column.
(Inherited from DFColumn) |
![]() | GetFactor |
Creates a factor from this column.
(Inherited from DFColumn) |
![]() | GetFactor(Object) |
Creates a factor from this column.
(Inherited from DFColumn) |
![]() | Insert |
Inserts an object into this column and the given position.
(Inherited from DFColumn) |
![]() | IsMissing |
Returns false. Missing values are not supported in DFBoolColumns,
which have only two valid values.
(Overrides DFColumnIsMissing(Int32)) |
![]() | Permute |
Permutes the objects in this column by the given permutation vector (ranks).
(Inherited from DFColumn) |
![]() | RemoveAt |
Removes the object from this column at the given position.
(Inherited from DFColumn) |
![]() | SubColumn(Slice) |
Gets the subcolumn specified by the given Slice.
(Inherited from DFColumn) |
![]() | SubColumn(Subset) |
Gets the subcolumn specified by the given Subset.
(Overrides DFColumnSubColumn(Subset)) |
![]() | Swap |
Swaps the position of the given elements in the column.
(Inherited from DFColumn) |
![]() | ToArray |
Exports the contents of this column to an array.
(Inherited from DFColumn) |
![]() | ToDoubleArray |
Extracts the contents of a column to an array of doubles.
(Inherited from DFColumn) |
![]() | ToDoubleVector |
Extracts the contents of a column to a DoubleVector.
(Inherited from DFColumn) |
![]() | ToIntArray |
Extracts the contents of a column to an array of integers.
(Inherited from DFColumn) |
![]() | ToString |
Returns a formatted string representation of this column.
(Inherited from DFColumn) |
![]() | ToString(Int32) |
Returns formatted representation.
(Inherited from DFColumn) |
![]() | ToString(Int32, String) |
Returns formatted representation.
(Inherited from DFColumn) |
![]() | ToStringArray |
Exports the contents of this column to an array of strings.
(Inherited from DFColumn) |
![]() | ToStringArray(String) |
Exports the contents of this column to an array of strings.
(Inherited from DFColumn) |
![]() | Transform(FuncBoolean) | Modifies the elements of this column by applying the given no-argument function to each element. |
![]() | Transform(FuncBoolean, Boolean) | Modifies the elements of this column by applying the given unary function to each element. |
![]() | Transform(FuncBoolean, Boolean, Boolean, DFBoolColumn) | Modifies the contents of this column by applying the given binary function to each element. The first parameter to the binary function is an element of self; the second parameter is the corresponding element of the passed column. |
![]() | Transform(FuncBoolean, Boolean, Boolean, Boolean) | Modifies the contents of this column by applying the given binary function to each element. The first parameter to the binary function is an element of self; the second parameter is the passed boolean. |
Name | Description | |
---|---|---|
![]() | label_ |
The label in the header of this column. Can be changed.
(Inherited from DFColumn) |
![]() | list_ |
An array list of column elements.
(Inherited from DFColumn) |
![]() | missingValue_ |
Value used to represent missing values in this column.
(Inherited from DFColumn) |
![]() | name_ |
The name of this column. Must be set in the constructor.
(Inherited from DFColumn) |