Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aishik rakshit 190122002 w08 #356

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c4af94b
Update README.md
Apr 2, 2020
dc718d1
Add files via upload
Apr 3, 2020
e96ff4b
Merge pull request #1 from IITGuwahati-AI/master
Apr 11, 2020
c5789bc
Aishik Rakshit 19012002 W02
Apr 11, 2020
8d21d45
Aishik RAkshit 190122002 week 2 assignment
Apr 11, 2020
072e0ce
Merge pull request #2 from Aishik13012002/Aishik13012002-patch-1
Apr 11, 2020
1b31bea
Merge pull request #3 from IITGuwahati-AI/master
Apr 17, 2020
903c791
AISHIK RAKSHIT 190122002 W03
Apr 18, 2020
be99663
AISHIK RAKSHIT 190122002 W03
Apr 18, 2020
e395487
AISHIK RAKSHIT 190122002 W03
Apr 18, 2020
6380b84
Merge pull request #4 from Aishik13012002/AISHIK-RASKHIT-190122002-W03
Apr 18, 2020
2b12225
Merge pull request #5 from IITGuwahati-AI/master
Apr 25, 2020
51eff84
Aishik Rakshit 190122002 w04
Apr 25, 2020
3ce3963
Merge pull request #6 from Aishik13012002/Aishik-RAkshit-190122002-w04
Apr 25, 2020
3c28a2a
AIshik Rakshit 190122002 w04
Apr 25, 2020
d67114e
Merge pull request #7 from Aishik13012002/Aishik-rakshit-190122002-w04
Apr 25, 2020
0a0bdc2
Merge pull request #8 from IITGuwahati-AI/master
Apr 28, 2020
f549cfb
Create submission.cpython-38.pyc
Apr 28, 2020
571edea
Merge branch 'master' of https://github.com/Aishik13012002/Learning-C…
Apr 28, 2020
408c4f9
aishik rakshit 190122002 w05
May 2, 2020
c33d707
Merge pull request #9 from Aishik13012002/Aishik-rakshit-190122002-w05
May 2, 2020
09845c7
Merge pull request #10 from IITGuwahati-AI/master
May 5, 2020
289ed05
Merge branch 'master' of https://github.com/Aishik13012002/Learning-C…
May 7, 2020
506a46f
week 6 Aishik Rakshit 190122002
May 8, 2020
723b435
Merge pull request #11 from Aishik13012002/Aishik-Rakshit-190122002-w06
May 8, 2020
aa5af7d
Merge pull request #12 from IITGuwahati-AI/master
May 11, 2020
fdae28c
Aishik Rakshit 190122002 w07
May 11, 2020
b742d49
Merge pull request #13 from Aishik13012002/Aishik-Rakshit-190122002-w07
May 11, 2020
4723459
Merge pull request #14 from IITGuwahati-AI/master
Jul 19, 2020
7c7ab19
Aishik Rakshit 190122002 w08
Jul 19, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
526 changes: 526 additions & 0 deletions AishikRakshit_190122002_W03.ipynb

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions Phase 3 - 2020 (Summer)/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Aishik Rakshit
190122002
CST
https://github.com/Aishik13012002


# IITG.ai

- Resources include course/blog/tutorial/research paper links as well as details regarding graded assignments as well as prospective project ideas.
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
RESULT



THE two features that describe the two labels perfectly are feature 3 and 8

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# -*- coding: utf-8 -*-
"""
Created on Fri Apr 3 14:54:41 2020

@author: LENOVO
"""

# -*- coding: utf-8 -*-
"""
Created on Thu Apr 2 19:13:26 2020

@author: LENOVO
"""

import numpy as np
import pandas as pd
from matplotlib import pyplot as plt
plt.style.use('ggplot')


ds = pd.read_csv(r"C:\Users\LENOVO\Desktop\data.csv", delimiter='\t')
ds1=ds.loc[ds['Label']==1]
ds2=ds.loc[ds['Label']==2]


plt.rcParams['figure.figsize']=(30,30)
fig, axes=plt.subplots(10,10)




for i in range(1,11):
for j in range(1,11):
if(i!=j):
x=str(i)
y=str(j)
ds1=ds.loc[ds['Label']==1].sort_values(by=x)
ds2=ds.loc[ds['Label']==2].sort_values(by=x)
x_c1=ds1[[x]]
y_c1=ds1[[y]]
x_c2=ds2[[x]]
y_c2=ds2[[y]]
axes[i-1][j-1].plot(x_c1,y_c1,'r',label='1')
axes[i-1][j-1].plot(x_c2,y_c2,'b',label='2')
axes[i-1][j-1].set_xlabel(x)
axes[i-1][j-1].set_ylabel(y)


fig.tight_layout(pad=2.0)
plt.show()
Loading