In [1]:
from atmPy.instruments.ULR import ULR
import pylab as plt
from atmPy.tools import plt_tools

In [2]:
%matplotlib inline
plt_tools.setRcParams(plt)

In [3]:
fname = 'data/ulr.txt'
ulr = ULR.ULR(fname)
data = ulr.data

In [ ]:
data.

In [4]:
ax = data.PhotoA.plot()
ax = data.PhotoAsh.plot()


/opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/matplotlib/figure.py:1653: UserWarning: This figure includes Axes that are not compatible with tight_layout, so its results might be incorrect.
  warnings.warn("This figure includes Axes that are not "

In [14]:
ax = data.BaromPr.dropna().plot()



In [15]:
ax = data.azimuth.dropna().plot()