statworx_theme


Namestatworx_theme JSON
Version 0.13.0 PyPI version JSON
download
home_pagehttps://statworx-theme.readthedocs.io/en/latest
SummaryA color theme for matplotlib using the offical statworx design
upload_time2023-12-20 12:41:44
maintainer
docs_urlNone
authorstatworx Team
requires_python>=3.8,<3.12
licenseMIT
keywords theme matplotlib plotting statworx
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Statworx Theme

[![PyPI version](https://badge.fury.io/py/statworx-theme.svg)](https://badge.fury.io/py/statworx-theme)
[![Documentation Status](https://readthedocs.org/projects/statworx-theme/badge/?version=latest)](https://statworx-theme.readthedocs.io/en/latest/?badge=latest)
[![Release](https://github.com/STATWORX/statworx-theme/actions/workflows/release.yml/badge.svg)](https://github.com/STATWORX/statworx-theme/actions/workflows/release.yml)
[![Code Quality](https://github.com/STATWORX/statworx-theme/actions/workflows/conde_quality.yml/badge.svg)](https://github.com/STATWORX/statworx-theme/actions/workflows/conde_quality.yml)
[![Python version](https://img.shields.io/badge/python-3.8-blue.svg)](https://pypi.org/project/kedro/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/STATWORX/statworx-theme/blob/master/LICENSE)
![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)

A color theme plugin for the [matplotlib](https://matplotlib.org/) library and all its derivatives, as well as an optional adaption of this theme for [altair](https://altair-viz.github.io/) and [plotly](https://plotly.com/python/), which automatically applies the official statworx color theme.
This package also registers commonly used [qualitative color maps](https://matplotlib.org/stable/tutorials/colors/colormaps.html) (such as a fade from good to bad) for use in presentations.

![Sample](./docs/assets/sample.svg)

## Quick Start

Simply install a module with `pip` by using the following command.

```console
pip install statworx-theme
```

For usage of altair and plotly extra dependencies need to be installed using pip.

```console
pip install "statworx-theme[altair]"
pip install "statworx-theme[plotly]"
```

For using the styles inside a poetry managed project use `poetry add` with extras.
```console
#only matplotlib
poetry add statworx-theme

# altair theme
poetry add statworx-theme -E "altair"

# plotly theme
poetry add statworx-theme -E "plotly"

# Whole package
poetry add statworx-theme -E "altair plotly"
```


To apply the matplotlib style, you must call the `apply_style` function by typing:

```python
from statworx_theme import apply_style
apply_style()
```

For applying the plotly or altair style the respective `apply_style_<library>` function is used:
```python
from statworx_theme import apply_style_altair, apply_style_plotly
apply_style_altair()
apply_style_plotly()
```


## Gallery

#### Matplotlib
There is an extensive gallery of figures that use the Statworx theme that you can draw inspiration from. You can find it [here](https://statworx-theme.readthedocs.io/en/latest/gallery.html).
For a figure gallery using the altair and plotly theme see the respective notebooks inside the [repository](https://github.com/STATWORX/statworx-theme/tree/master/notebooks).

![Sample](./docs/assets/gallery.png)

## Custom Colors

You can also use a custom list of color for the color scheme beside the official statworx colors.
There is a convenience function for that which is described below.
This simply changes the colors.

##### Matplotlib
In case you want to change the entire style you should implement your own `.mplstyle` file (see [this](https://matplotlib.org/stable/tutorials/introductory/customizing.html)).

```python
from statworx_theme import apply_custom_colors

custom_colors = [
    DARK_BLUE := "#0A526B",
    DARK_RED := "#6B0020",
    GREY := "#808285",
]
apply_custom_colors(custom_colors)
```

#### Altair

```python
from statworx_theme import apply_custom_colors_altair

custom_colors = [
    DARK_BLUE := "#0A526B",
    DARK_RED := "#6B0020",
    GREY := "#808285",
]
apply_custom_colors_altair(category=custom_colors)
```

#### Plotly

```python
from statworx_theme import apply_custom_colors_plotly
custom_colors = [
    DARK_BLUE := "#0A526B",
    DARK_RED := "#6B0020",
    GREY := "#808285",
]
apply_custom_colors_plotly(category=custom_colors)
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://statworx-theme.readthedocs.io/en/latest",
    "name": "statworx_theme",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<3.12",
    "maintainer_email": "",
    "keywords": "theme,matplotlib,plotting,statworx",
    "author": "statworx Team",
    "author_email": "accounts@statworx.com",
    "download_url": "https://files.pythonhosted.org/packages/70/c6/2ef84f3a714b2b8b608be27bc1cdb606b7645b7f420734e983f7348ac1c6/statworx_theme-0.13.0.tar.gz",
    "platform": null,
    "description": "# Statworx Theme\n\n[![PyPI version](https://badge.fury.io/py/statworx-theme.svg)](https://badge.fury.io/py/statworx-theme)\n[![Documentation Status](https://readthedocs.org/projects/statworx-theme/badge/?version=latest)](https://statworx-theme.readthedocs.io/en/latest/?badge=latest)\n[![Release](https://github.com/STATWORX/statworx-theme/actions/workflows/release.yml/badge.svg)](https://github.com/STATWORX/statworx-theme/actions/workflows/release.yml)\n[![Code Quality](https://github.com/STATWORX/statworx-theme/actions/workflows/conde_quality.yml/badge.svg)](https://github.com/STATWORX/statworx-theme/actions/workflows/conde_quality.yml)\n[![Python version](https://img.shields.io/badge/python-3.8-blue.svg)](https://pypi.org/project/kedro/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/STATWORX/statworx-theme/blob/master/LICENSE)\n![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)\n\nA color theme plugin for the [matplotlib](https://matplotlib.org/) library and all its derivatives, as well as an optional adaption of this theme for [altair](https://altair-viz.github.io/) and [plotly](https://plotly.com/python/), which automatically applies the official statworx color theme.\nThis package also registers commonly used [qualitative color maps](https://matplotlib.org/stable/tutorials/colors/colormaps.html) (such as a fade from good to bad) for use in presentations.\n\n![Sample](./docs/assets/sample.svg)\n\n## Quick Start\n\nSimply install a module with `pip` by using the following command.\n\n```console\npip install statworx-theme\n```\n\nFor usage of altair and plotly extra dependencies need to be installed using pip.\n\n```console\npip install \"statworx-theme[altair]\"\npip install \"statworx-theme[plotly]\"\n```\n\nFor using the styles inside a poetry managed project use `poetry add` with extras.\n```console\n#only matplotlib\npoetry add statworx-theme\n\n# altair theme\npoetry add statworx-theme -E \"altair\"\n\n# plotly theme\npoetry add statworx-theme -E \"plotly\"\n\n# Whole package\npoetry add statworx-theme -E \"altair plotly\"\n```\n\n\nTo apply the matplotlib style, you must call the `apply_style` function by typing:\n\n```python\nfrom statworx_theme import apply_style\napply_style()\n```\n\nFor applying the plotly or altair style the respective `apply_style_<library>` function is used:\n```python\nfrom statworx_theme import apply_style_altair, apply_style_plotly\napply_style_altair()\napply_style_plotly()\n```\n\n\n## Gallery\n\n#### Matplotlib\nThere is an extensive gallery of figures that use the Statworx theme that you can draw inspiration from. You can find it [here](https://statworx-theme.readthedocs.io/en/latest/gallery.html).\nFor a figure gallery using the altair and plotly theme see the respective notebooks inside the [repository](https://github.com/STATWORX/statworx-theme/tree/master/notebooks).\n\n![Sample](./docs/assets/gallery.png)\n\n## Custom Colors\n\nYou can also use a custom list of color for the color scheme beside the official statworx colors.\nThere is a convenience function for that which is described below.\nThis simply changes the colors.\n\n##### Matplotlib\nIn case you want to change the entire style you should implement your own `.mplstyle` file (see [this](https://matplotlib.org/stable/tutorials/introductory/customizing.html)).\n\n```python\nfrom statworx_theme import apply_custom_colors\n\ncustom_colors = [\n    DARK_BLUE := \"#0A526B\",\n    DARK_RED := \"#6B0020\",\n    GREY := \"#808285\",\n]\napply_custom_colors(custom_colors)\n```\n\n#### Altair\n\n```python\nfrom statworx_theme import apply_custom_colors_altair\n\ncustom_colors = [\n    DARK_BLUE := \"#0A526B\",\n    DARK_RED := \"#6B0020\",\n    GREY := \"#808285\",\n]\napply_custom_colors_altair(category=custom_colors)\n```\n\n#### Plotly\n\n```python\nfrom statworx_theme import apply_custom_colors_plotly\ncustom_colors = [\n    DARK_BLUE := \"#0A526B\",\n    DARK_RED := \"#6B0020\",\n    GREY := \"#808285\",\n]\napply_custom_colors_plotly(category=custom_colors)\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A color theme for matplotlib using the offical statworx design",
    "version": "0.13.0",
    "project_urls": {
        "Homepage": "https://statworx-theme.readthedocs.io/en/latest",
        "Repository": "https://github.com/STATWORX/statworx-theme"
    },
    "split_keywords": [
        "theme",
        "matplotlib",
        "plotting",
        "statworx"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9013162d399f584651f4fcdd34f3426b0e6e40bf3ef5397de21ca252f3cb3f59",
                "md5": "1710aa4eeb2da3caeca8faa2397be09c",
                "sha256": "8bc593bcf08f24528f63426ab1fb9d842f03ecb6e5fa2ac46724434fc61f65c5"
            },
            "downloads": -1,
            "filename": "statworx_theme-0.13.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1710aa4eeb2da3caeca8faa2397be09c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<3.12",
            "size": 21209,
            "upload_time": "2023-12-20T12:41:42",
            "upload_time_iso_8601": "2023-12-20T12:41:42.874536Z",
            "url": "https://files.pythonhosted.org/packages/90/13/162d399f584651f4fcdd34f3426b0e6e40bf3ef5397de21ca252f3cb3f59/statworx_theme-0.13.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70c62ef84f3a714b2b8b608be27bc1cdb606b7645b7f420734e983f7348ac1c6",
                "md5": "d98976649e5b8ab9e9a3f0f3e1e87b1c",
                "sha256": "cc41a81557ef8ba3cc3939b8085919195ac461407bf6993cab3995625b473cce"
            },
            "downloads": -1,
            "filename": "statworx_theme-0.13.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d98976649e5b8ab9e9a3f0f3e1e87b1c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<3.12",
            "size": 21128,
            "upload_time": "2023-12-20T12:41:44",
            "upload_time_iso_8601": "2023-12-20T12:41:44.572815Z",
            "url": "https://files.pythonhosted.org/packages/70/c6/2ef84f3a714b2b8b608be27bc1cdb606b7645b7f420734e983f7348ac1c6/statworx_theme-0.13.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-20 12:41:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "STATWORX",
    "github_project": "statworx-theme",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "statworx_theme"
}
        
Elapsed time: 0.16939s