├── README.md ├── deps.edn ├── resources ├── .keep ├── vega-lite.js └── vega.js ├── src └── applied_science │ └── darkstar.clj └── test └── applied_science ├── darkstar_test.clj ├── data ├── 7zip.png ├── airports.csv ├── annual-precip.json ├── barley.json ├── budgets.json ├── cars.json ├── chart.json ├── driving.json ├── earthquakes.json ├── ffox.png ├── flare-dependencies.json ├── flare.json ├── flights-200k.json ├── flights-airport.csv ├── gapminder.json ├── gimp.png ├── iris.json ├── jobs.json ├── miserables.json ├── monarchs.json ├── movies.json ├── normal-2d.json ├── population.json ├── seattle-temps.csv ├── sp500.csv ├── stocks.csv ├── unemployment-across-industries.json ├── unemployment.tsv ├── uniform-2d.json ├── us-10m.json ├── volcano.json ├── weather.json ├── wheat.json └── world-110m.json └── vega-specs ├── airports.vg.json ├── arc-diagram.vg.json ├── arc.vg.json ├── area.vg.json ├── autosize-fit-x.vg.json ├── autosize-fit-y.vg.json ├── autosize-fit.vg.json ├── bar-hover-label.vg.json ├── bar-rangestep.vg.json ├── bar-time.vg.json ├── bar.vg.json ├── barley.vg.json ├── budget-forecasts.vg.json ├── chart-rangestep.vg.json ├── chart.vg.json ├── choropleth.vg.json ├── contour-map.vg.json ├── contour-scatter.vg.json ├── corner-radius.vg.json ├── crossfilter-multi.vg.json ├── crossfilter.vg.json ├── density.vg.json ├── dimpvis.vg.json ├── dot-plot.vg.json ├── driving.vg.json ├── dynamic-format.vg.json ├── dynamic-url.vg.json ├── error.vg.json ├── falkensee.vg.json ├── flush-axis-labels.vg.json ├── font-size-steps.vg.json ├── force-beeswarm.vg.json ├── force-network.vg.json ├── gapminder.vg.json ├── gradient.vg.json ├── grouped-bar.vg.json ├── heatmap-image.vg.json ├── heatmap-lines.vg.json ├── heatmap-sinusoids.vg.json ├── heatmap.vg.json ├── histogram.vg.json ├── hops.vg.json ├── horizon.vg.json ├── images-inline.vg.json ├── images.vg.json ├── isocontour-airports.vg.json ├── isocontour-precipitation.vg.json ├── isocontour-volcano.vg.json ├── jobs.vg.json ├── kde.vg.json ├── layout-facet.vg.json ├── layout-hconcat.vg.json ├── layout-splom.vg.json ├── layout-vconcat.vg.json ├── layout-wrap.vg.json ├── legends-continuous.vg.json ├── legends-discrete.vg.json ├── legends-ordinal.vg.json ├── legends-symbol.vg.json ├── legends.vg.json ├── lifelines.vg.json ├── map-area-compare.vg.json ├── map-bind.vg.json ├── map-fit.vg.json ├── map-point-radius.vg.json ├── map.vg.json ├── matrix-reorder.vg.json ├── movies-sort.vg.json ├── nested-plot.vg.json ├── nulls-histogram.vg.json ├── nulls-scatter-plot.vg.json ├── overview-detail-bins.vg.json ├── overview-detail.vg.json ├── panzoom.vg.json ├── parallel-coords.vg.json ├── playfair.vg.json ├── population.vg.json ├── quantile-dot-plot.vg.json ├── quantile-quantile-plot.vg.json ├── regression.vg.json ├── scales-bin.vg.json ├── scales-discretize.vg.json ├── scatter-brush-filter.vg.json ├── scatter-brush-panzoom.vg.json ├── scatter-plot-contours.vg.json ├── scatter-plot-guides.vg.json ├── scatter-plot-heatmap.vg.json ├── scatter-plot.vg.json ├── shift-select.vg.json ├── splom-inner.vg.json ├── splom-outer.vg.json ├── stacked-area.vg.json ├── stacked-bar.vg.json ├── stocks-index.vg.json ├── symbol-angle.vg.json ├── text-multiline.vg.json ├── titles.vg.json ├── tree-cluster.vg.json ├── tree-nest.vg.json ├── tree-radial-bundle.vg.json ├── tree-radial.vg.json ├── treemap.vg.json ├── violin-plot.vg.json ├── weather.vg.json └── window.vg.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/README.md -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/deps.edn -------------------------------------------------------------------------------- /resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vega-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/resources/vega-lite.js -------------------------------------------------------------------------------- /resources/vega.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/resources/vega.js -------------------------------------------------------------------------------- /src/applied_science/darkstar.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/src/applied_science/darkstar.clj -------------------------------------------------------------------------------- /test/applied_science/darkstar_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/darkstar_test.clj -------------------------------------------------------------------------------- /test/applied_science/data/7zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/7zip.png -------------------------------------------------------------------------------- /test/applied_science/data/airports.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/airports.csv -------------------------------------------------------------------------------- /test/applied_science/data/annual-precip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/annual-precip.json -------------------------------------------------------------------------------- /test/applied_science/data/barley.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/barley.json -------------------------------------------------------------------------------- /test/applied_science/data/budgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/budgets.json -------------------------------------------------------------------------------- /test/applied_science/data/cars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/cars.json -------------------------------------------------------------------------------- /test/applied_science/data/chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/chart.json -------------------------------------------------------------------------------- /test/applied_science/data/driving.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/driving.json -------------------------------------------------------------------------------- /test/applied_science/data/earthquakes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/earthquakes.json -------------------------------------------------------------------------------- /test/applied_science/data/ffox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/ffox.png -------------------------------------------------------------------------------- /test/applied_science/data/flare-dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/flare-dependencies.json -------------------------------------------------------------------------------- /test/applied_science/data/flare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/flare.json -------------------------------------------------------------------------------- /test/applied_science/data/flights-200k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/flights-200k.json -------------------------------------------------------------------------------- /test/applied_science/data/flights-airport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/flights-airport.csv -------------------------------------------------------------------------------- /test/applied_science/data/gapminder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/gapminder.json -------------------------------------------------------------------------------- /test/applied_science/data/gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/gimp.png -------------------------------------------------------------------------------- /test/applied_science/data/iris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/iris.json -------------------------------------------------------------------------------- /test/applied_science/data/jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/jobs.json -------------------------------------------------------------------------------- /test/applied_science/data/miserables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/miserables.json -------------------------------------------------------------------------------- /test/applied_science/data/monarchs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/monarchs.json -------------------------------------------------------------------------------- /test/applied_science/data/movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/movies.json -------------------------------------------------------------------------------- /test/applied_science/data/normal-2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/normal-2d.json -------------------------------------------------------------------------------- /test/applied_science/data/population.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/population.json -------------------------------------------------------------------------------- /test/applied_science/data/seattle-temps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/seattle-temps.csv -------------------------------------------------------------------------------- /test/applied_science/data/sp500.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/sp500.csv -------------------------------------------------------------------------------- /test/applied_science/data/stocks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/stocks.csv -------------------------------------------------------------------------------- /test/applied_science/data/unemployment-across-industries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/unemployment-across-industries.json -------------------------------------------------------------------------------- /test/applied_science/data/unemployment.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/unemployment.tsv -------------------------------------------------------------------------------- /test/applied_science/data/uniform-2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/uniform-2d.json -------------------------------------------------------------------------------- /test/applied_science/data/us-10m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/us-10m.json -------------------------------------------------------------------------------- /test/applied_science/data/volcano.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/volcano.json -------------------------------------------------------------------------------- /test/applied_science/data/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/weather.json -------------------------------------------------------------------------------- /test/applied_science/data/wheat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/wheat.json -------------------------------------------------------------------------------- /test/applied_science/data/world-110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/data/world-110m.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/airports.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/airports.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/arc-diagram.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/arc-diagram.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/arc.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/arc.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/area.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/area.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/autosize-fit-x.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/autosize-fit-x.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/autosize-fit-y.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/autosize-fit-y.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/autosize-fit.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/autosize-fit.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/bar-hover-label.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/bar-hover-label.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/bar-rangestep.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/bar-rangestep.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/bar-time.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/bar-time.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/bar.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/bar.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/barley.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/barley.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/budget-forecasts.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/budget-forecasts.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/chart-rangestep.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/chart-rangestep.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/chart.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/chart.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/choropleth.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/choropleth.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/contour-map.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/contour-map.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/contour-scatter.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/contour-scatter.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/corner-radius.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/corner-radius.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/crossfilter-multi.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/crossfilter-multi.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/crossfilter.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/crossfilter.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/density.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/density.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/dimpvis.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/dimpvis.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/dot-plot.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/dot-plot.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/driving.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/driving.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/dynamic-format.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/dynamic-format.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/dynamic-url.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/dynamic-url.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/error.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/error.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/falkensee.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/falkensee.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/flush-axis-labels.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/flush-axis-labels.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/font-size-steps.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/font-size-steps.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/force-beeswarm.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/force-beeswarm.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/force-network.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/force-network.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/gapminder.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/gapminder.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/gradient.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/gradient.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/grouped-bar.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/grouped-bar.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/heatmap-image.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/heatmap-image.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/heatmap-lines.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/heatmap-lines.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/heatmap-sinusoids.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/heatmap-sinusoids.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/heatmap.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/heatmap.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/histogram.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/histogram.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/hops.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/hops.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/horizon.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/horizon.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/images-inline.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/images-inline.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/images.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/images.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/isocontour-airports.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/isocontour-airports.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/isocontour-precipitation.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/isocontour-precipitation.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/isocontour-volcano.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/isocontour-volcano.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/jobs.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/jobs.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/kde.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/kde.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/layout-facet.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/layout-facet.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/layout-hconcat.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/layout-hconcat.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/layout-splom.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/layout-splom.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/layout-vconcat.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/layout-vconcat.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/layout-wrap.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/layout-wrap.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/legends-continuous.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/legends-continuous.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/legends-discrete.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/legends-discrete.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/legends-ordinal.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/legends-ordinal.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/legends-symbol.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/legends-symbol.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/legends.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/legends.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/lifelines.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/lifelines.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/map-area-compare.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/map-area-compare.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/map-bind.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/map-bind.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/map-fit.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/map-fit.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/map-point-radius.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/map-point-radius.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/map.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/map.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/matrix-reorder.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/matrix-reorder.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/movies-sort.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/movies-sort.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/nested-plot.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/nested-plot.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/nulls-histogram.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/nulls-histogram.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/nulls-scatter-plot.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/nulls-scatter-plot.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/overview-detail-bins.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/overview-detail-bins.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/overview-detail.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/overview-detail.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/panzoom.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/panzoom.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/parallel-coords.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/parallel-coords.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/playfair.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/playfair.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/population.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/population.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/quantile-dot-plot.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/quantile-dot-plot.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/quantile-quantile-plot.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/quantile-quantile-plot.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/regression.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/regression.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/scales-bin.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/scales-bin.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/scales-discretize.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/scales-discretize.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/scatter-brush-filter.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/scatter-brush-filter.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/scatter-brush-panzoom.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/scatter-brush-panzoom.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/scatter-plot-contours.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/scatter-plot-contours.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/scatter-plot-guides.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/scatter-plot-guides.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/scatter-plot-heatmap.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/scatter-plot-heatmap.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/scatter-plot.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/scatter-plot.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/shift-select.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/shift-select.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/splom-inner.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/splom-inner.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/splom-outer.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/splom-outer.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/stacked-area.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/stacked-area.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/stacked-bar.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/stacked-bar.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/stocks-index.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/stocks-index.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/symbol-angle.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/symbol-angle.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/text-multiline.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/text-multiline.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/titles.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/titles.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/tree-cluster.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/tree-cluster.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/tree-nest.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/tree-nest.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/tree-radial-bundle.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/tree-radial-bundle.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/tree-radial.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/tree-radial.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/treemap.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/treemap.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/violin-plot.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/violin-plot.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/weather.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/weather.vg.json -------------------------------------------------------------------------------- /test/applied_science/vega-specs/window.vg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/applied-science/darkstar/HEAD/test/applied_science/vega-specs/window.vg.json --------------------------------------------------------------------------------