In [1]:
%matplotlib inline

In [2]:
import msgpack

In [11]:
with open("LogisticMap.msg", "rb") as f:
    infof_logistic = pd.DataFrame(msgpack.unpack(f))

In [8]:
with open("TentMap.msg", "rb") as f:
    infof_tent = pd.DataFrame(msgpack.unpack(f))

In [6]:
np.log(2)


Out[6]:
0.69314718055994529

In [10]:
infof_tent.plot()


Out[10]:
<matplotlib.axes._subplots.AxesSubplot at 0x7fdfb8e217f0>

In [12]:
infof_logistic.plot()


Out[12]:
<matplotlib.axes._subplots.AxesSubplot at 0x7fdfb88d72b0>