I need to use nltk.pos_tag() together with bigrams and here's my code:
from nltk.util import ngrams
from collections import Counter
bigrams = list(ngrams(all_file_data, 2))
print(bigrams[:50])
print(Counter(bigrams).most_common(30))
The output is:
[('SUBDELAGATION', 'ON'), ('ON', 'AGENDA'), ('AGENDA', 'ITEM'), ('ITEM', '3'), ...]
How can I get pos_tag along with the result of bigram frequencies like in the picture attached?

Try this:
[out]: