| Modifier and Type | Method and Description |
|---|---|
Table |
Table.AggregateOperation.aggregate(Aggregate... aggregates)
Aggregates the group of columns represented by indices
Usage:
aggregate(count(), max(2),...);
example:
input : 1, 1, 1
1, 2, 1
2, 4, 5
table.groupBy(0, 2).count()
col0, col1
output: 1, 1
1, 2
2, 1 ==> aggregated count
|
Table |
Table.TestBuilder.build() |
static Table |
Table.concatenate(Table... tables)
Concatenate multiple tables together to form a single table.
|
Table |
Table.TableOperation.innerJoin(Table.TableOperation rightJoinIndices)
Joins two tables on the join columns that are passed in.
|
Table |
Table.TableOperation.leftJoin(Table.TableOperation rightJoinIndices)
Joins two tables on the join columns that are passed in.
|
Table |
Table.orderBy(boolean areNullsSmallest,
Table.OrderByArg... args)
Orders the table using the sortkeys returning a new allocated table.
|
static Table |
Table.readCSV(Schema schema,
byte[] buffer) |
static Table |
Table.readCSV(Schema schema,
CSVOptions options,
byte[] buffer) |
static Table |
Table.readCSV(Schema schema,
CSVOptions opts,
byte[] buffer,
long offset,
long len) |
static Table |
Table.readCSV(Schema schema,
CSVOptions opts,
File path) |
static Table |
Table.readCSV(Schema schema,
CSVOptions opts,
HostMemoryBuffer buffer,
long len) |
static Table |
Table.readCSV(Schema schema,
File path) |
static Table |
Table.readParquet(byte[] buffer) |
static Table |
Table.readParquet(File path) |
static Table |
Table.readParquet(ParquetOptions opts,
byte[] buffer) |
static Table |
Table.readParquet(ParquetOptions opts,
byte[] buffer,
long len) |
static Table |
Table.readParquet(ParquetOptions opts,
File path) |
static Table |
Table.readParquet(ParquetOptions opts,
HostMemoryBuffer buffer,
long len) |
| Modifier and Type | Method and Description |
|---|---|
static Table |
Table.concatenate(Table... tables)
Concatenate multiple tables together to form a single table.
|
Copyright © 2019. All rights reserved.