Hola usuario de nuestro sitio web, hemos encontrado la respuesta a lo que necesitas, has scroll y la verás a continuación.
Ejemplo 1: cómo trazar una 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.)
Ejemplo 2: 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()
Si haces scroll puedes encontrar las notas de otros sys admins, tú también eres capaz dejar el tuyo si te apetece.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)