bootstrap

This commit is contained in:
Pritimay Sarkar
2023-10-09 00:54:35 +05:30
parent 1691442cc1
commit 77785f638f

8
scripts/bootstrap.py Normal file
View File

@@ -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()