散点图上的连接点-matplotlib

时间:2019-06-04 19:45:44

标签: python matplotlib graph nltk scatter-plot

这不是重复的问题,尽管这里有类似的问题。

我有以下代码:

colors = ['white','gold','silver','grey','lavender','pink','red','green','blue']
i = 0
for i in range(len(chapterPosition)):
  for j in range(len(colorCount)):
    plt.scatter(chapterPosition[i], colorCount[i][j], c = colors[j], edgecolor = 'black')

其中,chapterPosition是浮点列表,colorCount是列表列表。两章的位置colorCount的内部列表的长度都相同。

运行此代码后,得到以下图形: Scatter Plot

我想用一条线连接所有红点,用一条线连接所有绿点,等等。

我该怎么做? 谢谢

0 个答案:

没有答案