├── .flake8 ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.txt ├── README.md ├── development_notes.md ├── docs ├── Makefile ├── conf.py ├── images │ ├── advanced.png │ ├── basic.png │ ├── braille.png │ ├── cameraman.png │ ├── cameraman_blocks.png │ ├── categorical.png │ ├── misalignment.png │ ├── multivariate_gaussian_ascii.png │ ├── multivariate_gaussian_block.png │ ├── spamspamspamspam.png │ └── twinkle_twinkle_little_star.png ├── index.rst ├── make.bat └── requirements.txt ├── pyproject.toml ├── readthedocs.yml ├── tests ├── __init__.py ├── cameraman.png ├── reference_figures │ ├── axis_labels.txt │ ├── bar_anscombe.txt │ ├── bar_cheese_or_chocolate.txt │ ├── bar_iris.txt │ ├── braille_bar_anscombe.txt │ ├── braille_bar_cheese_or_chocolate.txt │ ├── braille_bar_iris.txt │ ├── braille_hbar_anscombe.txt │ ├── braille_hbar_cheese_or_chocolate.txt │ ├── braille_hbar_iris.txt │ ├── braille_line_anscombe.txt │ ├── braille_line_cheese_or_chocolate.txt │ ├── braille_line_iris.txt │ ├── braille_scatter_anscombe.txt │ ├── braille_scatter_cheese_or_chocolate.txt │ ├── braille_scatter_iris.txt │ ├── colors.txt │ ├── hbar_anscombe.txt │ ├── hbar_cheese_or_chocolate.txt │ ├── hbar_iris.txt │ ├── image.txt │ ├── image_ascii.txt │ ├── image_big_values.txt │ ├── image_cameraman.txt │ ├── image_small_values.txt │ ├── image_vmin_vmax.txt │ ├── legendloc_bottomleft.txt │ ├── legendloc_bottomright.txt │ ├── legendloc_topleft.txt │ ├── legendloc_topright.txt │ ├── line_anscombe.txt │ ├── line_cheese_or_chocolate.txt │ ├── line_iris.txt │ ├── scatter_anscombe.txt │ ├── scatter_cheese_or_chocolate.txt │ ├── scatter_iris.txt │ ├── text.txt │ ├── y_axis_down_anscombe.txt │ ├── y_axis_down_cheese_or_chocolate.txt │ ├── y_axis_down_iris.txt │ ├── y_axis_up.txt │ └── y_only.txt ├── test_braille.py ├── test_img2ascii.py ├── test_reference_figures.py ├── test_scales.py └── test_xticklabels.py └── tplot ├── __init__.py ├── braille.py ├── figure.py ├── img2ascii.py ├── scales.py └── utils.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/README.md -------------------------------------------------------------------------------- /development_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/development_notes.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/images/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/advanced.png -------------------------------------------------------------------------------- /docs/images/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/basic.png -------------------------------------------------------------------------------- /docs/images/braille.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/braille.png -------------------------------------------------------------------------------- /docs/images/cameraman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/cameraman.png -------------------------------------------------------------------------------- /docs/images/cameraman_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/cameraman_blocks.png -------------------------------------------------------------------------------- /docs/images/categorical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/categorical.png -------------------------------------------------------------------------------- /docs/images/misalignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/misalignment.png -------------------------------------------------------------------------------- /docs/images/multivariate_gaussian_ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/multivariate_gaussian_ascii.png -------------------------------------------------------------------------------- /docs/images/multivariate_gaussian_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/multivariate_gaussian_block.png -------------------------------------------------------------------------------- /docs/images/spamspamspamspam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/spamspamspamspam.png -------------------------------------------------------------------------------- /docs/images/twinkle_twinkle_little_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/images/twinkle_twinkle_little_star.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cameraman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/cameraman.png -------------------------------------------------------------------------------- /tests/reference_figures/axis_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/axis_labels.txt -------------------------------------------------------------------------------- /tests/reference_figures/bar_anscombe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/bar_anscombe.txt -------------------------------------------------------------------------------- /tests/reference_figures/bar_cheese_or_chocolate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/bar_cheese_or_chocolate.txt -------------------------------------------------------------------------------- /tests/reference_figures/bar_iris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/bar_iris.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_bar_anscombe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_bar_anscombe.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_bar_cheese_or_chocolate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_bar_cheese_or_chocolate.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_bar_iris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_bar_iris.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_hbar_anscombe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_hbar_anscombe.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_hbar_cheese_or_chocolate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_hbar_cheese_or_chocolate.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_hbar_iris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_hbar_iris.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_line_anscombe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_line_anscombe.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_line_cheese_or_chocolate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_line_cheese_or_chocolate.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_line_iris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_line_iris.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_scatter_anscombe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_scatter_anscombe.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_scatter_cheese_or_chocolate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_scatter_cheese_or_chocolate.txt -------------------------------------------------------------------------------- /tests/reference_figures/braille_scatter_iris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/braille_scatter_iris.txt -------------------------------------------------------------------------------- /tests/reference_figures/colors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/colors.txt -------------------------------------------------------------------------------- /tests/reference_figures/hbar_anscombe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/hbar_anscombe.txt -------------------------------------------------------------------------------- /tests/reference_figures/hbar_cheese_or_chocolate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/hbar_cheese_or_chocolate.txt -------------------------------------------------------------------------------- /tests/reference_figures/hbar_iris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/hbar_iris.txt -------------------------------------------------------------------------------- /tests/reference_figures/image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/image.txt -------------------------------------------------------------------------------- /tests/reference_figures/image_ascii.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/image_ascii.txt -------------------------------------------------------------------------------- /tests/reference_figures/image_big_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/image_big_values.txt -------------------------------------------------------------------------------- /tests/reference_figures/image_cameraman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/image_cameraman.txt -------------------------------------------------------------------------------- /tests/reference_figures/image_small_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/image_small_values.txt -------------------------------------------------------------------------------- /tests/reference_figures/image_vmin_vmax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/image_vmin_vmax.txt -------------------------------------------------------------------------------- /tests/reference_figures/legendloc_bottomleft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/legendloc_bottomleft.txt -------------------------------------------------------------------------------- /tests/reference_figures/legendloc_bottomright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/legendloc_bottomright.txt -------------------------------------------------------------------------------- /tests/reference_figures/legendloc_topleft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/legendloc_topleft.txt -------------------------------------------------------------------------------- /tests/reference_figures/legendloc_topright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/legendloc_topright.txt -------------------------------------------------------------------------------- /tests/reference_figures/line_anscombe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/line_anscombe.txt -------------------------------------------------------------------------------- /tests/reference_figures/line_cheese_or_chocolate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/line_cheese_or_chocolate.txt -------------------------------------------------------------------------------- /tests/reference_figures/line_iris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/line_iris.txt -------------------------------------------------------------------------------- /tests/reference_figures/scatter_anscombe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/scatter_anscombe.txt -------------------------------------------------------------------------------- /tests/reference_figures/scatter_cheese_or_chocolate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/scatter_cheese_or_chocolate.txt -------------------------------------------------------------------------------- /tests/reference_figures/scatter_iris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/scatter_iris.txt -------------------------------------------------------------------------------- /tests/reference_figures/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/text.txt -------------------------------------------------------------------------------- /tests/reference_figures/y_axis_down_anscombe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/y_axis_down_anscombe.txt -------------------------------------------------------------------------------- /tests/reference_figures/y_axis_down_cheese_or_chocolate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/y_axis_down_cheese_or_chocolate.txt -------------------------------------------------------------------------------- /tests/reference_figures/y_axis_down_iris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/y_axis_down_iris.txt -------------------------------------------------------------------------------- /tests/reference_figures/y_axis_up.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/y_axis_up.txt -------------------------------------------------------------------------------- /tests/reference_figures/y_only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/reference_figures/y_only.txt -------------------------------------------------------------------------------- /tests/test_braille.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/test_braille.py -------------------------------------------------------------------------------- /tests/test_img2ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/test_img2ascii.py -------------------------------------------------------------------------------- /tests/test_reference_figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/test_reference_figures.py -------------------------------------------------------------------------------- /tests/test_scales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/test_scales.py -------------------------------------------------------------------------------- /tests/test_xticklabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tests/test_xticklabels.py -------------------------------------------------------------------------------- /tplot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tplot/__init__.py -------------------------------------------------------------------------------- /tplot/braille.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tplot/braille.py -------------------------------------------------------------------------------- /tplot/figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tplot/figure.py -------------------------------------------------------------------------------- /tplot/img2ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tplot/img2ascii.py -------------------------------------------------------------------------------- /tplot/scales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tplot/scales.py -------------------------------------------------------------------------------- /tplot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeroenDelcour/tplot/HEAD/tplot/utils.py --------------------------------------------------------------------------------