Input

class rameau.core.inputs.Input(data, dates=None, nodata=1e+20)[source]

Input wrapping data time series as a two-dimensional numpy array with the corresponding dates.

Parameters:
  • data (numpy.ndarray.) – Two-dimensional array containing the time series to store. Rows correspond to the dates and columns correspond to the number of input time series.

  • dates (pandas.DatetimeIndex, optional.) – Dates of the time series. Default value corresponds to a daily pandas.DatetimeIndex starting from 1900-01-01.

  • nodata (float, optional.) – Missing data value.

Returns:

Input

Attributes

data

Two-dimensional array containing the time series to store.

dates

Dates of the time series.

nodata

Missing data value.