Updates guides to link to docs (#2456)

This commit is contained in:
Cristine Guadelupe 2024-01-27 15:25:33 -03:00 committed by GitHub
parent dc81aa3b40
commit 027e84fff8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 5 deletions

View file

@ -10,11 +10,11 @@ Mix.install([
To explore and transform data in Livebook we use two libraries: To explore and transform data in Livebook we use two libraries:
* The [`explorer`](https://hexdocs.pm/explorer/Explorer.html) * The [`explorer`](https://hexdocs.pm/explorer/)
package brings series (one-dimensional) and dataframes (two-dimensional) package brings series (one-dimensional) and dataframes (two-dimensional)
for fast data exploration to Elixir. for fast data exploration to Elixir.
* The [`kino_explorer`](https://hexdocs.pm/kino_explorer/components.html) * The [`kino_explorer`](https://hexdocs.pm/kino_explorer/)
package automatically renders an `Explorer.DataFrame` or `Explorer.Series` package automatically renders an `Explorer.DataFrame` or `Explorer.Series`
as a data table. as a data table.

View file

@ -14,7 +14,7 @@ To work with maps in Livebook we need two libraries:
* The [`maplibre`](https://hexdocs.pm/maplibre/MapLibre.html) * The [`maplibre`](https://hexdocs.pm/maplibre/MapLibre.html)
package allows us to define our map style specifications package allows us to define our map style specifications
* The [`kino_maplibre`](https://hexdocs.pm/kino_maplibre/components.html) package instructs Livebook how to render our specifications and also provides some initial support for [MapLibre Evented API](https://maplibre.org/maplibre-gl-js/docs/API/classes/maplibregl.Evented/) * The [`kino_maplibre`](https://hexdocs.pm/kino_maplibre/) package instructs Livebook how to render our specifications and also provides some initial support for [MapLibre Evented API](https://maplibre.org/maplibre-gl-js/docs/API/classes/maplibregl.Evented/)
We will make extensive use of MapLibre's functions, so it's handy to alias the module to something shorter. We will make extensive use of MapLibre's functions, so it's handy to alias the module to something shorter.

View file

@ -11,10 +11,10 @@ Mix.install([
We need two libraries for plotting in Livebook: We need two libraries for plotting in Livebook:
* The [`vega_lite`](https://github.com/elixir-nx/vega_lite) * The [`vega_lite`](https://hexdocs.pm/vega_lite/)
package allows us to define our graph specifications package allows us to define our graph specifications
* The [`kino_vega_lite`](https://github.com/livebook-dev/kino_vega_lite) package * The [`kino_vega_lite`](https://hexdocs.pm/kino_vega_lite/) package
instructs Livebook how to render our specifications instructs Livebook how to render our specifications
Let's install them by running the setup cell above. Let's install them by running the setup cell above.