(DEPRECATED) Returns a function that multiplies each timestamp of a single time series by the specified integer
factor.
For a source time series with points (timestamp, value), upon scaling by factor,
the resulting time-scaled time series will have points (timestamp * factor, value).
Parameters:factor (int) – The scaling factor that is multiplied with each timestamp in the series.
Returns:
A function that accepts a single time series as input and returns the time-scaled time series.