AMKhakbaz commited on
Commit
15caa8a
·
verified ·
1 Parent(s): 2646fef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -2
app.py CHANGED
@@ -410,10 +410,21 @@ def analyze_z_test(file):
410
 
411
  return result_dataframes
412
 
413
- st.image("logo.png", width=200)
 
 
 
 
 
 
 
 
 
 
 
414
 
415
  # Streamlit User Interface
416
- st.title("Data Analysis Application")
417
 
418
  # Main options
419
  main_option = st.selectbox("Please select an option:", ["Tabulation", "Funnel", "Hypothesis test", "Machine Learning", "Coding"])
 
410
 
411
  return result_dataframes
412
 
413
+ col1, col2 = st.columns([1, 3]) # نسبت عرض ستون‌ها (1:3)
414
+
415
+ with col1:
416
+ st.image("logo.png", width=150)
417
+
418
+ with col2:
419
+ st.title("Chortke", unsafe_allow_html=True)
420
+
421
+ st.write("متن و توضیحات دیگر اپلیکیشن در اینجا قرار می‌گیرد.")
422
+
423
+
424
+ #st.image("logo.png", width=200)
425
 
426
  # Streamlit User Interface
427
+ #st.title("Data Analysis Application")
428
 
429
  # Main options
430
  main_option = st.selectbox("Please select an option:", ["Tabulation", "Funnel", "Hypothesis test", "Machine Learning", "Coding"])