├── .bumpversion.cfg ├── .coveragerc ├── .editorconfig ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── GOVERNANCE.md ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE.md ├── SUPPORT.md ├── actions │ └── setup-python │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── check-release-notes.yml │ ├── ci.yml │ ├── codeql.yml │ ├── greet-new-users.yml │ ├── readthedocs-preview.yml │ └── release.yml ├── .gitignore ├── .mdformat.toml ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGES.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── cicd_utils ├── README.md ├── cicd │ ├── __init__.py │ ├── scripts │ │ ├── __init__.py │ │ ├── extract_latest_release_notes.py │ │ └── open_in_browser.py │ └── test_helpers.py ├── find-unmentioned-prs.sh └── ridgeplot_examples │ ├── __init__.py │ ├── _base.py │ ├── _basic.py │ ├── _basic_hist.py │ ├── _lincoln_weather.py │ ├── _lincoln_weather_red_blue.py │ └── _probly.py ├── docs ├── Makefile ├── _static │ ├── charts │ │ ├── basic.webp │ │ ├── basic_hist.webp │ │ ├── lincoln_weather.webp │ │ ├── lincoln_weather_red_blue.webp │ │ └── probly.webp │ ├── css │ │ ├── misc_overrides.css │ │ └── versionmodified_admonitions.css │ ├── favicon.ico │ └── img │ │ ├── api │ │ └── types │ │ │ ├── densities.webp │ │ │ ├── densities_row.webp │ │ │ ├── density_trace.webp │ │ │ ├── samples.webp │ │ │ ├── samples_row.webp │ │ │ ├── samples_trace.webp │ │ │ ├── shallow_densities.webp │ │ │ └── shallow_samples.webp │ │ ├── hero.png │ │ ├── hero2.png │ │ ├── hero3.png │ │ ├── logo-wide-dark.png │ │ ├── logo-wide.png │ │ └── probly_original.jpg ├── _templates │ └── base.html ├── api │ └── index.rst ├── conf.py ├── development │ ├── contributing.md │ └── release_process.md ├── getting_started │ ├── getting_started.md │ └── installation.md ├── index.md ├── make.bat ├── reference │ ├── alternatives.md │ └── changelog.md └── robots.txt ├── misc └── brand │ ├── logo-round-dark-bg.png │ ├── logo-round-light-bg.png │ ├── logo-round.png │ ├── logo-square.png │ ├── logo.ipynb │ └── requirements.txt ├── mypy.ini ├── pyproject.toml ├── pyrightconfig.json ├── pytest.ini ├── requirements ├── cicd_utils.txt ├── docs.txt ├── local-dev.txt ├── tests.txt └── typing.txt ├── ruff.toml ├── setup.py ├── src └── ridgeplot │ ├── __init__.py │ ├── _color │ ├── __init__.py │ ├── colorscale.py │ ├── css_colors.py │ ├── interpolation.py │ └── utils.py │ ├── _figure_factory.py │ ├── _hist.py │ ├── _kde.py │ ├── _missing.py │ ├── _obj │ ├── __init__.py │ └── traces │ │ ├── __init__.py │ │ ├── area.py │ │ ├── bar.py │ │ └── base.py │ ├── _ridgeplot.py │ ├── _types.py │ ├── _utils.py │ ├── _vendor │ ├── __init__.py │ └── _typeis.py │ ├── _version.py │ ├── datasets │ ├── __init__.py │ └── data │ │ ├── lincoln-weather.csv │ │ ├── probly-illinois.csv │ │ ├── probly-wadefagen.csv │ │ └── probly-zonination.csv │ └── py.typed ├── tests ├── cicd_utils │ ├── test_ridgeplot_examples.py │ ├── test_scripts │ │ ├── test_extract_latest_release_notes.py │ │ └── test_scripts_are_executable.py │ └── test_test_helpers.py ├── conftest.py ├── e2e │ ├── artifacts │ │ ├── basic.jpeg │ │ ├── basic.json │ │ ├── basic_hist.jpeg │ │ ├── basic_hist.json │ │ ├── lincoln_weather.jpeg │ │ ├── lincoln_weather.json │ │ ├── lincoln_weather_red_blue.jpeg │ │ ├── lincoln_weather_red_blue.json │ │ ├── probly.jpeg │ │ └── probly.json │ └── test_examples.py └── unit │ ├── color │ ├── test_colorscale.py │ ├── test_css_colors.py │ ├── test_interpolation.py │ └── test_utils.py │ ├── conftest.py │ ├── obj │ └── traces │ │ ├── test_bar.py │ │ └── test_init.py │ ├── test_datasets.py │ ├── test_figure_factory.py │ ├── test_functional.py │ ├── test_hist.py │ ├── test_init.py │ ├── test_kde.py │ ├── test_missing.py │ ├── test_ridgeplot.py │ ├── test_utils.py │ └── test_version.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @tpvasconcelos 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [ tpvasconcelos ] 2 | -------------------------------------------------------------------------------- /.github/GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/GOVERNANCE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/actions/setup-python/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/actions/setup-python/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/workflows/check-release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/greet-new-users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/workflows/greet-new-users.yml -------------------------------------------------------------------------------- /.github/workflows/readthedocs-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/workflows/readthedocs-preview.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdformat.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.mdformat.toml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/README.md -------------------------------------------------------------------------------- /cicd_utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/README.md -------------------------------------------------------------------------------- /cicd_utils/cicd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cicd_utils/cicd/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cicd_utils/cicd/scripts/extract_latest_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/cicd/scripts/extract_latest_release_notes.py -------------------------------------------------------------------------------- /cicd_utils/cicd/scripts/open_in_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/cicd/scripts/open_in_browser.py -------------------------------------------------------------------------------- /cicd_utils/cicd/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/cicd/test_helpers.py -------------------------------------------------------------------------------- /cicd_utils/find-unmentioned-prs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/find-unmentioned-prs.sh -------------------------------------------------------------------------------- /cicd_utils/ridgeplot_examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/ridgeplot_examples/__init__.py -------------------------------------------------------------------------------- /cicd_utils/ridgeplot_examples/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/ridgeplot_examples/_base.py -------------------------------------------------------------------------------- /cicd_utils/ridgeplot_examples/_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/ridgeplot_examples/_basic.py -------------------------------------------------------------------------------- /cicd_utils/ridgeplot_examples/_basic_hist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/ridgeplot_examples/_basic_hist.py -------------------------------------------------------------------------------- /cicd_utils/ridgeplot_examples/_lincoln_weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/ridgeplot_examples/_lincoln_weather.py -------------------------------------------------------------------------------- /cicd_utils/ridgeplot_examples/_lincoln_weather_red_blue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/ridgeplot_examples/_lincoln_weather_red_blue.py -------------------------------------------------------------------------------- /cicd_utils/ridgeplot_examples/_probly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/cicd_utils/ridgeplot_examples/_probly.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/charts/basic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/charts/basic.webp -------------------------------------------------------------------------------- /docs/_static/charts/basic_hist.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/charts/basic_hist.webp -------------------------------------------------------------------------------- /docs/_static/charts/lincoln_weather.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/charts/lincoln_weather.webp -------------------------------------------------------------------------------- /docs/_static/charts/lincoln_weather_red_blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/charts/lincoln_weather_red_blue.webp -------------------------------------------------------------------------------- /docs/_static/charts/probly.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/charts/probly.webp -------------------------------------------------------------------------------- /docs/_static/css/misc_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/css/misc_overrides.css -------------------------------------------------------------------------------- /docs/_static/css/versionmodified_admonitions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/css/versionmodified_admonitions.css -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/img/api/types/densities.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/api/types/densities.webp -------------------------------------------------------------------------------- /docs/_static/img/api/types/densities_row.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/api/types/densities_row.webp -------------------------------------------------------------------------------- /docs/_static/img/api/types/density_trace.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/api/types/density_trace.webp -------------------------------------------------------------------------------- /docs/_static/img/api/types/samples.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/api/types/samples.webp -------------------------------------------------------------------------------- /docs/_static/img/api/types/samples_row.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/api/types/samples_row.webp -------------------------------------------------------------------------------- /docs/_static/img/api/types/samples_trace.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/api/types/samples_trace.webp -------------------------------------------------------------------------------- /docs/_static/img/api/types/shallow_densities.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/api/types/shallow_densities.webp -------------------------------------------------------------------------------- /docs/_static/img/api/types/shallow_samples.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/api/types/shallow_samples.webp -------------------------------------------------------------------------------- /docs/_static/img/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/hero.png -------------------------------------------------------------------------------- /docs/_static/img/hero2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/hero2.png -------------------------------------------------------------------------------- /docs/_static/img/hero3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/hero3.png -------------------------------------------------------------------------------- /docs/_static/img/logo-wide-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/logo-wide-dark.png -------------------------------------------------------------------------------- /docs/_static/img/logo-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/logo-wide.png -------------------------------------------------------------------------------- /docs/_static/img/probly_original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_static/img/probly_original.jpg -------------------------------------------------------------------------------- /docs/_templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/_templates/base.html -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/development/contributing.md -------------------------------------------------------------------------------- /docs/development/release_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/development/release_process.md -------------------------------------------------------------------------------- /docs/getting_started/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/getting_started/getting_started.md -------------------------------------------------------------------------------- /docs/getting_started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/getting_started/installation.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/reference/alternatives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/reference/alternatives.md -------------------------------------------------------------------------------- /docs/reference/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/reference/changelog.md -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /misc/brand/logo-round-dark-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/misc/brand/logo-round-dark-bg.png -------------------------------------------------------------------------------- /misc/brand/logo-round-light-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/misc/brand/logo-round-light-bg.png -------------------------------------------------------------------------------- /misc/brand/logo-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/misc/brand/logo-round.png -------------------------------------------------------------------------------- /misc/brand/logo-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/misc/brand/logo-square.png -------------------------------------------------------------------------------- /misc/brand/logo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/misc/brand/logo.ipynb -------------------------------------------------------------------------------- /misc/brand/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | scipy 4 | -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements/cicd_utils.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/requirements/cicd_utils.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/local-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/requirements/local-dev.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /requirements/typing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/requirements/typing.txt -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/ruff.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/setup.py -------------------------------------------------------------------------------- /src/ridgeplot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/__init__.py -------------------------------------------------------------------------------- /src/ridgeplot/_color/__init__.py: -------------------------------------------------------------------------------- 1 | """Color utilities.""" 2 | -------------------------------------------------------------------------------- /src/ridgeplot/_color/colorscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_color/colorscale.py -------------------------------------------------------------------------------- /src/ridgeplot/_color/css_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_color/css_colors.py -------------------------------------------------------------------------------- /src/ridgeplot/_color/interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_color/interpolation.py -------------------------------------------------------------------------------- /src/ridgeplot/_color/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_color/utils.py -------------------------------------------------------------------------------- /src/ridgeplot/_figure_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_figure_factory.py -------------------------------------------------------------------------------- /src/ridgeplot/_hist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_hist.py -------------------------------------------------------------------------------- /src/ridgeplot/_kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_kde.py -------------------------------------------------------------------------------- /src/ridgeplot/_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_missing.py -------------------------------------------------------------------------------- /src/ridgeplot/_obj/__init__.py: -------------------------------------------------------------------------------- 1 | """Object-oriented interfaces.""" 2 | -------------------------------------------------------------------------------- /src/ridgeplot/_obj/traces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_obj/traces/__init__.py -------------------------------------------------------------------------------- /src/ridgeplot/_obj/traces/area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_obj/traces/area.py -------------------------------------------------------------------------------- /src/ridgeplot/_obj/traces/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_obj/traces/bar.py -------------------------------------------------------------------------------- /src/ridgeplot/_obj/traces/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_obj/traces/base.py -------------------------------------------------------------------------------- /src/ridgeplot/_ridgeplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_ridgeplot.py -------------------------------------------------------------------------------- /src/ridgeplot/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_types.py -------------------------------------------------------------------------------- /src/ridgeplot/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_utils.py -------------------------------------------------------------------------------- /src/ridgeplot/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ridgeplot/_vendor/_typeis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_vendor/_typeis.py -------------------------------------------------------------------------------- /src/ridgeplot/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/_version.py -------------------------------------------------------------------------------- /src/ridgeplot/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/datasets/__init__.py -------------------------------------------------------------------------------- /src/ridgeplot/datasets/data/lincoln-weather.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/datasets/data/lincoln-weather.csv -------------------------------------------------------------------------------- /src/ridgeplot/datasets/data/probly-illinois.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/datasets/data/probly-illinois.csv -------------------------------------------------------------------------------- /src/ridgeplot/datasets/data/probly-wadefagen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/datasets/data/probly-wadefagen.csv -------------------------------------------------------------------------------- /src/ridgeplot/datasets/data/probly-zonination.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/src/ridgeplot/datasets/data/probly-zonination.csv -------------------------------------------------------------------------------- /src/ridgeplot/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cicd_utils/test_ridgeplot_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/cicd_utils/test_ridgeplot_examples.py -------------------------------------------------------------------------------- /tests/cicd_utils/test_scripts/test_extract_latest_release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/cicd_utils/test_scripts/test_extract_latest_release_notes.py -------------------------------------------------------------------------------- /tests/cicd_utils/test_scripts/test_scripts_are_executable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/cicd_utils/test_scripts/test_scripts_are_executable.py -------------------------------------------------------------------------------- /tests/cicd_utils/test_test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/cicd_utils/test_test_helpers.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/e2e/artifacts/basic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/artifacts/basic.jpeg -------------------------------------------------------------------------------- /tests/e2e/artifacts/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/artifacts/basic.json -------------------------------------------------------------------------------- /tests/e2e/artifacts/basic_hist.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/artifacts/basic_hist.jpeg -------------------------------------------------------------------------------- /tests/e2e/artifacts/basic_hist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/artifacts/basic_hist.json -------------------------------------------------------------------------------- /tests/e2e/artifacts/lincoln_weather.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/artifacts/lincoln_weather.jpeg -------------------------------------------------------------------------------- /tests/e2e/artifacts/lincoln_weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/artifacts/lincoln_weather.json -------------------------------------------------------------------------------- /tests/e2e/artifacts/lincoln_weather_red_blue.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/artifacts/lincoln_weather_red_blue.jpeg -------------------------------------------------------------------------------- /tests/e2e/artifacts/lincoln_weather_red_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/artifacts/lincoln_weather_red_blue.json -------------------------------------------------------------------------------- /tests/e2e/artifacts/probly.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/artifacts/probly.jpeg -------------------------------------------------------------------------------- /tests/e2e/artifacts/probly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/artifacts/probly.json -------------------------------------------------------------------------------- /tests/e2e/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/e2e/test_examples.py -------------------------------------------------------------------------------- /tests/unit/color/test_colorscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/color/test_colorscale.py -------------------------------------------------------------------------------- /tests/unit/color/test_css_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/color/test_css_colors.py -------------------------------------------------------------------------------- /tests/unit/color/test_interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/color/test_interpolation.py -------------------------------------------------------------------------------- /tests/unit/color/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/color/test_utils.py -------------------------------------------------------------------------------- /tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/conftest.py -------------------------------------------------------------------------------- /tests/unit/obj/traces/test_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/obj/traces/test_bar.py -------------------------------------------------------------------------------- /tests/unit/obj/traces/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/obj/traces/test_init.py -------------------------------------------------------------------------------- /tests/unit/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/test_datasets.py -------------------------------------------------------------------------------- /tests/unit/test_figure_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/test_figure_factory.py -------------------------------------------------------------------------------- /tests/unit/test_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/test_functional.py -------------------------------------------------------------------------------- /tests/unit/test_hist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/test_hist.py -------------------------------------------------------------------------------- /tests/unit/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/test_init.py -------------------------------------------------------------------------------- /tests/unit/test_kde.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/test_kde.py -------------------------------------------------------------------------------- /tests/unit/test_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/test_missing.py -------------------------------------------------------------------------------- /tests/unit/test_ridgeplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/test_ridgeplot.py -------------------------------------------------------------------------------- /tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/test_utils.py -------------------------------------------------------------------------------- /tests/unit/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tests/unit/test_version.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpvasconcelos/ridgeplot/HEAD/tox.ini --------------------------------------------------------------------------------