This Streamlit app is a data visualization tool that allows users to explore and compare the cost of living indices across different countries. The app takes in a dataset of cost of living indices for various countries and provides an interactive interface for users to select specific indices and countries to visualize.
1) Interactive dropdown menus to select cost of living indices (e.g. Rent Index, Cost of Living Index, Groceries Index) and countries.
2) Bar charts to visualize the selected indices for each country
3) Ability to compare multiple countries and indices in a single chart
4) Customizable title and color scheme for the charts
To run this app, you'll need to have Streamlit installed. You can install Streamlit using pip:
pip install streamlit
To run the app, simply execute the following command in your terminal:
streamlit run app.py
Replace app.py with the name of your Python script.
The app uses a CSV file as input data. You can configure the app by modifying the following variables:
data_file: The path to the CSV file containing the cost of living indices data. columns: A list of column names in the CSV file that correspond to the different cost of living indices.
Select a cost of living index from the dropdown menu.
Select one or more countries from the dropdown menu.
The app will generate a bar chart showing the selected index for each country.
You can customize the title and color scheme of the chart by modifying the code.
Contributions are welcome! If you'd like to add new features or improve the app, please fork this repository and submit a pull request.
Streamlit for providing an amazing framework for building data science apps. Matplotlib for providing a powerful plotting library.