Since Version 0.4.0 only pandas series and dataframes are allowed (although internally numpy arrays are used for performance). Base on the type of pandas index, the following rules are applied:
If index is not of type DatetimeIndex, a RangeIndex is created.
If index is of type DatetimeIndex but has no frequency, a RangeIndex is created.
If index is of type DatetimeIndex and has frequency, nothing is changed.
Note:
There is nothing wrong with using data that does not have an associated DatetimeIndex with frequency. However, results will have less informative index.