Skip to content

Instantly share code, notes, and snippets.

View sourangshupal's full-sized avatar
🎯
Focusing

Sourangshu Pal sourangshupal

🎯
Focusing
  • Bengaluru,India
View GitHub Profile
# It is highly recommended to use Pandas for such data processing problems
import pandas as pd
import numpy as np
dataset = {'feature1': np.random.rand(5000),
'feature2': np.random.rand(5000),
'feature3': np.random.rand(5000)
}