diff --git a/scripts/bootstrap.py b/scripts/bootstrap.py new file mode 100644 index 0000000..5fdbf74 --- /dev/null +++ b/scripts/bootstrap.py @@ -0,0 +1,8 @@ +import pandas as pd +import numpy as np +import matplotlib.pyplot as plt + +s = pd.Series(np.random.uniform(size=100)) +s.plot() + +plt.show()