Visually explore, understand, and present your data.
Add these to the dependencies
section of your package.json
, then run npm install
:
"@deck.gl/core": "6.4",
"@deck.gl/layers": "6.4",
"@msrvida/sanddance-explorer": "^1",
"luma.gl": "6.4",
"vega": "^5.8"
Import these in your JavaScript:
import * as deck from '@deck.gl/core';
import * as layers from '@deck.gl/layers';
import * as luma from 'luma.gl';
import * as vega from 'vega';
import { Explorer, SandDance } from '@msrvida/sanddance-explorer';
SandDance.use(vega, deck, layers, luma);
Please visit the SandDance website.