How to suppress legend in pandas .plot()
In order to suppress the legend when using pandas.plot()
, use
legend=False
as an Argument to .plot()
, for example:
df.plot(legend=False)
In order to suppress the legend when using pandas.plot()
, use
legend=False
as an Argument to .plot()
, for example:
df.plot(legend=False)