这不是重复的问题,尽管这里有类似的问题。
我有以下代码:
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
我想用一条线连接所有红点,用一条线连接所有绿点,等等。
我该怎么做? 谢谢