From 77785f638fce5e95e5b90d9ec53dc36825ef9a41 Mon Sep 17 00:00:00 2001 From: Pritimay Sarkar Date: Mon, 9 Oct 2023 00:54:35 +0530 Subject: [PATCH] bootstrap --- scripts/bootstrap.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 scripts/bootstrap.py 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()