Skip to content

Commit

Permalink
mention N-dimensional arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
KDruzhkin authored Aug 7, 2024
1 parent 9b9a60b commit dcc51bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/user-guide/concepts/data-types/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ from Arrow, with the exception of `String` (this is actually `LargeUtf8`), `Cate
| | `Float64` | 64-bit floating point. |
| Nested | `Struct` | A struct array is represented as a `Vec<Series>` and is useful to pack multiple/heterogeneous values in a single column. |
| | `List` | A list array contains a child array containing the list values and an offset array. (this is actually Arrow `LargeList` internally). |
| | `Array` | A fixed-length homogeneous array. |
| | `Array` | A fixed-size multidimensional array. |
| Temporal | `Date` | Date representation, internally represented as days since UNIX epoch encoded by a 32-bit signed integer. |
| | `Datetime` | Datetime representation, internally represented as microseconds since UNIX epoch encoded by a 64-bit signed integer. |
| | `Duration` | A timedelta type, internally represented as microseconds. Created when subtracting `Date/Datetime`. |
Expand Down

0 comments on commit dcc51bf

Please sign in to comment.