Spaces:
Runtime error
Runtime error
felix
commited on
Commit
Β·
4f75073
1
Parent(s):
c132808
fix
Browse files
app.py
CHANGED
@@ -190,7 +190,7 @@ def display(x, y):
|
|
190 |
with open(output_file_path, 'w') as file:
|
191 |
file.write(subset_df.to_json(orient='records'))
|
192 |
|
193 |
-
first_50_rows = subset_df.head(
|
194 |
#print(first_50_rows.to_string())
|
195 |
#json_data = first_50_rows.to_json(orient='records')
|
196 |
#print(json_data) # Print JSON representation
|
|
|
190 |
with open(output_file_path, 'w') as file:
|
191 |
file.write(subset_df.to_json(orient='records'))
|
192 |
|
193 |
+
first_50_rows = subset_df.head(50)
|
194 |
#print(first_50_rows.to_string())
|
195 |
#json_data = first_50_rows.to_json(orient='records')
|
196 |
#print(json_data) # Print JSON representation
|