Previous topic

scikits.timeseries.TimeSeries.fill_missing_dates

Next topic

scikits.timeseries.align_series

This Page

scikits.timeseries.adjust_endpoints

adjust_endpoints(a, start_date=None, end_date=None, copy=False)

Returns a TimeSeries going from start_date to end_date.

Parameters:

a : TimeSeries

TimeSeries object whose dates must be adjusted

start_date : Date, optional

New starting date. If not specified, the current starting date is used.

end_date : Date, optional

New ending date. If not specified, the current ending date is used.

copy : {False, True}, optional

Whether to return a copy of the initial array (True) or a reference to the array (False), in the case where both the start_date and end_date both fall into the initial range of dates.