From dc81aa3b4019ce85eb692b190e0457fbf528d2b5 Mon Sep 17 00:00:00 2001 From: Cristine Guadelupe Date: Sat, 27 Jan 2024 11:01:43 -0300 Subject: [PATCH] Updates Explorer guide (#2455) --- lib/livebook/notebook/learn/intro_to_explorer.livemd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/livebook/notebook/learn/intro_to_explorer.livemd b/lib/livebook/notebook/learn/intro_to_explorer.livemd index ce5548243..4d3d0203f 100644 --- a/lib/livebook/notebook/learn/intro_to_explorer.livemd +++ b/lib/livebook/notebook/learn/intro_to_explorer.livemd @@ -2,7 +2,7 @@ ```elixir Mix.install([ - {:kino_explorer, "~> 0.1.15"} + {:kino_explorer, "~> 0.1.18"} ]) ``` @@ -10,11 +10,11 @@ Mix.install([ To explore and transform data in Livebook we use two libraries: -* The [`explorer`](https://github.com/elixir-nx/explorer) +* The [`explorer`](https://hexdocs.pm/explorer/Explorer.html) package brings series (one-dimensional) and dataframes (two-dimensional) for fast data exploration to Elixir. -* The [`kino_explorer`](https://github.com/livebook-dev/kino_explorer) +* The [`kino_explorer`](https://hexdocs.pm/kino_explorer/components.html) package automatically renders an `Explorer.DataFrame` or `Explorer.Series` as a data table.