#!/usr/bin/env python # coding: utf-8 # In[1]: from IPython.display import HTML from IPython.display import Image Image(filename='logo_obs.png',width=100,height=100) # In[2]: from IPython.display import HTML HTML(''' .''') # In[3]: Image(filename='logo_uninorte.png',width=100,height=100) # # Gráficos de densidad de probabilidad # A continuación se muestran gráficos de estimación de densidad de Kernel para los niveles de las estaciones TEBSA, San Pedrito, Calamar, Tenerife, Plato y Magangué, Barbosa, Coyongal, Armenia, Río Nuevo, Las Palomas, Las Aguadas, El Banco, Peñoncito, Regidor, La Gloria, Gamarra, Gamarra Aut., El Contento, Sitio Nuevo, San Pablo, Puerto Wilches, Barrancabermeja, El Tagual y Puerto Berrío, así como para el caudal medio aproximado en el sector de las Flores. Las estimaciones para el calculo de la probabilidad fueron hechas teniendo en cuenta la serie histórica disponible para cada estación, la curva de gasto y la estacionalidad presente para cada una de ellas. Los colores representan la probabilidad acumulada. # # TEBSA (1996 - 2020) # In[2]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPTEBSA.png',width=1000,height=1000) # # San Pedrito (1979 - 2020) # In[3]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPSanP.png',width=1000,height=1000) # # Calamar (1967 - 2020) # In[4]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPCalamar.png',width=1000,height=1000) # # Tenerife (1973 - 2020) # In[5]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPTenerife.png',width=1000,height=1000) # # Plato (1976 - 2020) # In[6]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPPlato.png',width=1000,height=1000) # # Magangué (1973 - 2020) # In[7]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPMagangue.png',width=1000,height=1000) # # Barbosa (1973 - 2020) # In[8]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPBarbosa.png',width=1000,height=1000) # # Coyongal (1975 - 2020) # In[9]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPCoyongal.png',width=1000,height=1000) # # Armenia (1973 - 2020) # In[10]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPArmenia.png',width=1000,height=1000) # # Río Nuevo (1974 - 2020) # In[11]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPRionuevo.png',width=1000,height=1000) # # Las Palomas (1973 - 2020) # In[12]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPLasPalomas.png',width=1000,height=1000) # # Las Aguadas (1973 - 2020) # In[13]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPLasAguadas.png',width=1000,height=1000) # # El Banco (1972 - 2020) # In[14]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPElBanco.png',width=1000,height=1000) # # Peñoncito (1972 - 2019) # In[15]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPPeñoncito.png',width=1000,height=1000) # # Regidor (1973 - 2019) # In[16]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPRegidor.png',width=1000,height=1000) # # La Gloria (1991 - 2020) # In[17]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPLaGloria.png',width=1000,height=1000) # # Gamarra (1981 - 2019) # In[18]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPGamarra.png',width=1000,height=1000) # # Gamarra AUT (2013 - 2020) # In[19]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPGamarraAUT.png',width=1000,height=1000) # # El Contento (1974 - 2020) # In[20]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPElContento.png',width=1000,height=1000) # # El Sitio Nuevo (1979 - 2020) # In[21]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPSitioNuevo.png',width=1000,height=1000) # # San Pablo (1977 - 2020) # In[22]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPSanPablo.png',width=1000,height=1000) # # Puerto Wilches (1973 - 2020) # In[23]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPPtoWilches.png',width=1000,height=1000) # # Barrancabermeja (1971 - 2020) # In[24]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPBarrancabermeja.png',width=1000,height=1000) # # El Tagual (2008 - 2019) # In[25]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPElTagual.png',width=1000,height=1000) # # Puerto Berrío (1972 - 2020) # In[26]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPPuertoBerrio.png',width=1000,height=1000) # # Caudal medio aproximado sector Las Flores (1967-2020) # In[27]: from IPython.display import HTML from IPython.display import Image Image(filename='DistPCaudales.png',width=1000,height=1000) # In[ ]: # In[ ]: # In[ ]: