Powered by AppSignal & Oban Pro
Would you like to see your link here? Contact us

Explorer: 02 - Getting started

02_getting_started_with_explorer.livemd

Explorer: 02 - Getting started

Mix.install([{:explorer, "~> 0.9.2"}])

Your first dataframe

df = Explorer.DataFrame.new(
  city: ["New York", "Los Angeles", "Chicago"],
  population: [8_419_000, 3_979_000, 2_716_000]
)
#Explorer.DataFrame<
  Polars[3 x 2]
  city string ["New York", "Los Angeles", "Chicago"]
  population s64 [8419000, 3979000, 2716000]
>