├── .gitignore ├── Makefile ├── README.md ├── bower.json ├── index.html ├── multi-select-menu.html ├── notebooks ├── demos │ └── taxi │ │ ├── taxi-selection.ipynb │ │ ├── taxi.ipynb │ │ └── trips_1.csv └── examples │ ├── fares.csv │ └── urth-viz-explorer.ipynb ├── package.json ├── paper-card-collapse.html ├── test ├── data │ ├── barley.json │ ├── gapminder.json │ ├── iris.json │ ├── unemployment.tsv │ └── us-10m.json ├── urth-viz-vega.html └── vega.ipynb ├── urth-viz-explorer.html ├── urth-viz-query.html ├── urth-viz-vega.html └── wct.conf.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/bower.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/index.html -------------------------------------------------------------------------------- /multi-select-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/multi-select-menu.html -------------------------------------------------------------------------------- /notebooks/demos/taxi/taxi-selection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/notebooks/demos/taxi/taxi-selection.ipynb -------------------------------------------------------------------------------- /notebooks/demos/taxi/taxi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/notebooks/demos/taxi/taxi.ipynb -------------------------------------------------------------------------------- /notebooks/demos/taxi/trips_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/notebooks/demos/taxi/trips_1.csv -------------------------------------------------------------------------------- /notebooks/examples/fares.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/notebooks/examples/fares.csv -------------------------------------------------------------------------------- /notebooks/examples/urth-viz-explorer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/notebooks/examples/urth-viz-explorer.ipynb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/package.json -------------------------------------------------------------------------------- /paper-card-collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/paper-card-collapse.html -------------------------------------------------------------------------------- /test/data/barley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/test/data/barley.json -------------------------------------------------------------------------------- /test/data/gapminder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/test/data/gapminder.json -------------------------------------------------------------------------------- /test/data/iris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/test/data/iris.json -------------------------------------------------------------------------------- /test/data/unemployment.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/test/data/unemployment.tsv -------------------------------------------------------------------------------- /test/data/us-10m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/test/data/us-10m.json -------------------------------------------------------------------------------- /test/urth-viz-vega.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/test/urth-viz-vega.html -------------------------------------------------------------------------------- /test/vega.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/test/vega.ipynb -------------------------------------------------------------------------------- /urth-viz-explorer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/urth-viz-explorer.html -------------------------------------------------------------------------------- /urth-viz-query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/urth-viz-query.html -------------------------------------------------------------------------------- /urth-viz-vega.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/urth-viz-vega.html -------------------------------------------------------------------------------- /wct.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jupyter-incubator/declarativewidgets_explorer/HEAD/wct.conf.js --------------------------------------------------------------------------------