ReadonlynumNumber of columns in the table.
ReadonlynumNumber of rows in each column of the table.
List of column indices on which to operate.
Determines whether nulls are handled as equal values.
OptionalmemoryResource: MemoryResourceAn optional MemoryResource used to allocate the result's device memory.
Column index to explode inside the table.
OptionalmemoryResource: MemoryResourceAn optional MemoryResource used to allocate the result's device memory.
Column index to explode inside the table.
OptionalmemoryResource: MemoryResourceAn optional MemoryResource used to allocate the result's device memory.
Column index to explode inside the table.
OptionalmemoryResource: MemoryResourceAn optional MemoryResource used to allocate the result's device memory.
Column index to explode inside the table.
OptionalmemoryResource: MemoryResourceAn optional MemoryResource used to allocate the result's device memory.
A Series of 8/16/32-bit signed or unsigned integer indices to gather.
If true, coerce rows that corresponds to out-of-bounds indices
in the selection to null. If false, skips all bounds checking for selection values. Pass
false if you are certain that the selection contains only valid indices for better
performance. If false and there are out-of-bounds indices in the selection, the behavior
is undefined. Defaults to false.
OptionalmemoryResource: MemoryResourceAn optional MemoryResource used to allocate the result's device memory.
Gathers the rows of the source columns according to selection, such that row "i"
in the resulting Table's columns will contain row selection[i] from the source columns. The
number of rows in the result table will be equal to the number of elements in selection. A
negative value i in the selection is interpreted as i+n, where n is the number of rows in
the source table.
For dictionary columns, the keys column component is copied and not trimmed if the gather results in abandoned key elements.
Interleave Series columns of a table into a single column.
Converts the column major table cols into a row major column.
OptionalmemoryResource: MemoryResourceAn optional MemoryResource used to allocate the result's device memory.
Generate an ordering that sorts Table columns in a specified way
The desired sort order for each column. Size must
be equal to numColumns.
Indicates how null values compare against all other values in a column
OptionalmemoryResource: MemoryResourceAn optional MemoryResource used to allocate the result's device memory.
Column of permutation indices for the desired sort order
List of column indices on which to operate.
Determines whether to keep the first, last, or none of the duplicate items.
Determines whether nulls are handled as equal values.
OptionalmemoryResource: MemoryResourceAn optional MemoryResource used to allocate the result's device memory.
Write this Table to CSV file format.
Settings for controlling writing behavior.
Write a Table to Apache ORC file format.
File path or root directory path.
Options controlling ORC writing behavior.
Write a Table to Apache Parquet file format.
File path or root directory path.
Options controlling parquet writing behavior.
A low-level wrapper for libcudf Table objects