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]:
In [10]:
infof_tent.plot()
Out[10]:
In [12]:
infof_logistic.plot()
Out[12]: