#!/usr/bin/env python

#
# $Id: ts.py,v 1.1 2018/10/01 13:17:02 dintrans Exp $
# Plot a time_series.dat file
#

from pencil import read_ts
import pylab as P

ts=read_ts()
ts.plot()

P.ioff()
P.show()

