Spaces:
Runtime error
Runtime error
felix
commited on
Commit
·
9361aa3
1
Parent(s):
6898ebc
fix
Browse files
app.py
CHANGED
@@ -181,7 +181,7 @@ def display(x, y):
|
|
181 |
|
182 |
subset_df = original_df[COLS]
|
183 |
|
184 |
-
first_50_rows = subset_df.head(
|
185 |
print(first_50_rows.to_string())
|
186 |
json_data = first_50_rows.to_json(orient='records')
|
187 |
print(json_data) # Print JSON representation
|
|
|
181 |
|
182 |
subset_df = original_df[COLS]
|
183 |
|
184 |
+
first_50_rows = subset_df.head(5)
|
185 |
print(first_50_rows.to_string())
|
186 |
json_data = first_50_rows.to_json(orient='records')
|
187 |
print(json_data) # Print JSON representation
|