eswardivi commited on
Commit
01a294a
·
verified ·
1 Parent(s): 7c965f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -137,6 +137,13 @@ st.title("Customer Data Analysis")
137
 
138
  query = st.text_area("Enter your query about the dataset:", height=100)
139
 
 
 
 
 
 
 
 
140
  col1, col2 = st.columns(2)
141
 
142
  if "logs" not in st.session_state:
 
137
 
138
  query = st.text_area("Enter your query about the dataset:", height=100)
139
 
140
+ st.sidebar.title("Dataset Metadata")
141
+ st.sidebar.write("Columns:", metadata["columns"])
142
+ st.sidebar.write("Dtypes:", metadata["dtypes"])
143
+ st.sidebar.write("Shape:", metadata["shape"])
144
+ st.sidebar.write("Sample Data:")
145
+ st.sidebar.write(df.head())
146
+
147
  col1, col2 = st.columns(2)
148
 
149
  if "logs" not in st.session_state: