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

Update pages/excel_Files.py

Browse files
Files changed (1) hide show
  1. pages/excel_Files.py +18 -0
pages/excel_Files.py CHANGED
@@ -47,6 +47,24 @@ 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
 
 
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
+ st.markdown("<h3 style='text-align: left; color: Black;'>📈Corrupted Files.</h3>", unsafe_allow_html=True)
51
+ st.markdown(
52
+ "<p style='font-size: 16px; color: White; font-style: italic;'>
53
+ "Use Excel's built-in "Open and Repair" feature to try to recover the file".
54
+ "</p>",
55
+ unsafe_allow_html=True
56
+ )
57
+ st.markdown("<h3 style='text-align: left; color: Black;'>📈Inconsistent Data Types.</h3>", unsafe_allow_html=True)
58
+ st.markdown(
59
+ "<p style='font-size: 16px; color: White; font-style: italic;'>
60
+ "Preprocess the data by explicitly converting columns to the correct data type using pandas (e.g., pd.to_numeric() for numeric data).Use Excel’s Data Validation feature to ensure consistent data entry".
61
+ "</p>",
62
+ unsafe_allow_html=True
63
+ )
64
+
65
+
66
+
67
+
68
 
69
 
70