Letter frequencies: plot a histogram ordering the values PYTHON
问题 What I am trying to do is to analyse the frequency of the letters in a text. As an example, I will use here a small sentence, but all that is thought to analyse huge texts (so it's better to be efficient). Well, I have the following text: test = "quatre jutges dun jutjat mengen fetge dun penjat" Then I created a function which counts the frequencies def create_dictionary2(txt): dictionary = {} i=0 for x in set(txt): dictionary[x] = txt.count(x)/len(txt) return dictionary And then import numpy