Hi Lee,
Maybe this example will get you over the hill to having a plot:
In [1]: data = """obsid redshift X Y object
...: 3102 0.32 4167 4085 Q1250+568-A
...: 877 0.22 4378 3892 "Source 82"
...: """
In [2]: from astropy.table import Table
In [3]: import matplotlib.pyplot as plt
In [4]: %matplotlib # Use "%matplotlib inline" in jupyter notebook
Using matplotlib backend: MacOSX
In [5]: t = Table.read(data, format='ascii')
In [6]: plt.plot(t['X'], t['redshift'])
Out[6]: [<matplotlib.lines.Line2D at 0x7fe97954dc10>]
Best,
Tom