From f185f48185bb89290ae68b186f826afbb941f098 Mon Sep 17 00:00:00 2001 From: Jactus Date: Thu, 26 Nov 2020 00:59:48 +0800 Subject: [PATCH] Update docs --- docs/component/data.rst | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/docs/component/data.rst b/docs/component/data.rst index e14caff3e..efcd81ffd 100644 --- a/docs/component/data.rst +++ b/docs/component/data.rst @@ -297,23 +297,8 @@ The ``Processor`` module in ``Qlib`` is designed to be learnable and it is respo Users can also create their own `processor` by inheriting the base class of ``Processor``. Please refer to the implementation of all the processors for more information (`Processor Link `_). -API ---------- - To know more about ``Processor``, please refer to `Processor API <../reference/api.html#module-qlib.data.dataset.processor>`_. - -Usage --------------- - -``Data Handler`` can be used as a single module, which provides the following mehtods: - -- `get_split_data` - - According to the start and end dates, return features and labels of the pandas DataFrame type used for the 'Model' - -- `get_rolling_data` - - According to the start and end dates, and `rolling_period`, an iterator is returned, which can be used to traverse the features and labels used for rolling. - Example --------------