In [1]:
from ahh import vis, exp

In [2]:
x = exp.arr_1d()
y = exp.arr_1d(y=True)

In [12]:
vis.plot(x, y, 'obs', 'l', x, y, 'model', 'b/k', x, y, 'something', 's/g/--/o',
         title='test', ylabel='ylabel', xlabel='bottom', figsize=(5, 10), stack=True, size=125)


/home/solactus/anaconda3/lib/python3.5/site-packages/matplotlib/cbook/deprecation.py:106: MatplotlibDeprecationWarning: Adding an axes using the same arguments as a previous axes currently reuses the earlier instance.  In a future version, a new instance will always be created and returned.  Meanwhile, this warning can be suppressed, and the future behavior ensured, by passing a unique label to each axes instance.
  warnings.warn(message, mplDeprecation, stacklevel=1)
Out[12]:
[<matplotlib.axes._subplots.AxesSubplot at 0x7f7be1dd4ba8>,
 <matplotlib.axes._subplots.AxesSubplot at 0x7f7be1dd4ba8>,
 <matplotlib.axes._subplots.AxesSubplot at 0x7f7be1dd4ba8>]

In [ ]: