Pandas DataFrame.plot.bar()
plots vertically in the form of rectangular bars.
Syntax: DataFrame.plot.bar (x = None, y = None, ** kwds)
Parameters:
x: ( label or position, optional) Allows plotting of one column versus another. If not specified, the index of the DataFrame is used.
y: (label or position, optional) Allows plotting of one column versus another. If not specified, all numerical columns are used.
** kwds: Additional keyword argumentsReturns: matplotlib.axes.Axes or np.ndarray of them
Example # 1: Using DataFrame.plot.bar ()
to plot vertically in a rectangular shape stripes
|
We will now use the DataFrame.plot.bar ()
function to plot the vertical graph as rectangular bars.
|
Output:
Example # 2: Using DataFrame.plot.bar ()
to plot vertically in the form of rectangular columns.
|
Now we will use the DataFrame.plot.bar () function
to plot the graph vertically as rectangular columns.
|
Output: