Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Simple Bar Chart | Bar Charts
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
Visualization in Python with matplotlib

bookSimple 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.

123456789101112131415
# Import library import matplotlib.pyplot as plt # Create data for chart subjects = ['Math', 'Literature', 'History', 'Physics', 'Arts'] grades = [95, 76, 83, 92, 68] # Create Axes and Figure objects fig, ax = plt.subplots() # Initialize bar chart ax.bar(subjects, grades) # Display the plot plt.show()
copy

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 1

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

bookSimple Bar Chart

Deslize para mostrar o menu

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.

123456789101112131415
# Import library import matplotlib.pyplot as plt # Create data for chart subjects = ['Math', 'Literature', 'History', 'Physics', 'Arts'] grades = [95, 76, 83, 92, 68] # Create Axes and Figure objects fig, ax = plt.subplots() # Initialize bar chart ax.bar(subjects, grades) # Display the plot plt.show()
copy

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 2. Capítulo 1
some-alt