https://observablehq.com/@challenge-project-data-visualization-gu/most-relevant-author
View this notebook in your browser by running a web server in this folder. For example:
npx http-serverOr, use the Observable Runtime to import this module directly into your application. To npm install:
npm install @observablehq/runtime@5
npm install https://api.observablehq.com/d/aac10ba4d6681928@274.tgz?v=3Then, import your notebook and the runtime as:
import {Runtime, Inspector} from "@observablehq/runtime";
import define from "@challenge-project-data-visualization-gu/most-relevant-author";To log the value of the cell named “foo”:
const runtime = new Runtime();
const main = runtime.module(define);
main.value("foo").then(value => console.log(value));