Create a Filtered 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")
dbt = epw.dry_bulb_temperaturedbt_work_hours = dbt.filter_by_analysis_period(
AnalysisPeriod(1, 1, 9, 12, 31, 17)).filter_by_conditional_statement('a>=18 and a<=24')figure = dbt_work_hours.heat_map()
Last updated
Was this helpful?
