Email or username:

Password:

Forgot your password?
Simon Willison

Deno 2 has a really neat Jupyter notebook kernel that can run things like Observable Plot visualizations - my notes here simonwillison.net/2024/Oct/10/

A Jupyter notebook running the Deno kernel. I ran this code and got a scatter chart:

import * as Plot from "npm:@observablehq/plot";
import { document, penguins } from "jsr:@ry/jupyter-helper";
let p = await penguins();

Plot.plot({
  marks: [
    Plot.dot(p.toRecords(), {
      x: "culmen_depth_mm",
      y: "culmen_length_mm",
      fill: "species",
    }),
  ],
  document,
});
2 comments
Tim

@simon Small typo in your blog posts `deno juptyer install` command.

James Mitchell-White

@simon I've been using Quarto to do EDA with observable in any case, but the full jupyter experience will be nice

Go Up