Spaces:
Runtime error
Runtime error
File size: 308 Bytes
920c612 5456c1a 920c612 5456c1a 920c612 |
1 2 3 4 5 6 7 8 9 10 |
import json
# Load the dataset (update 'your_file_path.json' with the actual file location)
file_path = "/Users/atibaraymond/Downloads/22687585/release_conditions.json"
with open(file_path, "r") as file:
data = json.load(file)
# Display a sample record
print(data[0]) # Print the first patient record
|