An open API service indexing awesome lists of open source software.

https://github.com/drbenjamin/drbenjamin.github.io

Data Science courses Github Page.
https://github.com/drbenjamin/drbenjamin.github.io

data-science html

Last synced: 5 months ago
JSON representation

Data Science courses Github Page.

Awesome Lists containing this project

README

          

# Smooth zooming

https://observablehq.com/@d3/smooth-zooming@74

View this notebook in your browser by running a web server in this folder. For
example:

~~~sh
npx http-server
~~~

Or, use the [Observable Runtime](https://github.com/observablehq/runtime) to
import this module directly into your application. To npm install:

~~~sh
npm install @observablehq/runtime@5
npm install https://api.observablehq.com/@d3/smooth-zooming@74.tgz?v=3
~~~

Then, import your notebook and the runtime as:

~~~js
import {Runtime, Inspector} from "@observablehq/runtime";
import define from "@d3/smooth-zooming";
~~~

To log the value of the cell named “foo”:

~~~js
const runtime = new Runtime();
const main = runtime.module(define);
main.value("foo").then(value => console.log(value));
~~~