-
Notifications
You must be signed in to change notification settings - Fork 545
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update documentation and docstrings for DataProcessors (#186)
* update docs for data_processors * update some docstring * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
4101a37
commit a9c5a33
Showing
16 changed files
with
206 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
docs/source/api_reference/data_processors/processors/column_order.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Column Order Transformer | ||
============================ | ||
|
||
.. autoclass:: sdgx.data_processors.transformers.column_order.ColumnOrderTransformer | ||
:members: | ||
:undoc-members: | ||
:inherited-members: | ||
:show-inheritance: | ||
:private-members: |
9 changes: 9 additions & 0 deletions
9
docs/source/api_reference/data_processors/processors/datetime.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Datetime Formatter | ||
============================ | ||
|
||
.. autoclass:: sdgx.data_processors.formatters.datetime.DatetimeFormatter | ||
:members: | ||
:undoc-members: | ||
:inherited-members: | ||
:show-inheritance: | ||
:private-members: |
9 changes: 9 additions & 0 deletions
9
docs/source/api_reference/data_processors/processors/discrete.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Discrete Transformer | ||
============================ | ||
|
||
.. autoclass:: sdgx.data_processors.transformers.discrete.DiscreteTransformer | ||
:members: | ||
:undoc-members: | ||
:inherited-members: | ||
:show-inheritance: | ||
:private-members: |
4 changes: 4 additions & 0 deletions
4
docs/source/api_reference/data_processors/processors/email.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Email Generator | ||
============================ | ||
|
||
TBD |
34 changes: 34 additions & 0 deletions
34
docs/source/api_reference/data_processors/processors/index.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Built-in DataProcessor | ||
======================================================== | ||
|
||
Formatters | ||
----------------------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
Datetime Formatter <datetime> | ||
Int Formatter <int> | ||
|
||
|
||
Transformers | ||
----------------------------- | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
Discrete Transformer <discrete> | ||
Column Order Transformer <column_order> | ||
Nan Transformer <nan> | ||
Numeric Transformer <numeric> | ||
|
||
|
||
|
||
Generators | ||
----------------------------- | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
Email Generator <email> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Int Formatter | ||
============================ | ||
|
||
.. autoclass:: sdgx.data_processors.formatters.int.IntValueFormatter | ||
:members: | ||
:undoc-members: | ||
:inherited-members: | ||
:show-inheritance: | ||
:private-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Nan Transformer | ||
============================ | ||
|
||
.. autoclass:: sdgx.data_processors.transformers.nan.NonValueTransformer | ||
:members: | ||
:undoc-members: | ||
:inherited-members: | ||
:show-inheritance: | ||
:private-members: |
9 changes: 9 additions & 0 deletions
9
docs/source/api_reference/data_processors/processors/numeric.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Numeric Transformer | ||
============================ | ||
|
||
.. autoclass:: sdgx.data_processors.transformers.numeric.NumericValueTransformer | ||
:members: | ||
:undoc-members: | ||
:inherited-members: | ||
:show-inheritance: | ||
:private-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters