Skip to content

Instantly share code, notes, and snippets.

View shikhargoswami's full-sized avatar
🎯
Focusing

Shikhar Goswami shikhargoswami

🎯
Focusing
  • Indian Institute of Information Technology and Management
  • Gwalior, India
View GitHub Profile
@shikhargoswami
shikhargoswami / pca.py
Created February 4, 2020 21:15
This script is an implementation of Principal Component Analysis
import numpy as np
from sklearn.preprocessing import StandardScaler
class PCA: