Skip to content

Commit

Permalink
Add new features as tips
Browse files Browse the repository at this point in the history
  • Loading branch information
juliohm committed Apr 16, 2024
1 parent 93e987e commit c14e04b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 05-transforms.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,9 @@ values are `missing`. This is the purpose of the `DropMissing` transform:
georef((a=[1,missing,3], b=[4,5,6])) |> DropMissing()
```

The `DropNaN` is an alternative to drop all rows for which the selected column values
are `NaN`.

### Statistical

The framework provides various feature transforms for statistical analysis. We will
Expand Down
5 changes: 5 additions & 0 deletions 09-geojoins.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ In database-style join, the predicate function `isequal` is applied to arbitrary
columns of tables. In `geojoin`, **geometric predicate** functions are applied to
the `geometry` column of geotables.

The `tablejoin` function can be used for database-style join between a geotable
and a simple table (e.g., `DataFrame`). The result will be a new geotable over a
subset of geometries from the first argument. Please check the documentation for
more details.

:::

::: {.callout-note}
Expand Down
10 changes: 10 additions & 0 deletions 11-interpolation.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,16 @@ hundreds of thousands of measurements and very large grids.

:::

::: {.callout-note}

## Tip for all users

The `InterpolateMissing` transform can be used to interpolate `missing`
values in a geotable using the same algorithm of `InterpolateNeighbors`.
Likewise, the `InterpolateNaN` can be used to interpolate `NaN` values.

:::

## Congratulations!

Congratulations on finishing **Part IV** of the book. The interpolation
Expand Down

0 comments on commit c14e04b

Please sign in to comment.