Skip to content

Instantly share code, notes, and snippets.

@nikkisharma536
Created June 11, 2020 09:35
Show Gist options
  • Save nikkisharma536/1581d7f7cf1767fddabb979043878582 to your computer and use it in GitHub Desktop.
Save nikkisharma536/1581d7f7cf1767fddabb979043878582 to your computer and use it in GitHub Desktop.
Streamlit bar graph
filter_data = df[df['Date'] >='2020-04-01'].set_index("Date") 
st.markdown(str(','.join(country_name_input)) + " daily Death cases from 1st April 2020")
# bar chart
st.bar_chart(filter_data[['Deaths']])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment