Skip to content

Commit 2371aa8

Browse files
committed
Update environment
1 parent 1a26f9f commit 2371aa8

File tree

3 files changed

+287
-257
lines changed

3 files changed

+287
-257
lines changed

14-energy.qmd

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -172,16 +172,14 @@ We compute the mass of hydrocarbon in place $MHIP$ as the sum of oil and gas in
172172
the first time step, and cluster it with geostatistical hierarchical clustering
173173
(`GHC`) [@Fouedjio2016]. The method requires an approximate number of clusters
174174
that we set to $k=3$ (low, medium and high values) and a maximum range of
175-
geospatial association that we set to $\lambda = 500m$.
176-
177-
Additionally, we set an upper bound `nmax=1000` on the number of elements used
178-
in the dissimilarity matrix computation and the option `as="zone"` to name the
179-
column with clustering results.
175+
geospatial association that we set to $\lambda = 500m$. Additionally, we set
176+
an upper bound `nmax=1000` on the number of elements used in the dissimilarity
177+
matrix computation.
180178

181179

182180
```{julia}
183181
zones = @transform(mass₁, :MHIP = :MOIP + :MGIP) |>
184-
Select("MHIP") |> GHC(3, 500u"m", nmax=1000, as="zone")
182+
Select("MHIP") |> GHC(3, 500u"m", nmax=1000) |> Rename("label" => "zone")
185183
186184
zones |> viewer
187185
```

0 commit comments

Comments
 (0)