Penzar commited on
Commit
0bea0e2
1 Parent(s): 8c84121

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -42,19 +42,19 @@ chart_height = 200
42
  col1, col2 = st.columns(2)
43
 
44
  with col1:
45
- st.write("Kuch tho bhi1")
46
  st.bar_chart(data1.set_index('QTR'), height=chart_height)
47
 
48
  with col2:
49
- st.write("Kuch tho bhi1")
50
  st.bar_chart(data2.set_index('QTR'), height=chart_height)
51
 
52
  col3, col4 = st.columns(2)
53
 
54
  with col3:
55
- st.write("Kuch tho bhi1")
56
  st.bar_chart(data3.set_index('QTR'), height=chart_height)
57
 
58
  with col4:
59
- st.write("Kuch tho bhi1")
60
  st.bar_chart(data4.set_index('QTR'), height=chart_height)
 
42
  col1, col2 = st.columns(2)
43
 
44
  with col1:
45
+ st.write("Revenue")
46
  st.bar_chart(data1.set_index('QTR'), height=chart_height)
47
 
48
  with col2:
49
+ st.write("Profit")
50
  st.bar_chart(data2.set_index('QTR'), height=chart_height)
51
 
52
  col3, col4 = st.columns(2)
53
 
54
  with col3:
55
+ st.write("Loss")
56
  st.bar_chart(data3.set_index('QTR'), height=chart_height)
57
 
58
  with col4:
59
+ st.write("Ebita")
60
  st.bar_chart(data4.set_index('QTR'), height=chart_height)