hertogateis commited on
Commit
a670d11
·
verified ·
1 Parent(s): 1818b63

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -48,10 +48,7 @@ else:
48
  df = None
49
 
50
  if df is not None:
51
- # Convert object columns to numeric where possible, handle errors explicitly
52
- for column in df.select_dtypes(include=['object']).columns:
53
- df[column] = pd.to_numeric(df[column], errors='coerce')
54
-
55
  st.write("Original Data:")
56
  st.write(df)
57
 
 
48
  df = None
49
 
50
  if df is not None:
51
+ # Show the original data with text columns intact
 
 
 
52
  st.write("Original Data:")
53
  st.write(df)
54