Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- """Graficar una serie dentro de sus límites"""
- import matplotlib.pyplot as plt
- # Datos: valores de Hemoglobina Corpuscular Media
- serie = [32.70, 32.80, 32.40, 32.10, 32.70, 32.10, 30.60, 33.50, 33.10, 31.90, 32.90]
- LIM_INF = 27.0
- LIM_SUP = 32.0
- # Crear un rango de índices para las x
- indices = range(1, len(serie) + 1)
- # Crear el gráfico de línea
- plt.plot(indices, serie, label='Serie')
- # Dibujar líneas horizontales para los límites
- plt.axhline(y=LIM_INF, color='r', linestyle='--', label='Límite Inferior')
- plt.axhline(y=LIM_SUP, color='g', linestyle='--', label='Límite Superior')
- # Configurar etiquetas y título
- plt.xlabel('Índices')
- plt.ylabel('Valores')
- plt.title('Gráfico de Hemoglobina Corpuscular Media')
- plt.legend()
- # Mostrar el gráfico
- plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement