TheRootOf3 commited on
Commit
a865852
·
verified ·
1 Parent(s): 5ff65ee

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -0
README.md CHANGED
@@ -14,6 +14,8 @@ It comes in three splits: `train`, `eval` and `test`.
14
  To open a `train` split of the dataset and show an `elevation` plot at `time=2137`:
15
 
16
  ```python
 
 
17
  ds = xr.open_zarr("train.zarr")
18
  ds["elevation"].sel(time=2137).plot.imshow(origin="upper")
19
  ```
 
14
  To open a `train` split of the dataset and show an `elevation` plot at `time=2137`:
15
 
16
  ```python
17
+ import xarray as xr
18
+
19
  ds = xr.open_zarr("train.zarr")
20
  ds["elevation"].sel(time=2137).plot.imshow(origin="upper")
21
  ```