
# plotPairs.py
# input: marijuana.txt

import matplotlib.pyplot as plt
from reader import *


fnm = input("fnm? ")
table = readInt2D(readVals(fnm))

plt.scatter(table[0], table[1])
plt.axhline(0) # x = 0
plt.axvline(0) # y = 0
plt.title("Plot of " + fnm)
plt.show()