Create text-based graphs
Project description
tplot
tplot
is a Python package for creating text-based graphs. Useful for visualizing data to the terminal or log files.
Features
- Scatter plots, line plots, horizontal/vertical bar plots, and image plots
- Supports numerical and categorical data
- Legend
- Unicode characters (with automatic ascii fallback)
- Colors
- Few dependencies
- Fast and lightweight
- Doesn't take over your terminal (only prints strings)
Installation
tplot
is available on PyPi:
pip install tplot
Documentation
Documentation is available on readthedocs.
Examples
Basic usage
import tplot
fig = tplot.Figure()
fig.scatter([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
fig.show()
A more advanced example
import tplot
import numpy as np
x = np.linspace(start=0, stop=np.pi*3, num=80)
fig = tplot.Figure(
xlabel="Phase",
ylabel="Amplitude",
title="Trigonometric functions",
legendloc="bottomleft",
width=60,
height=15,
)
fig.line(x, y=np.sin(x), color="red", label="sin(x)")
fig.line(x, y=np.cos(x), color="blue", label="cos(x)")
fig.show()
See more examples in the documentation.
Contributing
Contributions are welcome. Bug fixes, feature suggestions, documentation improvements etc. can be contributed via issues and/or pull requests.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tplot-0.3.6.tar.gz
(269.3 kB
view details)
Built Distribution
tplot-0.3.6-py3-none-any.whl
(13.5 kB
view details)
File details
Details for the file tplot-0.3.6.tar.gz
.
File metadata
- Download URL: tplot-0.3.6.tar.gz
- Upload date:
- Size: 269.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b3564f591679e728d441693d0266630f5333210984d0a16de87f2d47ce21790 |
|
MD5 | 2210c430a79e54fcb1e85482b27cb61e |
|
BLAKE2b-256 | 7ac37c2b8c7e8e71b17d5a7292a1233b82bb95292153c49ad236b90b0d3f0b23 |
File details
Details for the file tplot-0.3.6-py3-none-any.whl
.
File metadata
- Download URL: tplot-0.3.6-py3-none-any.whl
- Upload date:
- Size: 13.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.31.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19950e3d2c2983f4db6f9c6795d3284a0b72ec9773f69ab15df20eac612d16f7 |
|
MD5 | 51dafaec644bb015652f214f7f407e09 |
|
BLAKE2b-256 | b56a51a89343b3dc5a6d7438686c3609110f54dbc6f91df4f603163d40dafa63 |