timeseries ====================================== +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | timeseries(series, groupby=None, year=None, yearGreaterThan=None, yearSmallerThan=None, day=None, dayGreaterThan=None, daySmallerThan=None, month=None, monthGreaterThan=None, monthSmallerThan=None, code=None, date=None) | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Returns the specified time series' data values. `series` must be a time series code | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | series | str | Time series code. For the available time series run list_series() | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | groupby | str, optional | Grouping criteria | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | year | int, optional | Year which the data set will be restricted to. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | yearGreaterThan | int, optional | Year which the data set will be restricted to years strictly greater. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | yearSmallerThan | int, optional | Year which the data set will be restricted to years strictly smaller. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | day | int, optional | Day which the data set will be restricted to. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | dayGreaterThan | int, optional | Day which the data set will be restricted to days strictly greater. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | daySmallerThan | int, optional | Day which the data set will be restricted to days strictly smaller. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | month | int, optional | Month which the data set will be restricted to. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | monthGreaterThan | int, optional | Month which the data set will be restricted to months strictly greater. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | monthSmallerThan | int, optional | Month which the data set will be restricted to months strictly smaller. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | code | str, optional | Time series code which the data set will be restricted to. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | date | str, optional | Date which the data set will be restricted to. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ | return | pandas.DataFrame | Returns the data series for the specified time series. | +-------------------------------------------------------+-------------------------------------------------------+-------------------------------------------------------------------------------------------------------------+ `[source] `__