An open API service indexing awesome lists of open source software.

https://github.com/ddworken/gnuplot-py

A python wrapper around gnuplot for graphing lists in python (without X11 installed)
https://github.com/ddworken/gnuplot-py

Last synced: 10 months ago
JSON representation

A python wrapper around gnuplot for graphing lists in python (without X11 installed)

Awesome Lists containing this project

README

          

# gnuplot-py
A python wrapper around gnuplot for graphing lists in python (without X11 installed)
###Usage

```python
y=[0,1,2,3,4,5]
grapher = grapher(y)
for i in range(5000):
grapher.append(randrange(-10,10))
graph = grapher.getGraph()
for line in graph:
print line
sleep(.01)
```