├── .gitattributes ├── .ipynb_checkpoints ├── Untitled-checkpoint.ipynb ├── cluster-checkpoint.ipynb └── kmeans-checkpoint.ipynb ├── .~lock.out.csv# ├── README.md ├── cluster.ipynb ├── out.csv └── student_clustering.csv /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/College-Students-Clustering/HEAD/.gitattributes -------------------------------------------------------------------------------- /.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/College-Students-Clustering/HEAD/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/cluster-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/College-Students-Clustering/HEAD/.ipynb_checkpoints/cluster-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/kmeans-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/College-Students-Clustering/HEAD/.ipynb_checkpoints/kmeans-checkpoint.ipynb -------------------------------------------------------------------------------- /.~lock.out.csv#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/College-Students-Clustering/HEAD/.~lock.out.csv# -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/College-Students-Clustering/HEAD/README.md -------------------------------------------------------------------------------- /cluster.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/College-Students-Clustering/HEAD/cluster.ipynb -------------------------------------------------------------------------------- /out.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/College-Students-Clustering/HEAD/out.csv -------------------------------------------------------------------------------- /student_clustering.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teddyoweh/College-Students-Clustering/HEAD/student_clustering.csv --------------------------------------------------------------------------------