text cell
In [ ]:
# simple stuff for now
def fibo(n):
return 1 if n <= 1 else fibo(n-1) + fibo(n-2)
[fibo(x) for x in range(15)]
In [ ]:
%matplotlib notebook
import numpy as np
import matplotlib.pyplot as plt
plt.ion()
In [1]:
X = np.linspace(-5, 5)
Y = np.exp(X)
plt.plot(X, Y);
prior to 5.6 we were getting very small tables
sample | table |
---|---|
men | 10% |
women | 70% |
children | 30% |