Search Result

Collapse
2 results in 0.0013 seconds.
Keywords
Members
Tags
graphing
  •  

  • Realtime Graphing in Gnuplot.py with variable number of Gnuplot.Data() objects

    Hi all,
    I'm building a tool that interfaces with a serial port that spits out data. I want to graph the data real time and have chose Gnuplot.py

    The number of data 'files' to graph will be flexible but known before execution of the program (up to 6 currently but this could change). I want to write it so that the number a Data objects plotted is flexible without a cascade of if + elif statments as I have already written. ...
    See more | Go to post

  • Make a scatter plot of a list of ordered pairs

    I have a list of ordered pairs and I need to make a scatter plot in python. The scatter plot needs to appear in a second window. If necessary I could graph two lists versus each-other instead of a list of ordered pairs. Here is the program that I have so far.
    Code:
    from visual import *
    from visual.graph import *
    import random
    import math
    
    scene.height = scene.width = 800
    bob = gdisplay(width = 470, height
    ...
    See more | Go to post
    Last edited by bvdet; Mar 25 '10, 02:05 PM. Reason: Add code tags
Working...