Create a Simple Chart
pip install ladybug-charts streamlitimport streamlit as st
from ladybug.epw import EPWst.set_page_config(
page_title='Dry bulb temperature', layout='wide'
)epw = EPW("file path to epw file")
figure = epw.dry_bulb_temperature.heat_map()st.plotly_chart(figure, use_container_width=True)
Last updated
Was this helpful?
