Introduction

This module is in charge of reading the POPS housekeeping file and converting it to a TimeSeries instance.

Imports


In [1]:
from atmPy.instruments.POPS import housekeeping
%matplotlib inline

Reading a housekeeping file


In [2]:
filename = './data/POPS_housekeeping.csv'
hk = housekeeping.read_csv(filename)


reading ./data/POPS_housekeeping.csv

Done! hk is an instance of TimeSeries and you can do with it what ever the instance is capable of (see here). E.g. plot stuff.


In [3]:
out = hk.plot_all()



In [ ]: