Series
Series |
Purpose
Represent a
Series entity, a declaration of a pandas
Series datastructure. Every series must has at least one index.
Example
Example of creating a
Result series containing floating-point values, and is managed by Insight as a result entity. It is indexed by
Indices, which must have been declared previously.
>>> Indices: xi.Index(...) # previous declaration ... Result: xi.Series(index=['Indices'], dtype=xi.real, ... manage=xi.Manage.RESULT, alias='Result Array')
Related topics