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)
- Host: GitHub
- URL: https://github.com/ddworken/gnuplot-py
- Owner: ddworken
- License: gpl-2.0
- Created: 2015-02-24T20:02:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-24T20:06:09.000Z (over 11 years ago)
- Last Synced: 2025-03-11T04:27:04.166Z (over 1 year ago)
- Language: Python
- Size: 152 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```