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.
- Host: GitHub
- URL: https://github.com/drbenjamin/drbenjamin.github.io
- Owner: DrBenjamin
- Created: 2023-09-13T06:58:38.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-12-19T10:54:01.000Z (7 months ago)
- Last Synced: 2025-12-21T02:48:20.822Z (7 months ago)
- Topics: data-science, html
- Language: HTML
- Homepage: https://drbenjamin.github.io/
- Size: 303 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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));
~~~