Public
Edited
Sep 9, 2022
1 fork
10 stars
Insert cell
Insert cell
Insert cell
This is a markdown cell.
Insert cell
Insert cell
10 + 10
Insert cell
Insert cell
[1, 2, 2, 3, 4, 5, 6]
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
import { aq, op } from "@uwdata/arquero"
Insert cell
Insert cell
Insert cell
penguins = d3.csv("https://raw.githubusercontent.com/allisonhorst/palmerpenguins/main/inst/extdata/penguins.csv")
Insert cell
Insert cell
df_penguins = aq.from(penguins)
Insert cell
Insert cell
df_penguins.view()
Insert cell
Inputs.table(df_penguins)
Insert cell
Insert cell
df_penguins.groupby("species").count().view()
Insert cell
df_penguins
.groupby("species")
.rollup({ mean: (d) => op.mean(d.body_mass_g) })
.view()
Insert cell
Insert cell
Insert cell
Plot.dot(df_penguins, {
x: "body_mass_g",
y: "bill_length_mm",
stroke: "species"
}).plot({y: {type:"linear"}, x:{type:"linear"}})
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more