Pandas(python)plot()没有传说

时间:2014-01-01 04:17:37

标签: python matplotlib plot pandas

在python中使用pandas库并使用

.plot()

在数据框上,如何在没有图例的情况下显示图?

1 个答案:

答案 0 :(得分:66)

函数中有一个与图例对应的参数;默认情况下为True

df.plot(legend=False)

以下是.plot()方法的定义

  

定义:df.plot(frame = None,x = None,y = None,subplots = False,sharex = True,sharey = False,use_index = True,figsize = None,grid = None,legend = True,rot = None,ax = None,style = None,title = None,xlim = None,ylim = None,logx = False,logy = False,xticks = None,yticks = None,kind ='line',sort_columns = False,fontsize =无,secondary_y = False,** kwds)