在散点图中使用plt.text()时出错

时间:2017-06-19 19:24:31

标签: python pandas matplotlib

我有一个这样的数据框:

 batsman       balls    runs     strike_rate    6's     4's     Team    Highest_score
A Ashish Reddy  196     280     142.857143      16      15      DC      10
A Ashish Reddy  196     280     142.857143      16      15      SRH     36
A Chandila      7       4       57.142857       0       0       RR      4
A Chopra        75      53      70.666667       7       0       KKR     24...

我想要做的是绘制散点图,以便我可以比较2个击球手。所以我写了一个函数:

batsman1='MS Dhoni'
batsman2='V Kohli'
def batsman_comparator():
    sns.FacetGrid(balls,hue='Team',size=8).map(mlt.scatter, "runs", "strike_rate", alpha=0.5).add_legend()
    bats1=balls[balls['batsman']==batsman1]
    bats2=balls[balls['batsman']==batsman2]
    mlt.scatter(bats1["runs"],bats1["strike_rate"],s=50,c='#55ff33')
    mlt.text(bats1["runs"],bats1["strike_rate"],batsman1,
        fontsize=10, weight='bold', color='#f46d43')
    mlt.scatter(bats2["runs"],bats2["strike_rate"],s=50,c='#f73545')
    mlt.text(bats2["runs"],bats2["strike_rate"], batsman2, 
        fontsize=10, weight='bold', color='#ff58fd')
    mlt.show()
batsman_comparator()    

好的,通过使用该功能,我能够正确地获得图表。 但是当我添加 mlt.text()以显示特定点上击球手的名字时,我收到了一个错误:

TypeError: cannot convert the series to <class 'float'>

现在删除mlt.text()函数正常工作。如何使用mlt.text()显示击球手的名称。任何其他选择也没关系..

1 个答案:

答案 0 :(得分:0)

您似乎没有正确使用mlt.text()。请参阅Matplotlib文档here。我相信text()函数只能应用于单个点。我想你可能会寻找mlt.annotate()This StackOverflow问题可能会有所帮助。