Update example for loading dataframe in README
Browse files
README.md
CHANGED
|
@@ -76,7 +76,7 @@ from all_gcl.export_nwb.utils.data_io import restore_numpy_arrays
|
|
| 76 |
|
| 77 |
dataset_path = "/path/to/data/storage"
|
| 78 |
|
| 79 |
-
all_gcl_df = pd.read_parquet(os.path.join(
|
| 80 |
all_gcl_df = restore_numpy_arrays(all_gcl_df)
|
| 81 |
```
|
| 82 |
|
|
|
|
| 76 |
|
| 77 |
dataset_path = "/path/to/data/storage"
|
| 78 |
|
| 79 |
+
all_gcl_df = pd.read_parquet(os.path.join(dataset_path, "all_GCL_table.parquet"))
|
| 80 |
all_gcl_df = restore_numpy_arrays(all_gcl_df)
|
| 81 |
```
|
| 82 |
|