HI
Using KNN classifier in Python we can do classification of data.
HI
Using KNN classifier in Python we can do classification of data.
Hi,
We can use pandas for reading csv file.
Using csv package we can write to another csv file.
Hi All,
While analising data using Google colab, it is better to use google colab as the data will be permanently saved in drive.
Hi all,
Create a csv file like given below
No,Name,Place
1,HUP,Kollam
2,Abc,Test
3,Raj,Klm
#Program 1
#Program 2
Hi all,
Use this code for NBC which removes stop words
-------------------------------------------------------------------------------
Hi,
Here one list is loaded with cubes. One element is edited intentionally.
a=[]
for i in range(10):
a.append(i**3)
a[4]=10
print(a)
a.sort(reverse=True)
print(a)
Hi all
Array can be implemented in Python using two methods
####Numpy
import numpy as np
hup=np.arange(10)
hup=np.zeros(10)
for i in range(10):
hup[i]=i**2
print(hup)
############
#Using List
a=[]
for i in range(10):
a.append(i**3)
print(a)