使用带有字典的matplotlib在python中绘制散点图
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 
原文地址: http://stackoverflow.com/questions/21822592/
Warning: these are provided under cc-by-sa 4.0 license.  You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Plot a scatter plot in python with matplotlib with dictionary
提问by user3262210
I need help plotting a dictionary, below is the data sample data set. I want to create a scatter graph where x:y are (x,y) coordinates and title'x' would be the legend of the graph.. I want to create graphs of below data set so combine all the below data in one graph.
我需要帮助绘制字典,下面是数据示例数据集。我想创建一个散点图,其中 x:y 是 (x,y) 坐标,标题'x' 将是该图的图例。 .
for example: plot title1':{x:y, x:y} in red( or any other color) make a legend(key) saying red(or whatever color) is for title1,
例如:以红色(或任何其他颜色)绘制 title1':{x:y, x:y} 制作一个图例(键),说红色(或任何颜色)用于 title1,
do same for title2:{x:y, x:y} (in a different color)....and so on.
对 title2:{x:y, x:y} (以不同的颜色)做同样的事情......等等。
Any help would be greatly appreciated. Thank you.
任何帮助将不胜感激。谢谢你。
data = {'title1':{x:y, x:y},title2:{x:y,x:y,x:y},'title3':{x:y,x:y}....}
I also followed this advise, but it was for individual graph. Plotting dictionaries within a dictionary in Myplotlib python
我也遵循了这个建议,但它是针对个人图表的。 在 Myplotlib python 中的字典中绘制字典
This is what I have tried, i don't have much experience in matplotlib and couldn't find anything useful onlline. Any help would be greatly appreciated.
这是我尝试过的,我在 matplotlib 方面没有太多经验,也找不到任何有用的在线信息。任何帮助将不胜感激。
import matplotlib.pyplot as plt
import numpy as np
d ={'5000cca234c1c445': {382877: 7, 382919: 3},
'5000cca234c94a2e': {382873: 1, 382886: 1},
'5000cca234c89421': {383173: 1, 383183: 2, 382917: 1, 382911: 1},
'5000cca234c5d43a': {382889: 1, 382915: 1, 382917: 8},
'5000cca234c56488': {382909: 2, 382911: 5}}
xval = []
yval= []
ttle = []
print d
for title, data_dict in d.iteritems():
   x = data_dict.keys()
   #print 'title is', title
   #print 'printing x values',x   
   xval = xval + x
   print xval
   y = data_dict.values()
   yval = yval+y
   ttle.append(title)
   print  yval
#print 'printing y values', y         
#plt.figure()
print xval
print yval
print ttle
plt.scatter(xval,yval)
plt.show()
采纳答案by Alvaro Fuentes
You can try to plot on the loop, and after that show the legend, something like this:
您可以尝试在循环上绘图,然后显示图例,如下所示:
import matplotlib.pyplot as plt
d ={'5000cca234c1c445': {382877: 7, 382919: 3},
'5000cca234c94a2e': {382873: 1, 382886: 1},
'5000cca234c89421': {383173: 1, 383183: 2, 382917: 1, 382911: 1},
'5000cca234c5d43a': {382889: 1, 382915: 1, 382917: 8},
'5000cca234c56488': {382909: 2, 382911: 5}}
colors = list("rgbcmyk")
for data_dict in d.values():
   x = data_dict.keys()
   y = data_dict.values()
   plt.scatter(x,y,color=colors.pop())
plt.legend(d.keys())
plt.show()

