Sathwikchowdary commited on
Commit
249afa3
·
verified ·
1 Parent(s): a68b3c7

Update pages/excel_Files.py

Browse files
Files changed (1) hide show
  1. pages/excel_Files.py +54 -0
pages/excel_Files.py CHANGED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import numpy as np
4
+ import streamlit as st
5
+ custom_css = """
6
+ <style>
7
+ html, body, [data-testid="stAppViewContainer"] {
8
+ background-image: linear-gradient(
9
+ rgba(0, 0, 0, 0.6),
10
+ rgba(0, 0, 0, 0.6)
11
+ ),
12
+ url("https://www.istockphoto.com/photo/tech-or-space-background-abstract-3d-illustration-gm1367865109-437999705?utm_source=pixabay&utm_medium=affiliate&utm_campaign=SRP_photo_sponsored&utm_content=https%3A%2F%2Fpixabay.com%2Fphotos%2Fsearch%2Fbackground%2520datascience%2F&utm_term=background+datascience.jpg");
13
+ background-size: cover;
14
+ background-position: center;
15
+ background-repeat: no-repeat;
16
+ background-attachment: fixed;
17
+ color: white; /* Ensures all text is readable */
18
+ }
19
+ h2, h3 {
20
+ color: #FFD700; /* Gold color for headings */
21
+ }
22
+ p {
23
+ color: #FFFFFF; /* White text for paragraphs */
24
+ }
25
+ </style>
26
+ """
27
+
28
+ # Inject the CSS into the app
29
+ st.markdown(custom_css, unsafe_allow_html=True)
30
+ st.markdown("<h2 style='text-align: centre; color: Black;'>📈What is Excel</h2>", unsafe_allow_html=True)
31
+ st.markdown(
32
+ "<p style='font-size: 16px; color: White; font-style: italic;'>"
33
+ "Excel is a popular tool for data management and analysis, commonly used to organize datasets that can then be used for machine learning tasks. For machine learning, Excel often serves as an initial data source before the data is preprocessed and fed into ML algorithms for tasks such as classification, regression, clustering, etc"
34
+ "</p>",
35
+ unsafe_allow_html=True
36
+ )
37
+ st.markdown("<h2 style='text-align: centre; color: Black;'>📈How to read excel files</h2>", unsafe_allow_html=True)
38
+ st.markdown(
39
+ "<p style='font-size: 16px; color: White; font-style: italic;'>"
40
+ "Excel files can be read in various programming languages like python pandas,Matlab,R and Microsoft excel application"
41
+ "</p>",
42
+ unsafe_allow_html=True
43
+ )
44
+ st.markdown("<h2 style='text-align: centre; color: Black;'>📈Issues encountered when handling these files</h2>", unsafe_allow_html=True)
45
+ st.markdown("1.Corrupted Files")
46
+ st.markdown("2.Inconsistent Data Types")
47
+ st.markdown("3.Missing or Null Values")
48
+ st.markdown("4.Large File Size")
49
+ st.markdown("<h2 style='text-align: centre; color: Black;'>📈 how to overcome these errors/issues.</h2>", unsafe_allow_html=True)
50
+
51
+
52
+
53
+
54
+