mpl-ascii


Namempl-ascii JSON
Version 0.6.1 PyPI version JSON
download
home_pageNone
SummaryA matplotlib backend that produces plots using only ASCII characters
upload_time2024-05-11 09:39:49
maintainerChris Cave
docs_urlNone
authorChris Cave
requires_python>=3.7
licenseMIT License
keywords matplotlib plotting ascii
VCS
bugtrack_url
requirements matplotlib rich pytest setuptools setuptools_scm twine build
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # mpl_ascii

A matplotlib backend that produces plots using only ASCII characters. It is available for python 3.7+.

## Quick start

Install `mpl_ascii` using pip

```bash
pip install mpl_ascii
```

To use mpl_ascii, add to your python program

```python
import matplotlib as mpl

mpl.use("module://mpl_ascii")
```

When you use `plt.show()` then it will print the plots as strings that consists of ASCII characters.

If you want to save a figure to a `.txt` file then just use `figure.savefig("my_figure.txt")`

See more information about using backends here: https://matplotlib.org/stable/users/explain/figure/backends.html

## Examples

### Bar chart

The following is taken from the example in `examples/bar_color.py`

```python
import matplotlib.pyplot as plt
import matplotlib as mpl
import mpl_ascii

mpl_ascii.AXES_WIDTH=100
mpl_ascii.AXES_HEIGHT=40

mpl.use("module://mpl_ascii")

import matplotlib.pyplot as plt

# Example data
fruits = ['apple', 'blueberry', 'cherry', 'orange']
counts = [10, 15, 7, 5]
colors = ['red', 'blue', 'red', 'orange']  # Colors corresponding to each fruit

fig, ax = plt.subplots()

# Plot each bar individually
for fruit, count, color in zip(fruits, counts, colors):
    ax.bar(fruit, count, color=color, label=color)

# Display the legend
ax.legend(title='Fruit color')

plt.show()
```

