Skip to content

Commit

Permalink
added version 0.1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
piccolomo committed Sep 24, 2022
0 parents commit 34c558c
Show file tree
Hide file tree
Showing 7 changed files with 1,148 additions and 0 deletions.
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
MIT License

Copyright (c) [2021] [Savino Piccolomo]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

367 changes: 367 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,367 @@
The package **plotext** allows to plot data directly on terminal.


Basic Example
=============

Here is a basic example of plotting data on terminal using the *plotext* package

![example](https://user-images.githubusercontent.com/56689657/73862927-2dfa4900-4837-11ea-926a-4718821368ea.png)
Each data point is represented by a character (in this case a blue •).
The column and row numbers are displayed respectively on the *x* and *y* axis; the two equations at the end of the plot allow the user to convert the column/row numbers in the correspondent real *x/y* coordinates of the original data; the uncertainties are due to the terminal pixel dimension correspondent to one character.



Installation
============

To install the latest version of the *plotext* package use the following command:
```
sudo -H pip install plotext
```



How to Use
==========

To import the package in python 3 use the command:
```
import plotext.plot as plx
```
To plot a scatter plot of data you could use a command like this:
```
plx.scatter(x, y)
```
where x and y are the lists of data for respectively the *x* and *y* coordinates; optionally, a single *y* list could be provided.

To plot data points connected by straight lines use instead:
```
plx.plot(x, y)
```
In order to show the final result just add:
```
plx.show()
```
In the following we provide examples on how to use the *scatter* function with additional options; the same options could be used for the *plot* function.



Plot Dimensions
===============

If no dimension settings are provided, the plot will automatically cover the entire terminal canvas. To manually set the plot canvas dimension, use a command like this:
```
plx.scatter(x, y, cols=90, rows=30)
```
which would set the width of the plot to 90 characters and the height to 30 characters. If only one of the two dimensions are provided, the other will automatically be set to the highest value allowed by the the terminal size. If one of the dimensions provided is bigger then the maximum allowed by the canvas size, it will automatically be reset to its highest value allowed by the the terminal size.

An alternative way to set the canvas dimension is to use the following equivalent commands:
```
plx.scatter(x, y)
plx.set_cols(90)
plx.set_rows(30)
```
You can access the value set for *cols* and *rows* respectively with the following commands:
```
plx.get_cols()
plx.get_rows()
```
You can access the terminal size with the command:
```
plx.get_terminal_size()
```
which returns the width and height of the terminal canvas.




Point Style
===========

In order to chose whatever or not to show each data point use a command like this:
```
plx.scatter(x, y, point=True)
```
where the default value is True for the *scatter* function and *False* for the *plot* function. Alternatively after the *scatter* function with:
```
plx.set_point(True)
```
You can access the value set for the option *point* with the following command:
```
plx.get_point()
```
In order to change the marker used for each data point use a command like this:
```
plx.scatter(x, y, point_marker='*')
```
where only single characters are allowed; the default value is •. Alternatively after the *scatter* function with:
```
plx.set_point_marker('*')
```
You can access the value set for the option *point_marker* with the following command:
```
plx.get_point_marker()
```
In order to change the color of the point marker use a command like this:
```
plx.scatter(x, y, point_color='red')
```
or, alternatively after the *scatter* function with:
```
plx.set_point_color('red')
```
To access the available color codes use the commands:
```
plx.get_colors()
```
You can access the value set for the option *point_color* with the following command:
```
plx.get_point_color()
```



Line Style
==========

In order to chose whatever or not to plot lines between the data points use a command like this:
```
plx.scatter(x, y, line=True)
```
the default value is False for the *scatter* function and True for the *plot* function. Alternatively after the *scatter* function with:
```
plx.set_line(True)
```
You can access the value set for the option *line* with the following command:
```
plx.get_line()
```
In order to change the marker used to draw the lines use a command like this:
```
plx.scatter(x, y, line_marker='*')
```
where only single characters are allowed; the default value is •. Alternatively after the *scatter* function with:
```
plx.set_line_marker('*')
```
You can access the value set for the option *line_marker* with the following command:
```
plx.get_line_marker()
```
In order to change the color of the marker used for the lines use a command like this:
```
plx.scatter(x, y, line_color='red')
```
or, alternatively after the *scatter* function with:
```
plx.set_line_color('red')
```
To access the available color codes use the commands:
```
plx.get_colors()
```
You can access the value set for the option *line_color* with the following command:
```
plx.get_line_color()
```



Plot Axes
=========

You could chose whatever or not to show the *x* and *y* axes with a command like this:
```
plx.scatter(x, y, axes=[True, False])
```
which would show the *x* axis while hiding the *y* axis.

Alternatively you could use one of the following formats:
```
plx.scatter(x, y, axes=True)
plx.scatter(x, y, axes=False)
```
which would add, in the first case, and remove, in the second, both axes.

Alternatively the same options could be provided outside the *scatter* function, in this way:
```
plx.scatter(x, y)
plx.set_axes([True, False])
```
You can access the value set for the option *axes* with the following command:
```
plx.get_axes()
```
In order to change the axes color (including axes ticks and equations, when present) use a command like this:
```
plx.scatter(x, y, axes_color='blue')
plx.scatter(x, y, axes_color='igreen')
```
which would set the color of the axes to blue, in the first case, and inverted green in the second.

To access the available color codes use the following command:
```
plx.get_colors()
```
You can access the value set for the option *axes_color* with the following command:
```
plx.get_axes_color()
```


Axes Ticks
==========

You could chose whatever or not to show the *x* and *y* axes numerical ticks with commands like these:
```
plx.scatter(x, y, ticks=[True, False])
plx.scatter(x, y, ticks=True)
plx.scatter(x, y, ticks=False)
```
or, alternatively after the *scatter* function with a command like this:
```
plx.set_ticks([True, False])
```
You can access the value set for the option *ticks* with the following command:
```
plx.get_ticks()
```
In order to set the spacing between *x* and *y* ticks use a command like this:
```
plx.scatter(x, y, spacing=5)
plx.scatter(x, y, spacing=[5, 8])
```
where only positive integers are allowed; a list of two numbers would set the spacing of the *x* and *y* ticks independently. Alternatively after the *scatter* function with:
```
plx.set_spacing([True, False])
```
You can access the value set for the option *spacing* with the following command:
```
plx.get_spacing()
```


Equations
=========

In order to chose whatever or not to show the equations at the end of the plot use a command like this:
```
plx.scatter(x, y, equations=True)
plx.scatter(x, y, equations=False)
```
or, alternatively after the *scatter* function with:
```
plx.set_equations(False)
```
You can access the value set for the option *equations* with the following command:
```
plx.get_equations()
```
In order to set the number of decimal points in the equations use a command like this:
```
plx.scatter(x, y, decimals=4)
```
where only positive integers are allowed.

You can access the value set for the option *decimals* with the following command:
```
plx.get_decimals()
```
In order to manually determine the real *x* coordinate from the plot column coordinates use a command like this:
```
plx.get_x_from_xaxis(50)
```
In order to manually determine the real *y* coordinate from the plot row coordinates use a command like this:
```
plx.get_y_from_yaxis(20)
```



Plot Limits
===========

You could define the plot limits with a command like this:
```
plx.scatter(x, y, xlim=[0, 100], ylim=[-1, 1])
```
which would sets the limits on the *x* axis between 0 and 90 and the limits on the *y* axis between -1 and 1. Note that if one of the limits is *None*, that limit would be set automatically.

Alternatively the plot limits could be set outside the *scatter* function, in this way:
```
plx.scatter(x, y)
plx.set_xlim([0, 100])
plx.set_ylim([-1, 1])
```
You can access the plot limit values with the following commands:
```
plx.get_xlim()
plx.get_ylim()
```



Plot Data
=========

In order to access the data being plotted you could use the following command:
```
plx.get_data()
```
which would return the *x* and *y* list provided in the *scatter* or *plot* function.

In order to access the length of the data list being plotted you could use the following command:
```
plx.get_length()
```



Show Options
============

In order to clean the terminal before plotting the data (useful, for example, when continuously plotting data) use a command like this after the *scatter* or *plot* function:
```
plx.show(clear=True)
```
You can access the value set for the option *clear* with the following command:
```
plx.get_clear()
```
When continuously plotting data it may be useful to add a sleeping time between plots in order to minimize undesired screen flashing. Use a command like this:
```
plx.show(sleep=0.01)
plx.show(sleep=False)
```
where the unit is seconds.

You can access the value set for the option *sleep* with the following command:
```
plx.get_sleep()
```


Package Version
===============
In order to check the installed version of the package use a command like this:
```
plx.get_version()
```

Further Documentation
=====================

The full documentation of any of the functions shown above could be accessed using commands like these:
```
print(plx.scatter.__doc__)
print(plx.plot.__doc__)
print(plx.clear.__doc__)
```


Credits
=======
- Author: Savino Piccolomo
- e-mail: [email protected]
Loading

0 comments on commit 34c558c

Please sign in to comment.