|
5 | 5 |
|
6 | 6 | <embed src='@/docs/common/style.md'></embed> |
7 | 7 |
|
8 | | -`DataFrame` is the specified 2D data structure in DW. You can get or slice data by it. The information includes the field's characteristics (field name, data type, statistics, etc.) and properties (continuity, discreteness, etc.), as well as field-to-field relationships (correlation, periodicity, etc.). |
| 8 | +`DataFrame` is the specified 2D data structure in data. You can get or slice data by it. The information includes the field's characteristics (field name, data type, statistics, etc.) and properties (continuity, discreteness, etc.), as well as field-to-field relationships (correlation, periodicity, etc.). |
9 | 9 |
|
10 | 10 | ## new DataFrame |
11 | 11 |
|
@@ -47,7 +47,7 @@ Used to configure indexes, columns, and missing values. |
47 | 47 |
|
48 | 48 |
|
49 | 49 | ```ts |
50 | | -import { DataFrame } from '@antv/data-wizard'; |
| 50 | +import { DataFrame } from '@antv/ava'; |
51 | 51 |
|
52 | 52 | /* Basic usage */ |
53 | 53 | const data = [ |
@@ -170,7 +170,7 @@ Get the DataFrame data row and column dimensions. |
170 | 170 |
|
171 | 171 |
|
172 | 172 | ```ts |
173 | | -import { DataFrame } from '@antv/data-wizard'; |
| 173 | +import { DataFrame } from '@antv/ava'; |
174 | 174 |
|
175 | 175 | const df = new DataFrame([ |
176 | 176 | { a: 1, b: 4, c: 7 } |
@@ -211,7 +211,7 @@ Type `(string | number) | (string | number)[] | string` |
211 | 211 |
|
212 | 212 |
|
213 | 213 | ```ts |
214 | | -import { DataFrame } from '@antv/data-wizard'; |
| 214 | +import { DataFrame } from '@antv/ava'; |
215 | 215 |
|
216 | 216 | /* Get data by indexes value */ |
217 | 217 | const df = new DataFrame([ |
@@ -350,7 +350,7 @@ Type `number | number[] | string` |
350 | 350 | ***<font size=4>Usage</font>*** |
351 | 351 |
|
352 | 352 | ```ts |
353 | | -import { DataFrame } from '@antv/data-wizard'; |
| 353 | +import { DataFrame } from '@antv/ava'; |
354 | 354 |
|
355 | 355 | /* Get data by row index */ |
356 | 356 | const df = new DataFrame([ |
@@ -392,7 +392,7 @@ Type `string | number` |
392 | 392 |
|
393 | 393 |
|
394 | 394 | ```ts |
395 | | -import { DataFrame } from '@antv/data-wizard'; |
| 395 | +import { DataFrame } from '@antv/ava'; |
396 | 396 |
|
397 | 397 | const df = new DataFrame([ |
398 | 398 | { a: 1, b: 4, c: 7 } |
@@ -422,7 +422,7 @@ Get statistical information. |
422 | 422 |
|
423 | 423 |
|
424 | 424 | ```ts |
425 | | -import { DataFrame } from '@antv/data-wizard'; |
| 425 | +import { DataFrame } from '@antv/ava'; |
426 | 426 |
|
427 | 427 | const df = new DataFrame([ |
428 | 428 | { a: 1, b: 4, c: 7 }, |
|
0 commit comments