![bar chart with color](https://imgur.com/u4pRU3E.png)

### Scatter plot

The following is taken from the example in `examples/scatter_multi_color.py`

```python
import matplotlib.pyplot as plt
import numpy as np
import matplotlib as mpl
import mpl_ascii

mpl_ascii.AXES_WIDTH=100
mpl_ascii.AXES_HEIGHT=40


mpl.use("module://mpl_ascii")

np.random.seed(0)
x = np.random.rand(40)
y = np.random.rand(40)
colors = np.random.choice(['red', 'green', 'blue', 'yellow'], size=40)
color_labels = ['Red', 'Green', 'Blue', 'Yellow']  # Labels corresponding to colors

# Create a scatter plot
fig, ax = plt.subplots()
for color, label in zip(['red', 'green', 'blue', 'yellow'], color_labels):
    # Plot each color as a separate scatter plot to enable legend tracking
    idx = np.where(colors == color)
    ax.scatter(x[idx], y[idx], color=color, label=label)

# Set title and labels
ax.set_title('Scatter Plot with 4 Different Colors')
ax.set_xlabel('X axis')
ax.set_ylabel('Y axis')

# Add a legend
ax.legend(title='Point Colors')
plt.show()
```

![Scatter plot with color](https://imgur.com/6LOv6L3.png)

### Line plot

The following is taken from the example in `examples/double_plot.py`


```python
import matplotlib.pyplot as plt
import numpy as np
import matplotlib as mpl
import mpl_ascii

mpl_ascii.AXES_WIDTH=100
mpl_ascii.AXES_HEIGHT=40


mpl.use("module://mpl_ascii")


# Data for plotting
t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2 * np.pi * t)
c = 1 + np.cos(2 * np.pi * t)

fig, ax = plt.subplots()
ax.plot(t, s)
ax.plot(t, c)

ax.set(xlabel='time (s)', ylabel='voltage (mV)',
    title='About as simple as it gets, folks')

plt.show()
```
![Double plot with colors](https://imgur.com/PyTPR4C.png)

You can find more examples and their outputs in the `examples` folder.

## Global Variables

### mpl_ascii.AXES_WIDTH

Adjust the width of each axis according to the number of characters. The final width of the image might extend a few characters beyond this, depending on the size of the ticks and axis labels. Default is `150`.

### mpl_ascii.AXES_HEIGHT

Adjust the height of each axis according to the number of characters. The final height of the image might extend a few characters beyond this, depending on the size of the ticks and axis labels. Default is `40`

### mpl_ascii.ENABLE_COLORS

Executing `plt.show()` will render the image in colored text. Default is `True`


## Use cases

### Using Version Control for Plots

Handling plots with version control can pose challenges, especially when dealing with binary files. Here are some issues you might encounter:

- Binary Files: Committing binary files like PNGs can significantly increase your repository’s size. They are also difficult to compare (diff) and can lead to complex merge conflicts.

- SVG Files: Although SVGs are more version control-friendly than binary formats, they can still cause problems:
    - Large or complex graphics can result in excessively large SVG files.
    - Diffs can be hard to interpret.

To mitigate these issues, ASCII plots serve as an effective alternative:

- Size: ASCII representations are much smaller in size.
- Version Control Compatibility: They are straightforward to diff and simplify resolving merge conflicts.


This package acts as a backend for Matplotlib, enabling you to continue creating plots in your usual formats (PNG, SVG) during development. When you’re ready to commit your plots to a repository, simply switch to the `mpl_ascii` backend to convert them into ASCII format.

## Feedback

Please help make this package better by:
- reporting bugs.
- making feature requests. Matplotlib is an enormous library and this supports only a part of it. Let me know if there particular charts that you would like to be converted to ASCII
- letting me know what you use this for.

If you want to tell me about any of the above just use the Issues tab for now.

Thanks for reading and I hope you will like these plots as much as I do :-)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "mpl-ascii",
    "maintainer": "Chris Cave",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "matplotlib, plotting, ASCII",
    "author": "Chris Cave",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/94/48/1899a6878705e1c8142aa596b564ba3b907c7aa62e0cbbf1c24e77059779/mpl_ascii-0.6.1.tar.gz",
    "platform": null,
    "description": "# mpl_ascii\n\nA matplotlib backend that produces plots using only ASCII characters. It is available for python 3.7+.\n\n## Quick start\n\nInstall `mpl_ascii` using pip\n\n```bash\npip install mpl_ascii\n```\n\nTo use mpl_ascii, add to your python program\n\n```python\nimport matplotlib as mpl\n\nmpl.use(\"module://mpl_ascii\")\n```\n\nWhen you use `plt.show()` then it will print the plots as strings that consists of ASCII characters.\n\nIf you want to save a figure to a `.txt` file then just use `figure.savefig(\"my_figure.txt\")`\n\nSee more information about using backends here: https://matplotlib.org/stable/users/explain/figure/backends.html\n\n## Examples\n\n### Bar chart\n\nThe following is taken from the example in `examples/bar_color.py`\n\n```python\nimport matplotlib.pyplot as plt\nimport matplotlib as mpl\nimport mpl_ascii\n\nmpl_ascii.AXES_WIDTH=100\nmpl_ascii.AXES_HEIGHT=40\n\nmpl.use(\"module://mpl_ascii\")\n\nimport matplotlib.pyplot as plt\n\n# Example data\nfruits = ['apple', 'blueberry', 'cherry', 'orange']\ncounts = [10, 15, 7, 5]\ncolors = ['red', 'blue', 'red', 'orange']  # Colors corresponding to each fruit\n\nfig, ax = plt.subplots()\n\n# Plot each bar individually\nfor fruit, count, color in zip(fruits, counts, colors):\n    ax.bar(fruit, count, color=color, label=color)\n\n# Display the legend\nax.legend(title='Fruit color')\n\nplt.show()\n```\n\n![bar chart with color](https://imgur.com/u4pRU3E.png)\n\n### Scatter plot\n\nThe following is taken from the example in `examples/scatter_multi_color.py`\n\n```python\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib as mpl\nimport mpl_ascii\n\nmpl_ascii.AXES_WIDTH=100\nmpl_ascii.AXES_HEIGHT=40\n\n\nmpl.use(\"module://mpl_ascii\")\n\nnp.random.seed(0)\nx = np.random.rand(40)\ny = np.random.rand(40)\ncolors = np.random.choice(['red', 'green', 'blue', 'yellow'], size=40)\ncolor_labels = ['Red', 'Green', 'Blue', 'Yellow']  # Labels corresponding to colors\n\n# Create a scatter plot\nfig, ax = plt.subplots()\nfor color, label in zip(['red', 'green', 'blue', 'yellow'], color_labels):\n    # Plot each color as a separate scatter plot to enable legend tracking\n    idx = np.where(colors == color)\n    ax.scatter(x[idx], y[idx], color=color, label=label)\n\n# Set title and labels\nax.set_title('Scatter Plot with 4 Different Colors')\nax.set_xlabel('X axis')\nax.set_ylabel('Y axis')\n\n# Add a legend\nax.legend(title='Point Colors')\nplt.show()\n```\n\n![Scatter plot with color](https://imgur.com/6LOv6L3.png)\n\n### Line plot\n\nThe following is taken from the example in `examples/double_plot.py`\n\n\n```python\nimport matplotlib.pyplot as plt\nimport numpy as np\nimport matplotlib as mpl\nimport mpl_ascii\n\nmpl_ascii.AXES_WIDTH=100\nmpl_ascii.AXES_HEIGHT=40\n\n\nmpl.use(\"module://mpl_ascii\")\n\n\n# Data for plotting\nt = np.arange(0.0, 2.0, 0.01)\ns = 1 + np.sin(2 * np.pi * t)\nc = 1 + np.cos(2 * np.pi * t)\n\nfig, ax = plt.subplots()\nax.plot(t, s)\nax.plot(t, c)\n\nax.set(xlabel='time (s)', ylabel='voltage (mV)',\n    title='About as simple as it gets, folks')\n\nplt.show()\n```\n![Double plot with colors](https://imgur.com/PyTPR4C.png)\n\nYou can find more examples and their outputs in the `examples` folder.\n\n## Global Variables\n\n### mpl_ascii.AXES_WIDTH\n\nAdjust the width of each axis according to the number of characters. The final width of the image might extend a few characters beyond this, depending on the size of the ticks and axis labels. Default is `150`.\n\n### mpl_ascii.AXES_HEIGHT\n\nAdjust the height of each axis according to the number of characters. The final height of the image might extend a few characters beyond this, depending on the size of the ticks and axis labels. Default is `40`\n\n### mpl_ascii.ENABLE_COLORS\n\nExecuting `plt.show()` will render the image in colored text. Default is `True`\n\n\n## Use cases\n\n### Using Version Control for Plots\n\nHandling plots with version control can pose challenges, especially when dealing with binary files. Here are some issues you might encounter:\n\n- Binary Files: Committing binary files like PNGs can significantly increase your repository\u2019s size. They are also difficult to compare (diff) and can lead to complex merge conflicts.\n\n- SVG Files: Although SVGs are more version control-friendly than binary formats, they can still cause problems:\n    - Large or complex graphics can result in excessively large SVG files.\n    - Diffs can be hard to interpret.\n\nTo mitigate these issues, ASCII plots serve as an effective alternative:\n\n- Size: ASCII representations are much smaller in size.\n- Version Control Compatibility: They are straightforward to diff and simplify resolving merge conflicts.\n\n\nThis package acts as a backend for Matplotlib, enabling you to continue creating plots in your usual formats (PNG, SVG) during development. When you\u2019re ready to commit your plots to a repository, simply switch to the `mpl_ascii` backend to convert them into ASCII format.\n\n## Feedback\n\nPlease help make this package better by:\n- reporting bugs.\n- making feature requests. Matplotlib is an enormous library and this supports only a part of it. Let me know if there particular charts that you would like to be converted to ASCII\n- letting me know what you use this for.\n\nIf you want to tell me about any of the above just use the Issues tab for now.\n\nThanks for reading and I hope you will like these plots as much as I do :-)\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "A matplotlib backend that produces plots using only ASCII characters",
    "version": "0.6.1",
    "project_urls": {
        "Homepage": "https://github.com/chriscave/mpl_ascii"
    },
    "split_keywords": [
        "matplotlib",
        " plotting",
        " ascii"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "192af821309b95d54ea02eecd95c172c46c72ee3f82b2fbc3a73962a5ac7715c",
                "md5": "ed735b4dbcc0a07037354a052466f992",
                "sha256": "e7b51ee380826e0a6dc014f170ef0e9cedbf3c00f8542d4b0e335729ab939721"
            },
            "downloads": -1,
            "filename": "mpl_ascii-0.6.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ed735b4dbcc0a07037354a052466f992",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 10869,
            "upload_time": "2024-05-11T09:39:47",
            "upload_time_iso_8601": "2024-05-11T09:39:47.899082Z",
            "url": "https://files.pythonhosted.org/packages/19/2a/f821309b95d54ea02eecd95c172c46c72ee3f82b2fbc3a73962a5ac7715c/mpl_ascii-0.6.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94481899a6878705e1c8142aa596b564ba3b907c7aa62e0cbbf1c24e77059779",
                "md5": "a212c66a9d3f11074c18d0574fb720cf",
                "sha256": "fccc2333851c3dc377c6a97de55082838fb490fe9c02f5aff9f8f997854efb43"
            },
            "downloads": -1,
            "filename": "mpl_ascii-0.6.1.tar.gz",
            "has_sig": false,
            "md5_digest": "a212c66a9d3f11074c18d0574fb720cf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 37549,
            "upload_time": "2024-05-11T09:39:49",
            "upload_time_iso_8601": "2024-05-11T09:39:49.251348Z",
            "url": "https://files.pythonhosted.org/packages/94/48/1899a6878705e1c8142aa596b564ba3b907c7aa62e0cbbf1c24e77059779/mpl_ascii-0.6.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-11 09:39:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "chriscave",
    "github_project": "mpl_ascii",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "matplotlib",
            "specs": [
                [
                    ">=",
                    "3.5.3"
                ]
            ]
        },
        {
            "name": "rich",
            "specs": [
                [
                    ">=",
                    "13.7.1"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": [
                [
                    ">=",
                    "7.4.4"
                ]
            ]
        },
        {
            "name": "setuptools",
            "specs": [
                [
                    ">=",
                    "62"
                ]
            ]
        },
        {
            "name": "setuptools_scm",
            "specs": [
                [
                    ">=",
                    "7.1.0"
                ]
            ]
        },
        {
            "name": "twine",
            "specs": [
                [
                    ">=",
                    "4.0.2"
                ]
            ]
        },
        {
            "name": "build",
            "specs": [
                [
                    ">=",
                    "1.1.1"
                ]
            ]
        }
    ],
    "lcname": "mpl-ascii"
}
        
Elapsed time: 0.24515s