我有以下数据
$scope.user
我做了这个
id x y name
312 33.76 55.2 aaa
312 33.76 55.2 bbb
443 66.33 11.5 ccc
686 44.55 ddd
222 44.6 eee
423 88.3 23.6 fff
找出受欢迎程度
我找到了使用此代码的唯一ID
popularity = dict(Counter(data['id']))
print "id\tpopularity"
for k, v in popularity.items():
print '{0:.0f}\t{1}'.format(k,v)
现在我想用x和y打印出唯一的id,也就是普及但没有名字,需要忽略没有x或y的列
如何将此代码组合在一起?谢谢!