0.0.1 • Published 1 year ago

interact-econ v0.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Interactive Charts

What's this?

A work-in-progress module for creating interactive charts in the browser. It's built with D3.

Why?

This is a research project for the Ford School of Public Policy at the University of Michigan under the guidance of Dr. Justin Wolfers. The goal is to create a library that will allow any user to create beautiful interactive charts with minimal effort and easily embed it in other applications.

https://observablehq.com/d/814c401d07f99a7f@3821

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

npx http-server

Or, 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/814c401d07f99a7f@3821.tgz?v=3

Then, import your notebook and the runtime as:

import {Runtime, Inspector} from "@observablehq/runtime";
import define from "814c401d07f99a7f";

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));