“Cómo dibujar un gráfico de barras en Python” Código de respuesta

Cómo trazar la barra en matplotlib

import matplotlib.pyplot as plt 

data = [5., 25., 50., 20.]
plt.bar(range(len(data)),data)
plt.show()

// to set the thickness of a bar, we can set 'width'
// plt.bar(range(len(data)), data, width = 1.)
regexp27

Cómo dibujar un gráfico de barras en Python


import numpy as np
import matplotlib.pyplot as plt
 
  
# creating the dataset
data = {'C':20, 'C++':15, 'Java':30,
        'Python':35}
courses = list(data.keys())
values = list(data.values())
  
fig = plt.figure(figsize = (10, 5))
 
# creating the bar plot
plt.bar(courses, values, color ='maroon',
        width = 0.4)
 
plt.xlabel("Courses offered")
plt.ylabel("No. of students enrolled")
plt.title("Students enrolled in different courses")
plt.show()
Encouraging Elephant

Respuestas similares a “Cómo dibujar un gráfico de barras en Python”

Preguntas similares a “Cómo dibujar un gráfico de barras en Python”

Más respuestas relacionadas con “Cómo dibujar un gráfico de barras en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código