Nirmal16 commited on
Commit
a89776a
·
verified ·
1 Parent(s): 17ce14a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -59,13 +59,13 @@ bar_chart = (
59
  )
60
 
61
  # Combined Chart
62
- chart = alt.vconcat(scatter, bar_chart,title="Building Inventory Insights")
63
 
64
  # Tabs for Themes
65
  tab1, tab2 = st.tabs(["Streamlit Theme", "Altair Native Theme"])
66
 
67
  with tab1:
68
- st.altair_chart(scatter, theme="streamlit", use_container_width=True)
69
  st.caption("""
70
  This scatter plot visualizes the distribution of building size based on their acquisition year.
71
  Design choices:
@@ -74,7 +74,6 @@ with tab1:
74
  This scatter plot visualizes the relationship between year-acquired and Square Footage of buildings,
75
  with Total Floors encoded as the size of the points.
76
  """)
77
- st.altair_chart(bar_chart, theme="streamlit", use_container_width=True)
78
  st.caption("""
79
  This bar chart visualizes the distribution of Agency Name based on their acquisition year.
80
  Design choices:
@@ -84,7 +83,7 @@ with tab1:
84
  The Agency Name is taken as the ordinal value.
85
  """)
86
  with tab2:
87
- st.altair_chart(scatter, theme=None, use_container_width=True)
88
  st.caption("""
89
  This scatter plot visualizes the distribution of building size based on their acquisition year.
90
  Design choices:
@@ -93,7 +92,6 @@ with tab2:
93
  This scatter plot visualizes the relationship between year-acquired and Square Footage of buildings,
94
  with Total Floors encoded as the size of the points.
95
  """)
96
- st.altair_chart(bar_chart, theme=None, use_container_width=True)
97
  st.caption("""
98
  This bar chart visualizes the distribution of Agency Name based on their acquisition year.
99
  Design choices:
 
59
  )
60
 
61
  # Combined Chart
62
+ chart = alt.vconcat(scatter, bar_chart)
63
 
64
  # Tabs for Themes
65
  tab1, tab2 = st.tabs(["Streamlit Theme", "Altair Native Theme"])
66
 
67
  with tab1:
68
+ st.altair_chart(chart, theme="streamlit", use_container_width=True)
69
  st.caption("""
70
  This scatter plot visualizes the distribution of building size based on their acquisition year.
71
  Design choices:
 
74
  This scatter plot visualizes the relationship between year-acquired and Square Footage of buildings,
75
  with Total Floors encoded as the size of the points.
76
  """)
 
77
  st.caption("""
78
  This bar chart visualizes the distribution of Agency Name based on their acquisition year.
79
  Design choices:
 
83
  The Agency Name is taken as the ordinal value.
84
  """)
85
  with tab2:
86
+ st.altair_chart(chart, theme=None, use_container_width=True)
87
  st.caption("""
88
  This scatter plot visualizes the distribution of building size based on their acquisition year.
89
  Design choices:
 
92
  This scatter plot visualizes the relationship between year-acquired and Square Footage of buildings,
93
  with Total Floors encoded as the size of the points.
94
  """)
 
95
  st.caption("""
96
  This bar chart visualizes the distribution of Agency Name based on their acquisition year.
97
  Design choices: