Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -42,7 +42,7 @@ def main():
|
|
42 |
tableau_ai()
|
43 |
|
44 |
def show_instructions():
|
45 |
-
st.title("Welcome to the AI TOOL
|
46 |
st.write("This tool offers several functionalities to help you analyze and work with your data.")
|
47 |
st.write("Please select an option from the sidebar to proceed:")
|
48 |
st.write("- **View Data:** Upload a CSV file and view its contents.")
|
@@ -50,7 +50,17 @@ def show_instructions():
|
|
50 |
st.write("- **CSV Chatbot:** Interact with a chatbot to get insights from your CSV data.")
|
51 |
st.write("- **Tableau AI:** Upload a CSV file to visualize it using Tableau AI.")
|
52 |
st.write("- **View Instructions:** View these instructions again.")
|
53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
def data_profiling(uploaded_file):
|
55 |
st.title("Data Profiling App")
|
56 |
df = pd.read_csv(uploaded_file)
|
|
|
42 |
tableau_ai()
|
43 |
|
44 |
def show_instructions():
|
45 |
+
st.title("Welcome to the AI TOOL - Made for MDH")
|
46 |
st.write("This tool offers several functionalities to help you analyze and work with your data.")
|
47 |
st.write("Please select an option from the sidebar to proceed:")
|
48 |
st.write("- **View Data:** Upload a CSV file and view its contents.")
|
|
|
50 |
st.write("- **CSV Chatbot:** Interact with a chatbot to get insights from your CSV data.")
|
51 |
st.write("- **Tableau AI:** Upload a CSV file to visualize it using Tableau AI.")
|
52 |
st.write("- **View Instructions:** View these instructions again.")
|
53 |
+
st.markdown(
|
54 |
+
"""
|
55 |
+
<a href="https://www.linkedin.com/in/your_linkedin_profile/" target="_blank">
|
56 |
+
<img src="https://img.icons8.com/color/48/000000/linkedin.png" width="30" height="30"/>
|
57 |
+
</a>
|
58 |
+
<a href="https://github.com/your_github_username" target="_blank">
|
59 |
+
<img src="https://img.icons8.com/fluency/48/000000/github.png" width="30" height="30"/>
|
60 |
+
</a>
|
61 |
+
""",
|
62 |
+
unsafe_allow_html=True
|
63 |
+
)
|
64 |
def data_profiling(uploaded_file):
|
65 |
st.title("Data Profiling App")
|
66 |
df = pd.read_csv(uploaded_file)
|