How can I accomplish this in Python? Combining Lists of Word Frequency Data
Let's say I have two lists A and B and both contain the words& frequencies of a file in descending frequency order, how can I do what's done in the question in Python?
from FrequentWords import *
from WordFrequencies import * # makes the list with words&frequencies
L = WordFrequencies('file.txt')
words1 = L[0]
freqs1 = L[1]
L1 = computeWordFrequencies('file1.txt')
words2 = L1[0]
freqs2 = L1[1]
words = zip(*sorted(zip(L,L1)))
both1 = sorted(freqs1+freqs2,reverse=True)
common_words = set(words1) & set(words2)
frequency_common_words = both1