The mt_time family are the S7 vector classes that store time points as a
numeric count of chronons. mt_time is the (internal) base class carrying
the chronon property; the common modes of time are:
mt_linear- linear time points, typically produced withlinear_time().mt_cyclical- cyclical time points with additionalcyclegranule, typically produced withcyclical_time().mt_duration- time durations, typically produced withduration().
The underlying data can be either integer (discrete time) or double
(continuous time). The chronon (and, for mt_cyclical, the cycle) are
time granules, the result from a mt_unit object.
Arguments
- .data
A numeric vector of chronon counts (integer or double).
- chronon, cycle
Time granules (mt_unit objects) giving the unit of the chronon counts and, for
mt_cyclical, the length of the cycle.
See also
mt_linear(), mt_duration(), and mt_cyclical() to construct
time vectors, and mt_unit for the granule type stored in chronon/cycle.