All Projects → kressi → terminalplot

kressi / terminalplot

Licence: GPL-3.0 license
No description or website provided.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to terminalplot

distfit
distfit is a python library for probability density fitting.
Stars: ✭ 250 (+525%)
Mutual labels:  pypi, plot
Termplotlib
Plotting on the command line
Stars: ✭ 294 (+635%)
Mutual labels:  pypi, plot
cibuildwheel
🎡 Build Python wheels for all the platforms on CI with minimal configuration.
Stars: ✭ 1,350 (+3275%)
Mutual labels:  travis-ci, pypi
Cibuildwheel
🎡 Build Python wheels for all the platforms on CI with minimal configuration.
Stars: ✭ 620 (+1450%)
Mutual labels:  travis-ci, pypi
pygitrepo-project
A simplified, minimal but powerful Python Git Project development workflow CLI tools.
Stars: ✭ 32 (-20%)
Mutual labels:  travis-ci, pypi
asyncio-socks-server
A SOCKS proxy server implemented with the powerful python cooperative concurrency framework asyncio.
Stars: ✭ 154 (+285%)
Mutual labels:  pypi
noise-php
A starter-kit for your PHP project.
Stars: ✭ 52 (+30%)
Mutual labels:  travis-ci
ci playground
Playground for Cloud CI development for C++
Stars: ✭ 23 (-42.5%)
Mutual labels:  travis-ci
mltb
Machine Learning Tool Box
Stars: ✭ 25 (-37.5%)
Mutual labels:  plot
HABApp
Easy home automation with MQTT and/or openHAB
Stars: ✭ 35 (-12.5%)
Mutual labels:  pypi
twitivity
🐍 Twitter Accounts Activity API Client Library for Python
Stars: ✭ 49 (+22.5%)
Mutual labels:  pypi
react-simple-boilerplate
Simple React Boilerplate with Webpack, Github Actions, Scss, Lazy Loading etc....
Stars: ✭ 38 (-5%)
Mutual labels:  travis-ci
upcloud-python-api
Python client for UpCloud's API
Stars: ✭ 51 (+27.5%)
Mutual labels:  pypi
pypi-tools
Command-line Python scripts to do things with PyPI
Stars: ✭ 18 (-55%)
Mutual labels:  pypi
export-dynamodb
Export Amazon DynamoDb to CSV or JSON
Stars: ✭ 52 (+30%)
Mutual labels:  pypi
svg plot
Plot data in SVG format using C++ (header only) library .
Stars: ✭ 20 (-50%)
Mutual labels:  plot
pandoc-latex-environment
Pandoc filter for adding LaTeX environement on specific div
Stars: ✭ 27 (-32.5%)
Mutual labels:  pypi
dockemacs
Dockerized emacs ...
Stars: ✭ 25 (-37.5%)
Mutual labels:  travis-ci
ertis-auth
Generic token generator and validator service like auth
Stars: ✭ 28 (-30%)
Mutual labels:  pypi
tyr
A CLI to generate node.js applications in an opinionated way.
Stars: ✭ 28 (-30%)
Mutual labels:  travis-ci

terminalplot

Build Status PyPi Version Code Climate Test Coverage

Terminalplot is a minimalistic packgage, that only prints points to the terminal. It does not have any dependencies.

Console plot

Installation

pip install terminalplot

Usage

Command Line

Get size of terminal emulator (tty):

$ plot -s
Rows: 25, Columns: 80

Plot some points:

$ plot -x '-1 0 1 2 3 4' -y '0.1 0.2 0.23 0.234 0.24'

API

Plotting a graph

from terminalplot import plot
x = range(100)
y = [i**2 for i in x]
plot(x, y)

Get size of current terminal window

from terminalplot import get_terminal_size
get_terminal_size()
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].