Pyplot自动排序y值

2024-04-29 16:42:58 发布

您现在位置:Python中文网/ 问答频道 /正文

我对我最喜欢的节目中说的话进行了频率分析。我在做一个绘图。barh(s1e1_y,s1e1_x),但它是按单词而不是值排序的。 >>> s1e1_y的输出 是

['know', 'go', 'now', 'here', 'gonna', 'can', 'them', 'think', 'come', 'time', 'got', 'elliot', 'talk', 'out', 'night', 'been', 'then', 'need', 'world', "what's"]

以及>>>s1e1_x

[42, 30, 26, 25, 24, 22, 20, 19, 19, 18, 18, 18, 17, 17, 15, 15, 14, 14, 13, 13] 当实际绘制绘图时,即使绘图列表未排序,也会按字母顺序对图表的y轴刻度进行排序。。。

s1e1_wordlist = []
s1e1_count = []
for word, count in s1e01:
    if((word[:-1] in excluded_words) == False):
        s1e1_wordlist.append(word[:-1])
        s1e1_count.append(int(count))
s1e1_sorted = sorted(list(sorted(zip(s1e1_count, s1e1_wordlist))), 
reverse=True)
s1e1_20 = []
for i in range(0,20):
    s1e1_20.append(s1e1_sorted[i])
s1e1_x = []
s1e1_y = []
for count, word in s1e1_20:
    s1e1_x.append(word)
    s1e1_y.append(count)
plot.figure(1, figsize=(20,20))
plot.subplot(341)
plot.title('Season1 : Episode 1')
plot.tick_params(axis='y',labelsize=8)
plot.barh(s1e1_x, s1e1_y)

Tags: in绘图for排序plotcount单词节目
2条回答

从matplotlib 2.1开始,可以绘制分类变量。这允许绘制plt.bar(["apple","cherry","banana"], [1,2,3])。但是在matplotlib 2.1中,输出将按类别排序,因此按字母顺序排序。这被认为是错误,并在matplotlib 2.2中进行了更改(请参见this PR)。

因此,在matplotlib 2.2中,条形图将保持顺序。 在matplotlib 2.1中,您可以将数据打印为数字数据,就像在2.1之前的任何版本中一样。这意味着根据索引绘制数字并相应地设置标签。

w = ['know', 'go', 'now', 'here', 'gonna', 'can', 'them', 'think', 'come', 
 'time', 'got', 'elliot', 'talk', 'out', 'night', 'been', 'then', 'need', 
 'world', "what's"]
n = [42, 30, 26, 25, 24, 22, 20, 19, 19, 18, 18, 18, 17, 17, 15, 15, 14, 14, 13, 13]

import matplotlib.pyplot as plt
import numpy as np

plt.barh(range(len(w)),n)
plt.yticks(range(len(w)),w)

plt.show()

enter image description here

好吧,你的例子中似乎有很多虚假代码,这些代码与你所描述的问题无关,但是假设你不希望y轴按字母顺序排序,那么你需要将两个列表压缩成一个数据帧,然后按如下方式绘制数据帧

df = pd.DataFrame(list(zip(s1e1_y,s1e1_x))).set_index(1)

df.plot.barh()

这将产生以下结果

enter image description here

相关问题 更多 >