所以,我正在同一轴上绘制两个数据帧:
dataframe1.plot(ax=ax1, marker='o', linestyle='None')
dataframe1fit.plot(ax=ax1, legend=False)
仅为第一个数据帧提供legened,但未在图例中显示任何标记(仅限图例传递文本),因此,如果我放置:
ax1.legend(numpoints=1)
标记添加到图例中,但dataframe1fit图的图例条目也可见(legend = False无效)。那么,如何在ax1上设置图例参数而不影响其他数据框的图例可见性呢?
答案 0 :(得分:0)
dataframe1fit.plot(ax = ax1,legend = None)