Spaces:
Sleeping
Sleeping
getting rid of top graphs
Browse files
app.py
CHANGED
|
@@ -61,15 +61,15 @@ def division_positions(selected_division):
|
|
| 61 |
'meanYTDGross:Q', format='$,.0f', title='Avg YTD Gross')]
|
| 62 |
).properties(title=f'Employee Count by Position in: {selected_division}',
|
| 63 |
height=alt.Step(20)).interactive()
|
| 64 |
-
return chart_bar
|
| 65 |
|
| 66 |
|
| 67 |
if selected_division:
|
| 68 |
final_chart = division_positions(selected_division)
|
| 69 |
st.altair_chart(final_chart, use_container_width=True)
|
| 70 |
|
| 71 |
-
st.text('Overall Future Edits: Figure out what to do with positions with 1 employee (if anything), Decide whether to use transportation or corrections data, Re-capitalize agency departments')
|
| 72 |
-
st.text('Chart A Future Edits: Order bars by mean YTD Gross, Make all position titles readable, add title')
|
| 73 |
|
| 74 |
|
| 75 |
|
|
|
|
| 61 |
'meanYTDGross:Q', format='$,.0f', title='Avg YTD Gross')]
|
| 62 |
).properties(title=f'Employee Count by Position in: {selected_division}',
|
| 63 |
height=alt.Step(20)).interactive()
|
| 64 |
+
# return chart_bar
|
| 65 |
|
| 66 |
|
| 67 |
if selected_division:
|
| 68 |
final_chart = division_positions(selected_division)
|
| 69 |
st.altair_chart(final_chart, use_container_width=True)
|
| 70 |
|
| 71 |
+
# st.text('Overall Future Edits: Figure out what to do with positions with 1 employee (if anything), Decide whether to use transportation or corrections data, Re-capitalize agency departments')
|
| 72 |
+
# st.text('Chart A Future Edits: Order bars by mean YTD Gross, Make all position titles readable, add title')
|
| 73 |
|
| 74 |
|
| 75 |
|