Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Simple Bar Chart | Bar Charts
course content

Зміст курсу

Visualization in Python with matplotlib

Simple Bar ChartSimple Bar Chart

Welcome to the second section! You've done great work so far! In this section, we will consider another common type of chart - this is a bar chart.

The concept for creating a bar chart is the same as for line plot: initialize Axes and Figure objects using the .subplots() method and then apply .bar() function to Axes object. The first argument (x) of the function is the x coordinates of the bar, the second (height) - the heights of the bars. For example, let's visualize some abstract subject grades.

Все було зрозуміло?

Секція 2. Розділ 1
course content

Зміст курсу

Visualization in Python with matplotlib

Simple Bar ChartSimple Bar Chart

Welcome to the second section! You've done great work so far! In this section, we will consider another common type of chart - this is a bar chart.

The concept for creating a bar chart is the same as for line plot: initialize Axes and Figure objects using the .subplots() method and then apply .bar() function to Axes object. The first argument (x) of the function is the x coordinates of the bar, the second (height) - the heights of the bars. For example, let's visualize some abstract subject grades.

Все було зрозуміло?

Секція 2. Розділ 1
some-alt