Rami commited on
Commit
823be3f
·
1 Parent(s): 50fd384

Data table tunned

Browse files
Files changed (1) hide show
  1. app.py +13 -6
app.py CHANGED
@@ -239,9 +239,16 @@ else:
239
 
240
  # Footer
241
  st.sidebar.markdown("---")
242
- st.sidebar.info("You can ask questions like:\n"
243
- "1.What are all the products in the Electronics category?\n"
244
- "2.What is the average price of products in each category?\n"
245
- "3.Which products have a stock quantity less than 30?\n"
246
- "4.What are the top 5 most expensive products?")
247
- st.sidebar.warning("CopyRights@AutomatiX - Powered by Streamlit and Google Gemini")
 
 
 
 
 
 
 
 
239
 
240
  # Footer
241
  st.sidebar.markdown("---")
242
+ st.sidebar.subheader("Example Queries")
243
+ st.sidebar.info("""
244
+ Try these example queries to explore the dashboard:
245
+
246
+ 1. What are the top 5 most expensive products in the Electronics category?
247
+ 2. What is the average price and total stock for each category?
248
+ 3. List the all the products?
249
+ 4. What is the distribution of prices for products supplied by each supplier?
250
+ 5. Which products have a stock quantity less than 30?
251
+
252
+ Feel free to modify these queries or ask your own questions!
253
+ """)
254
+ st.sidebar.warning("© AutomatiX - Powered by Streamlit and Google Gemini")