Skip to content

ddworken/gnuplot-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

gnuplot-py

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

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)

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages