Update app.py
Browse files
app.py
CHANGED
@@ -1901,48 +1901,45 @@ with gr.Blocks(
|
|
1901 |
</div>
|
1902 |
""")
|
1903 |
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
|
1943 |
-
- π§ Email: https://tinyurl.com/email-for-contact
|
1944 |
-
- π Response Time: Within 24 hours
|
1945 |
-
""")
|
1946 |
|
1947 |
if __name__ == "__main__":
|
1948 |
# Enhanced launch configuration
|
|
|
1901 |
</div>
|
1902 |
""")
|
1903 |
|
1904 |
+
with gr.Accordion("π‘ Pro Tips", open=False):
|
1905 |
+
gr.Markdown("""
|
1906 |
+
### π― Data Preparation:
|
1907 |
+
- β
Use descriptive column names (e.g., "Monthly_Revenue" instead of "Col1")
|
1908 |
+
- β
Ensure consistent date formats (YYYY-MM-DD recommended)
|
1909 |
+
- β
Remove completely empty rows/columns before upload
|
1910 |
+
- β
For large files (>10MB), consider using sample size option
|
1911 |
+
|
1912 |
+
### π Analysis Optimization:
|
1913 |
+
- **Comprehensive**: Full statistical analysis with AI insights (recommended for business reports)
|
1914 |
+
- **Quick**: Fast overview for initial data exploration
|
1915 |
+
- **Statistical**: Focus on mathematical relationships and patterns
|
1916 |
+
|
1917 |
+
### π Question Examples for Better AI Responses:
|
1918 |
+
- "What factors most strongly correlate with customer churn?"
|
1919 |
+
- "Which time periods show the highest sales performance?"
|
1920 |
+
- "Are there any data quality issues I should address?"
|
1921 |
+
- "What are the key business opportunities in this dataset?"
|
1922 |
+
|
1923 |
+
### π₯ Export Recommendations:
|
1924 |
+
- **HTML**: Best for sharing interactive reports with stakeholders
|
1925 |
+
- **Markdown**: Great for technical documentation and version control
|
1926 |
+
|
1927 |
+
### β‘ Performance Notes:
|
1928 |
+
- Files under 5MB: Instant processing
|
1929 |
+
- Files 5-20MB: ~5-10 seconds
|
1930 |
+
- Files 20MB+: Consider sampling for faster results
|
1931 |
+
|
1932 |
+
### π§ Supported Formats & Limits:
|
1933 |
+
- **CSV/TSV**: Up to 100MB
|
1934 |
+
- **Excel (XLSX/XLS)**: Up to 100MB
|
1935 |
+
- **JSON**: Flat or nested structures
|
1936 |
+
- **Parquet**: High-performance columnar format
|
1937 |
+
|
1938 |
+
### π Support & Contact:
|
1939 |
+
- π± WhatsApp: +8801719296601
|
1940 |
+
- π§ Email: https://tinyurl.com/email-for-contact
|
1941 |
+
- π Response Time: Within 24 hours
|
1942 |
+
""")
|
|
|
|
|
|
|
1943 |
|
1944 |
if __name__ == "__main__":
|
1945 |
# Enhanced launch configuration
|