More of the same
This commit is contained in:
@@ -10,13 +10,13 @@ stop_words = [(), None]
|
|||||||
non_stop_words = [(), lambda : \
|
non_stop_words = [(), lambda : \
|
||||||
map(lambda w : \
|
map(lambda w : \
|
||||||
w if w not in stop_words[0] else '',\
|
w if w not in stop_words[0] else '',\
|
||||||
all_words[0])]
|
all_words[0])]
|
||||||
unique_words = [(),lambda :
|
unique_words = [(),lambda :
|
||||||
set([w for w in non_stop_words[0] if w!=''])]
|
set([w for w in non_stop_words[0] if w!=''])]
|
||||||
counts = [(), lambda :
|
counts = [(), lambda :
|
||||||
map(lambda w, word_list : word_list.count(w), \
|
map(lambda w, word_list : word_list.count(w), \
|
||||||
unique_words[0], \
|
unique_words[0], \
|
||||||
itertools.repeat(non_stop_words[0], \
|
itertools.repeat(non_stop_words[0], \
|
||||||
len(unique_words[0])))]
|
len(unique_words[0])))]
|
||||||
sorted_data = [(), lambda : sorted(zip(list(unique_words[0]), \
|
sorted_data = [(), lambda : sorted(zip(list(unique_words[0]), \
|
||||||
counts[0]), \
|
counts[0]), \
|
||||||
|
|||||||
Reference in New Issue
Block a user