Revisamos de forma exhaustivamente cada una de las noticias de nuestra web con el objetivo de enseñarte en todo momento la información certera y certera.
Ejemplo 1: gráfico de barras matplotlib
import matplotlib.pyplot as plt
# Create a Simple Bar Plot of Three People's Ages# Create a List of Labels for x-axis
names =["Brad","Bill","Bob"]# Create a List of Values (Same Length as Names List)
ages =[9,5,10]# Make the Chart
plt.bar(names, ages)# Show the Chart
plt.show()
Ejemplo 2: cómo aumentar el ancho de la barra en python matplogtlib
#plt stands for matplotlib.pyplot#simple way to increase width of a bar in a bar graph#I will eventually write out another solution for increasing width bars.#This solution with solve a more complexed problem for increasing width bars in a bar graph.
plt.bar(x, y, width=30)
Ejemplo 3: gráfico de barras python
import matplotlib.pyplot as plt
import numpy as np
plt.bar(np.arange(0,100),np.arange(0,100))
Te mostramos comentarios y valoraciones
Tienes la opción de patrocinar nuestra investigación añadiendo un comentario y dejando una valoración te estamos agradecidos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)