remove debug info
Browse files
app.py
CHANGED
@@ -471,15 +471,15 @@ def main():
|
|
471 |
stderr_df = load_stderr_data()
|
472 |
|
473 |
# Debug information (hidden in an expander)
|
474 |
-
with st.expander("🔧 Debug Information", expanded=False):
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
|
484 |
if df.empty:
|
485 |
st.error("No data available. Please check that the CSV files are properly uploaded and accessible.")
|
|
|
471 |
stderr_df = load_stderr_data()
|
472 |
|
473 |
# Debug information (hidden in an expander)
|
474 |
+
# with st.expander("🔧 Debug Information", expanded=False):
|
475 |
+
# st.write(f"**Data Shape:** {df.shape if not df.empty else 'No data'}")
|
476 |
+
# st.write(f"**Columns:** {len(df.columns) if not df.empty else 0}")
|
477 |
+
# st.write(f"**Models:** {len(df.index) if not df.empty else 0}")
|
478 |
+
# if not df.empty:
|
479 |
+
# st.write(f"**Sample columns:** {list(df.columns[:5])}")
|
480 |
+
# st.write(f"**Data types:** {df.dtypes.value_counts().to_dict()}")
|
481 |
+
# st.write(f"**Missing values per column:** {df.isnull().sum().sum()}")
|
482 |
+
# st.write(f"**StdErr data available:** {'Yes' if stderr_df is not None else 'No'}")
|
483 |
|
484 |
if df.empty:
|
485 |
st.error("No data available. Please check that the CSV files are properly uploaded and accessible.")
|