Dehkhodaa / app.py
Esmaeilkiani's picture
Create app.py
1408f0f verified
import streamlit as st
import pandas as pd
import altair as alt
import plotly.express as px
st.set_page_config(
page_title="Zali Ai",
page_icon="🏂",
layout="wide",
initial_sidebar_state="expanded")
alt.themes.enable("dark")
df_reshaped = pd.read_csv('df_reshaped = pd.read_csv('data/us-population-2010-2019-reshaped.csv')')
with st.sidebar:
st.title('مطالعات کاربردی')
year_list = list(df_reshaped.year.unique())[::-1]
selected_year = st.selectbox('Select a year', year_list, index=len(year_list)-1)
df_selected_year = df_reshaped[df_reshaped.year == selected_year]
df_selected_year_sorted = df_selected_year.sort_values(by="population", ascending=False)
color_theme_list = ['blues', 'cividis', 'greens', 'inferno', 'magma', 'plasma', 'reds', 'rainbow', 'turbo', 'viridis']
selected_color_theme = st.selectbox('Select a color theme', color_theme_list)