tk_index() is used to extract the date or datetime index from various
time series objects, models and forecasts.
The method can be used on tbl, xts, zoo, zooreg, and ts objects.
The method can additionally be used on forecast objects and a number of
objects generated by modeling functions such as Arima, ets, and HoltWinters
classes to get the index of the underlying data.
The boolean timekit_idx argument is applicable to regularized time series objects
such as ts and zooreg classes that have both a regularized index and potentially
a "timekit index" (a time-based attribute).
When set to FALSE the regularized index is returned.
When set to TRUE the time-based timekit index is returned if present.
has_timekit_idx() is used to determine if the object has a timekit index attribute
and can thus benefit from the tk_index(timekit_idx = TRUE).
TRUE indicates the "timekit index" attribute is present.
FALSE indicates the "timekit index" attribute is not present.
If FALSE, the tk_index() function will return the default index for the data type.
Important Note: To gain the benefit of timekit_idx the time series
must have a timekit index.
Use has_timekit_idx to determine if the object has a timekit index.
This is particularly important for ts objects, which
by default do not contain a time-based index and therefore must be coerced from time-based
objects such as tbl, xts, or zoo using the tk_ts() function in order
to get the "timekit index" attribute.
Refer to tk_ts() for creating persistent date / datetime index
during coercion to ts.