Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
- [Binary Time](#binary-time)
- [Scalar Values](#scalar-values)
- [Scalar](#scalar)
- [Vector](#vector)
- [XYData](#xydata)

# About

Expand Down Expand Up @@ -141,4 +143,11 @@ API Reference.
information and extended properties. Valid types for the scalar values are `bool`, `int`, `float`,
and `str`. For more details, see
[Scalar](https://nitypes.readthedocs.io/en/latest/autoapi/nitypes/vector/index.html#vector) in the
API Reference.

## XYData

`nitypes.xy_data.XYData` is a data type that represents a two axes (sequences) of numeric values
with units information. Valid types for the numeric values are `int` and `float`. For more details,
see [XYData](https://nitypes.readthedocs.io/en/latest/autoapi/nitypes/xy_data/index.html) in the
API Reference.
6 changes: 6 additions & 0 deletions docs/intro.inc
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,9 @@ Vector
:class:`Vector` is a data type that represents an array of scalar values with units
information. Valid types for the scalar values are :any:`bool`, :any:`int`,
:any:`float`, and :any:`str`.

XYData
^^^^^^

:class:`XYData` is a data type that represents a two axes (sequences) of numeric values with
units information. Valid types for the numeric values are :any:`int` and :any:`float`.
Loading