我正在编写一个小的python程序进行频率分析,我想知道如何将所有bin显示在x轴上,而不是以5为增量。还有一种方法可以显示类似“ x轴上的数字是“”而不是数字?

码:

print "Please specify the file to analyse."
FileContents = FileToIntArray()

# Count letter occurances in file
letterCounts = zeros(26).tolist()
for x in FileContents:
    i = AlphaNum.index(x)
    letterCounts[i] = letterCounts[i] + 1

# Plot histogram of counts
print "" # Newline
title("Absolute Frequencies")
xlabel("Letters A-B (Where A = 0 & Z = 25)")
ylabel("Letter Occurences")
hist(letterCounts, bins=AlphaNum)
show()


谢谢,
亚历克斯

最佳答案

您可以使用xticks

xticks(arange(len(AlphaNum)),AlphaNum)

08-28 14:11