-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpy-gwalker.py
50 lines (42 loc) · 1.41 KB
/
py-gwalker.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#! Code inspired from Sven Bosau @ https://github.com/Sven-Bo/PyGWalker-Guide-for-Streamlit-and-Jupyter/blob/main/app.py
import streamlit as st
import pandas as pd
import pygwalker as pyg
import sqlite3
#! Set page configuration
st.set_page_config(
page_title="Online Data Viz app",
page_icon=":chart:",
layout="wide",
initial_sidebar_state="expanded",
)
#! clean streamlit styling
hide_default_format = """
<style>
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
header {visibility: hidden;}
</style>
"""
st.markdown(hide_default_format, unsafe_allow_html=True)
#! Set title and subtitle
st.title('Interactive Data Visualization app')
# st.subheader('On-the-go Data Visualizing & Analyzing')
#! upload & read user data
user_file = st.file_uploader("Upload a CSV file")
if user_file is None:
# @st.cache_data
st.warning('No File uploaded: You can still play with demo-data')
df = pd.read_csv('tips.csv')
else:
st.success('File uploaded')
col1, col2, col3, col4 = st.columns(4)
enco = col1.selectbox("Change CSV encoding", ['utf-8', 'ascii', 'big5', 'utf-16', 'utf-32'])
try:
df = pd.read_csv(user_file, encoding="ansi")
except:
col2.warning('Try different CSV encoding')
#! basic app settings
theme = st.radio("Choose your theme", ["light", "dark"])
#! Display PyGWalker
pyg.walk(df, env='Streamlit', dark=theme)