kino VS explorer

Compare kino vs explorer and see what are their differences.

kino

Client-driven interactive widgets for Livebook (by livebook-dev)

explorer

Series (one-dimensional) and dataframes (two-dimensional) for fast and elegant data exploration in Elixir (by elixir-explorer)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
kino explorer
4 20
329 977
5.5% 1.2%
8.7 9.4
5 days ago 5 days ago
Elixir Elixir
Apache License 2.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

kino

Posts with mentions or reviews of kino. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-09-12.
  • ElixirConf 2022 - That's a wrap!
    7 projects | dev.to | 12 Sep 2022
    José is adamantly championing Livebook as a tool for learning the language and teaching aspiring alchemists. In particular, he spoke about the breadth of possibilities for visualising aspects of Livebook using Kino, such as charts, graphs, and mermaid diagrams. As mentioned previously, Dockyard Academy is taking this approach with their bootcamp curriculum, and is using this suite of visualisation tools alongside smart cells to lower the barrier to entry for new developers.
  • Elixir Livebook now as a desktop app
    12 projects | news.ycombinator.com | 2 Aug 2022
    I think this is a fair analogy, but maybe I'd add that LiveBooks uses MarkDown markupfor the non-code part of the notebook, make it far more readable, and with more visualizations coming in.

    For example, recently an addition to add automatically generated sequence diagrams to Livebook Kino (https://github.com/livebook-dev/kino/pull/165). So generate code which shows a supervision tree, and automatically create a visual diagram of the code in one place. Pretty great for learning and explanatory material.

  • Sequence Diagrams representing elixir?
    1 project | /r/elixir | 25 Jul 2022
    There's an upcoming feature in Livebook Kino that is related do automatically generated sequence diagrams for process communication: https://github.com/livebook-dev/kino/pull/165
  • Livebook Animations
    2 projects | dev.to | 26 Dec 2021
    So I posted this issue (kino#48) and implemented a new widget Kino.ImageDynamic which can be updated with Kino.ImageDynamic.push/2.

explorer

Posts with mentions or reviews of explorer. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-08.
  • Polars
    11 projects | news.ycombinator.com | 8 Jan 2024
    The Explorer library [0] in Elixir uses Polars underneath it.

    [0] https://github.com/elixir-explorer/explorer

  • Unpacking Elixir: Concurrency
    9 projects | news.ycombinator.com | 25 Aug 2023
  • Elixir Livebook is a secret weapon for documentation
    12 projects | news.ycombinator.com | 6 Aug 2023
    To ensure you do not miss this: LiveBook comes with a Vega Lite integration (https://livebook.dev/integrations -> https://livebook.dev/integrations/vega-lite/), which means you get access to a lot of visualisations out of the box, should you need that (https://vega.github.io/vega-lite/).

    In the same "standing on giant's shoulders" stance, you can use Explorer (see example LiveBook at https://github.com/elixir-explorer/explorer/blob/main/notebo...), which leverages Polars (https://www.pola.rs), a very fast DataFrame library and now a company (https://www.pola.rs/posts/company-announcement/) with 4M$ seed.

  • Does anyone else hate Pandas?
    2 projects | /r/dataengineering | 11 Jun 2023
    Already exists. Check out https://github.com/elixir-nx/explorer which provides a tidyverse-like API in Elixir using polars as the back end.
  • Data wrangling in Elixir with Explorer, the power of Rust, the elegance of R
    7 projects | news.ycombinator.com | 14 Apr 2023
    José from the Livebook team. I don't think I can make a pitch because I have limited Python/R experience to use as reference.

    My suggestion is for you to give it a try for a day or two and see what you think. I am pretty sure you will find weak spots and I would be very happy to hear any feedback you may have. You can find my email on my GitHub profile (same username).

    In general we have grown a lot since the Numerical Elixir effort started two years ago. Here are the main building blocks:

    * Nx (https://github.com/elixir-nx/nx/tree/main/nx#readme): equivalent to Numpy, deeply inspired by JAX. Runs on both CPU and GPU via Google XLA (also used by JAX/Tensorflow) and supports tensor serving out of the box

    * Axon (https://github.com/elixir-nx/axon): Nx-powered neural networks

    * Bumblebee (https://github.com/elixir-nx/bumblebee): Equivalent to HuggingFace Transformers. We have implemented several models and that's what powers the Machine Learning integration in Livebook (see the announcement for more info: https://news.livebook.dev/announcing-bumblebee-gpt2-stable-d...)

    * Explorer (https://github.com/elixir-nx/explorer): Series and DataFrames, as per this thread.

    * Scholar (https://github.com/elixir-nx/scholar): Nx-based traditional Machine Learning. This one is the most recent effort of them all. We are treading the same path as scikit-learn but quite early on. However, because we are built on Nx, everything is derivable, GPU-ready, distributable, etc.

    Regarding visualization, we have "smart cells" for VegaLite and MapLibre, similar to how we did "Data Transformations" in the video above. They help you get started with your visualizations and you can jump deep into the code if necessary.

    I hope this helps!

  • Would you still choose Elixir/Phoenix/LiveView if scaling and performance weren’t an issue to solve for?
    3 projects | /r/elixir | 7 Mar 2023
    There's a package in the Nx ecosystem called Explorer (https://github.com/elixir-nx/explorer). It uses bindings for the rust library, polars, which is much more betterer than Pandas.
  • Updated Erlport alternative ?
    3 projects | /r/elixir | 26 Oct 2022
    FWIW around April this year I started using erlport with python polars in a production ETL app because explorer didn't have the features I needed at the time.
  • ElixirConf 2022 - That's a wrap!
    7 projects | dev.to | 12 Sep 2022
    Machine learning is rapidly expanding within the Elixir ecosystem, with tools such as Nx, Axon, and Explorer being used both by individuals and companies such as Amplified, as mentioned above.
  • Dataframes but for Elixir
    1 project | news.ycombinator.com | 23 Aug 2022
  • Quick candlestick summaries with Elixir's Explorer
    8 projects | dev.to | 22 Aug 2022

What are some alternatives?

When comparing kino and explorer you can also consider the following projects:

livebook - Automate code & data workflows with interactive Elixir notebooks

dplyr - dplyr: A grammar of data manipulation

nerves_livebook - Develop on embedded devices with Livebook and Nerves

polars - Dataframes powered by a multithreaded, vectorized query engine, written in Rust

kino_db - Database integrations for Livebook

axon - Nx-powered Neural Networks

eqwalizer - A type-checker for Erlang

db-benchmark - reproducible benchmark of database-like ops

arrow2 - Transmute-free Rust library to work with the Arrow format

IElixir - Jupyter's kernel for Elixir programming language

wasmex - Execute WebAssembly from Elixir