Commit
·
136fbe4
1
Parent(s):
45f48c5
Update app.py
Browse files
app.py
CHANGED
@@ -26,8 +26,10 @@ freq = pandas.Series(' '.join(dataset['name'].astype(str)).split()).value_counts
|
|
26 |
freq
|
27 |
|
28 |
#Identify uncommon words
|
29 |
-
freq1 =
|
30 |
-
|
|
|
|
|
31 |
freq1
|
32 |
|
33 |
from nltk.stem.porter import PorterStemmer
|
|
|
26 |
freq
|
27 |
|
28 |
#Identify uncommon words
|
29 |
+
freq1 = pandas.Series(' '.join(dataset['name'].astype(str)).split()).value_counts()[-20:]
|
30 |
+
|
31 |
+
#freq1 = pandas.Series(' '.join(dataset
|
32 |
+
# ['name']).split()).value_counts()[-20:]
|
33 |
freq1
|
34 |
|
35 |
from nltk.stem.porter import PorterStemmer
|