Where to fine datasets

In this video xdata.csv and ydata.csv has been used. Where I can download these file. Please provide me link to download.

hi sarvesh ;
sorry for late response
plz generate ur own dataset using these commands
this will work fine
from sklearn.datasets import make_blobs
X,y = make_blobs(n_samples=1000, centers=5)
print (X.shape, y.shape)

and to visulaise the spread use:
plt.scatter(X[:,0],X[:,1])