├── .flake8 ├── .github └── workflows │ ├── python-publish.yml │ └── python-testing.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Makefile └── source │ ├── _static │ └── .gitkeep │ ├── commands │ └── installation │ │ └── pip.txt │ ├── conf.py │ ├── index.rst │ ├── sections │ ├── installation │ │ └── index.rst │ ├── reference │ │ └── index.rst │ └── tutorial │ │ ├── agg.rst │ │ ├── binarize.rst │ │ ├── count.rst │ │ ├── index.rst │ │ ├── null.rst │ │ ├── ordinal.rst │ │ └── target.rst │ └── sources │ └── tutorial │ ├── agg.txt │ ├── binarize.txt │ ├── count.txt │ ├── index.txt │ ├── null.txt │ ├── ordinal.txt │ └── target.txt ├── pyproject.toml ├── shirokumas ├── __init__.py ├── _agg.py ├── _base.py ├── _binarize.py ├── _count.py ├── _exceptions.py ├── _null.py ├── _oof.py ├── _ordinal.py └── _target.py └── tests ├── __init__.py └── shirokumas ├── __init__.py ├── test_agg.py ├── test_binarize.py ├── test_count.py ├── test_null.py ├── test_oof.py ├── test_ordinal.py └── test_target.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/.github/workflows/python-testing.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/commands/installation/pip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/commands/installation/pip.txt -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/sections/installation/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sections/installation/index.rst -------------------------------------------------------------------------------- /docs/source/sections/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sections/reference/index.rst -------------------------------------------------------------------------------- /docs/source/sections/tutorial/agg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sections/tutorial/agg.rst -------------------------------------------------------------------------------- /docs/source/sections/tutorial/binarize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sections/tutorial/binarize.rst -------------------------------------------------------------------------------- /docs/source/sections/tutorial/count.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sections/tutorial/count.rst -------------------------------------------------------------------------------- /docs/source/sections/tutorial/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sections/tutorial/index.rst -------------------------------------------------------------------------------- /docs/source/sections/tutorial/null.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sections/tutorial/null.rst -------------------------------------------------------------------------------- /docs/source/sections/tutorial/ordinal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sections/tutorial/ordinal.rst -------------------------------------------------------------------------------- /docs/source/sections/tutorial/target.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sections/tutorial/target.rst -------------------------------------------------------------------------------- /docs/source/sources/tutorial/agg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sources/tutorial/agg.txt -------------------------------------------------------------------------------- /docs/source/sources/tutorial/binarize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sources/tutorial/binarize.txt -------------------------------------------------------------------------------- /docs/source/sources/tutorial/count.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sources/tutorial/count.txt -------------------------------------------------------------------------------- /docs/source/sources/tutorial/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sources/tutorial/index.txt -------------------------------------------------------------------------------- /docs/source/sources/tutorial/null.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sources/tutorial/null.txt -------------------------------------------------------------------------------- /docs/source/sources/tutorial/ordinal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sources/tutorial/ordinal.txt -------------------------------------------------------------------------------- /docs/source/sources/tutorial/target.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/docs/source/sources/tutorial/target.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/pyproject.toml -------------------------------------------------------------------------------- /shirokumas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/shirokumas/__init__.py -------------------------------------------------------------------------------- /shirokumas/_agg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/shirokumas/_agg.py -------------------------------------------------------------------------------- /shirokumas/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/shirokumas/_base.py -------------------------------------------------------------------------------- /shirokumas/_binarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/shirokumas/_binarize.py -------------------------------------------------------------------------------- /shirokumas/_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/shirokumas/_count.py -------------------------------------------------------------------------------- /shirokumas/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/shirokumas/_exceptions.py -------------------------------------------------------------------------------- /shirokumas/_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/shirokumas/_null.py -------------------------------------------------------------------------------- /shirokumas/_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/shirokumas/_oof.py -------------------------------------------------------------------------------- /shirokumas/_ordinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/shirokumas/_ordinal.py -------------------------------------------------------------------------------- /shirokumas/_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/shirokumas/_target.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/shirokumas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/shirokumas/test_agg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/tests/shirokumas/test_agg.py -------------------------------------------------------------------------------- /tests/shirokumas/test_binarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/tests/shirokumas/test_binarize.py -------------------------------------------------------------------------------- /tests/shirokumas/test_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/tests/shirokumas/test_count.py -------------------------------------------------------------------------------- /tests/shirokumas/test_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/tests/shirokumas/test_null.py -------------------------------------------------------------------------------- /tests/shirokumas/test_oof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/tests/shirokumas/test_oof.py -------------------------------------------------------------------------------- /tests/shirokumas/test_ordinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/tests/shirokumas/test_ordinal.py -------------------------------------------------------------------------------- /tests/shirokumas/test_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momijiame/shirokumas/HEAD/tests/shirokumas/test_target.py --------------------------------------------------------------------------------