pd.DataFrame.plot
¶
pandas.DataFrame.plot(x=None, y=None, kind="line", figsize=None, xlabel=None, ylabel=None, title=None, legend=True, fontsize=None, xticks=None, yticks=None, ax=None)
Supported Arguments¶
x
: Constant String column name, Constant integery
: Constant String column name, Constant integerkind
: constant String ("line" or "scatter")figsize
: constant numeric tuple (width, height)xlabel
: constant Stringylabel
: constant Stringtitle
: constant Stringlegend
: booleanfontsize
: integerxticks
: Constant Tupleyticks
: Constant Tupleax
: Matplotlib Axes Object