-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEINDHOVEN_IN_CHARTS.py
29 lines (20 loc) · 1.14 KB
/
EINDHOVEN_IN_CHARTS.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import streamlit as st
# MAIN
def main():
st.set_page_config(
page_title='Eindhoven Data Stories' ,
page_icon='',
layout="wide",
initial_sidebar_state="expanded")
st.title("Eindhoven Data Stories")
##st.sidebar.success("Choose ^^^")
st.markdown("This is a collection of interactive charts, maps and small games based on \
publicly available data about the :red[7 Eindhoven city areas (_stadsdelen_), 19 districts (_wijken_) and 109 neighbourhoods (_buurten_)].\
Choose on the sidebar which one you want to see.")
st.markdown("Made in winter 2023 at [Fontys ICT](https://www.fontysictinnovationlab.nl/) by students experimenting with data visualization.\
All data and code is [available](https://github.com/EhvDS/eds_app) but not yet properly reviewed and checked. \
So :red[please don't base any serious conclusions on these visualizations (yet)].")
st.markdown("Send your questions and comments to Simona Orzan ([[email protected]](mailto:[email protected])).")
st.markdown("Enjoy!")
if __name__ == '__main__':
main()