@milaboratories/miplots4 1.0.115 → 1.0.116
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8286,10 +8286,10 @@ declare class DataFrame {
|
|
|
8286
8286
|
data: Record<string, DataValue[]>;
|
|
8287
8287
|
rowsCount: number;
|
|
8288
8288
|
columnNames: string[];
|
|
8289
|
-
rows: Row[];
|
|
8290
8289
|
rowsGrouped?: RowsGroup;
|
|
8291
8290
|
static from(data: DataSet): DataFrame;
|
|
8292
8291
|
constructor(id: string, data: Record<string, DataValue[]>);
|
|
8292
|
+
get rows(): Record<string, DataValue>[];
|
|
8293
8293
|
getColumn(key: string): DataValue[];
|
|
8294
8294
|
getColumnCategories(key: string, ignoreNull?: boolean): string[];
|
|
8295
8295
|
setGrouping(groupingColumnIds: (string | null)[]): void;
|