vtrubamacrocosmos commited on
Commit
64a090d
·
verified ·
1 Parent(s): a000445

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -101,11 +101,9 @@ df = pd.DataFrame(datasets)
101
  col1, col2, col3 = st.columns(3)
102
  with col1:
103
  total_rows = sum(float(str(rows).split()[0].replace(',', '')) for rows in df['Number of rows'])
104
- st.metric("Total Rows", f"{total_rows:.2f}M")
105
  with col2:
106
  st.metric("Total Datasets", len(df))
107
- with col3:
108
- st.metric("Total Data Size", "100GB+")
109
 
110
  # Display the dataset table
111
  st.subheader("Dataset Overview")
 
101
  col1, col2, col3 = st.columns(3)
102
  with col1:
103
  total_rows = sum(float(str(rows).split()[0].replace(',', '')) for rows in df['Number of rows'])
104
+ st.metric("Total Rows", f"{total_rows / 1000:.2f}B")
105
  with col2:
106
  st.metric("Total Datasets", len(df))
 
 
107
 
108
  # Display the dataset table
109
  st.subheader("Dataset Overview")