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
...