├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── _deneb ├── Deneb Feature Examples.pbix ├── README.md └── password-slicer │ ├── Pseudo-RLS.pbix │ ├── README.md │ └── password-slicer.json ├── _drafts ├── README.md ├── dot-plot.json.json ├── not-a-chart-just-a-horse │ ├── README.md │ ├── cards.json │ ├── horse.csv │ ├── horse.json │ └── map-144k-cities.json ├── red-blue-words-in-the-text.json └── us-population-race.json ├── _images ├── README.md ├── vega-examples-tumbnails-1.png ├── vega-examples-tumbnails-2.png └── vega-examples-tumbnails.png ├── bamboo-chart ├── bamboo-chart.json └── risk-poverty-dataset-full.csv ├── bar-chart-with-temp ├── README.md ├── bar-chart-with-temp.json └── bike-monthly-temp.csv ├── box-plot-waterfall ├── box-plot-waterfall.json └── data-bike-box-plot.csv ├── column-line-dynamical ├── Column and Line.pbix ├── README.md └── column-line-dynamical.json ├── donut-chart-multi-rings ├── donut-chart-multi-rings-diversity-data.csv └── donut-chart-multi-rings.json ├── earthquakes-globe ├── countries-110m.json └── earthquakes-globe.json ├── fan-chart ├── data-population.csv └── fan-chart.json ├── floral-cartogram ├── floral-cartogram.json ├── logo.png └── wgi-gdp-data-clean.csv ├── ibcs-three-tier-chart ├── README.md ├── ibcs-three-tier-chart-data.csv └── ibcs-three-tier-chart.json ├── map-magnifier ├── README.md ├── map-magnifier-tooltip.json └── map-magnifier.json ├── music-to-dataviz ├── music-to-dataviz.csv └── music-to-dataviz.json ├── nightingale-rose ├── README.md ├── nightingale-facsimile.png ├── nightingale-rose-data.csv └── nightingale-rose-diagram.json ├── nyt-spiral-graph ├── nyt-spiral-graph.json └── us-covid-for-nyt-spiral.csv ├── openai-chatgpt ├── README.md └── openai-barchart.json ├── population-pyramid ├── Qatar1950-2100Population.csv └── population-pyramid.json ├── radar-chart ├── data-bike-annual.csv ├── dataset-bike-weekly.csv ├── radar-chart-bike-annual.json ├── radar-chart-bike-weekly.json └── readme.md ├── scatter-plot ├── README.md ├── data-bike-scatter-weather.csv └── scatter-plot-bike.json ├── small-multiple-box-plot ├── README.md ├── data-bike-box-plot.csv └── small-multiple-box-plot-bike.json ├── small-multiple-combined ├── README.md └── small-multiple-combined-bike.json ├── small-multiple-line-chart ├── README.md ├── data-bike-line-chart.csv └── small-multiple-line-chart-bike.json ├── table-matrix ├── table-matrix-flags.csv ├── table-matrix-trade.csv └── table-matrix.json ├── table-scrollbar ├── README.md └── table-scrollbar.json ├── temperature-line-area ├── README.md ├── air-temp.csv └── temperature-line-area.json ├── us-elections-chart ├── README.md ├── data-us-elections.csv └── us-elections.json ├── warming-heatmap ├── all-countries-heatmap.json └── temperature-change-country.csv ├── warming-map ├── README.md └── warming-map.json ├── warming-scatter-plot ├── README.md └── warming-scatter-plot.json ├── warming-small-multiples └── warming-small-multiples.json ├── warming-stripe ├── README.md ├── global-temp.csv └── warming-stripe.json └── world-map-cities ├── 43Kcities[1].csv ├── world-110m.json └── world-map-cities.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: avatorl 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/README.md -------------------------------------------------------------------------------- /_deneb/Deneb Feature Examples.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_deneb/Deneb Feature Examples.pbix -------------------------------------------------------------------------------- /_deneb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_deneb/README.md -------------------------------------------------------------------------------- /_deneb/password-slicer/Pseudo-RLS.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_deneb/password-slicer/Pseudo-RLS.pbix -------------------------------------------------------------------------------- /_deneb/password-slicer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_deneb/password-slicer/README.md -------------------------------------------------------------------------------- /_deneb/password-slicer/password-slicer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_deneb/password-slicer/password-slicer.json -------------------------------------------------------------------------------- /_drafts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_drafts/README.md -------------------------------------------------------------------------------- /_drafts/dot-plot.json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_drafts/dot-plot.json.json -------------------------------------------------------------------------------- /_drafts/not-a-chart-just-a-horse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_drafts/not-a-chart-just-a-horse/README.md -------------------------------------------------------------------------------- /_drafts/not-a-chart-just-a-horse/cards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_drafts/not-a-chart-just-a-horse/cards.json -------------------------------------------------------------------------------- /_drafts/not-a-chart-just-a-horse/horse.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_drafts/not-a-chart-just-a-horse/horse.csv -------------------------------------------------------------------------------- /_drafts/not-a-chart-just-a-horse/horse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_drafts/not-a-chart-just-a-horse/horse.json -------------------------------------------------------------------------------- /_drafts/not-a-chart-just-a-horse/map-144k-cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_drafts/not-a-chart-just-a-horse/map-144k-cities.json -------------------------------------------------------------------------------- /_drafts/red-blue-words-in-the-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_drafts/red-blue-words-in-the-text.json -------------------------------------------------------------------------------- /_drafts/us-population-race.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_drafts/us-population-race.json -------------------------------------------------------------------------------- /_images/README.md: -------------------------------------------------------------------------------- 1 | # A folder for images 2 | -------------------------------------------------------------------------------- /_images/vega-examples-tumbnails-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_images/vega-examples-tumbnails-1.png -------------------------------------------------------------------------------- /_images/vega-examples-tumbnails-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_images/vega-examples-tumbnails-2.png -------------------------------------------------------------------------------- /_images/vega-examples-tumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/_images/vega-examples-tumbnails.png -------------------------------------------------------------------------------- /bamboo-chart/bamboo-chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/bamboo-chart/bamboo-chart.json -------------------------------------------------------------------------------- /bamboo-chart/risk-poverty-dataset-full.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/bamboo-chart/risk-poverty-dataset-full.csv -------------------------------------------------------------------------------- /bar-chart-with-temp/README.md: -------------------------------------------------------------------------------- 1 | # Bar chart with average temperature indicators 2 | -------------------------------------------------------------------------------- /bar-chart-with-temp/bar-chart-with-temp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/bar-chart-with-temp/bar-chart-with-temp.json -------------------------------------------------------------------------------- /bar-chart-with-temp/bike-monthly-temp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/bar-chart-with-temp/bike-monthly-temp.csv -------------------------------------------------------------------------------- /box-plot-waterfall/box-plot-waterfall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/box-plot-waterfall/box-plot-waterfall.json -------------------------------------------------------------------------------- /box-plot-waterfall/data-bike-box-plot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/box-plot-waterfall/data-bike-box-plot.csv -------------------------------------------------------------------------------- /column-line-dynamical/Column and Line.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/column-line-dynamical/Column and Line.pbix -------------------------------------------------------------------------------- /column-line-dynamical/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/column-line-dynamical/README.md -------------------------------------------------------------------------------- /column-line-dynamical/column-line-dynamical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/column-line-dynamical/column-line-dynamical.json -------------------------------------------------------------------------------- /donut-chart-multi-rings/donut-chart-multi-rings-diversity-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/donut-chart-multi-rings/donut-chart-multi-rings-diversity-data.csv -------------------------------------------------------------------------------- /donut-chart-multi-rings/donut-chart-multi-rings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/donut-chart-multi-rings/donut-chart-multi-rings.json -------------------------------------------------------------------------------- /earthquakes-globe/countries-110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/earthquakes-globe/countries-110m.json -------------------------------------------------------------------------------- /earthquakes-globe/earthquakes-globe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/earthquakes-globe/earthquakes-globe.json -------------------------------------------------------------------------------- /fan-chart/data-population.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/fan-chart/data-population.csv -------------------------------------------------------------------------------- /fan-chart/fan-chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/fan-chart/fan-chart.json -------------------------------------------------------------------------------- /floral-cartogram/floral-cartogram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/floral-cartogram/floral-cartogram.json -------------------------------------------------------------------------------- /floral-cartogram/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/floral-cartogram/logo.png -------------------------------------------------------------------------------- /floral-cartogram/wgi-gdp-data-clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/floral-cartogram/wgi-gdp-data-clean.csv -------------------------------------------------------------------------------- /ibcs-three-tier-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/ibcs-three-tier-chart/README.md -------------------------------------------------------------------------------- /ibcs-three-tier-chart/ibcs-three-tier-chart-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/ibcs-three-tier-chart/ibcs-three-tier-chart-data.csv -------------------------------------------------------------------------------- /ibcs-three-tier-chart/ibcs-three-tier-chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/ibcs-three-tier-chart/ibcs-three-tier-chart.json -------------------------------------------------------------------------------- /map-magnifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/map-magnifier/README.md -------------------------------------------------------------------------------- /map-magnifier/map-magnifier-tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/map-magnifier/map-magnifier-tooltip.json -------------------------------------------------------------------------------- /map-magnifier/map-magnifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/map-magnifier/map-magnifier.json -------------------------------------------------------------------------------- /music-to-dataviz/music-to-dataviz.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/music-to-dataviz/music-to-dataviz.csv -------------------------------------------------------------------------------- /music-to-dataviz/music-to-dataviz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/music-to-dataviz/music-to-dataviz.json -------------------------------------------------------------------------------- /nightingale-rose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/nightingale-rose/README.md -------------------------------------------------------------------------------- /nightingale-rose/nightingale-facsimile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/nightingale-rose/nightingale-facsimile.png -------------------------------------------------------------------------------- /nightingale-rose/nightingale-rose-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/nightingale-rose/nightingale-rose-data.csv -------------------------------------------------------------------------------- /nightingale-rose/nightingale-rose-diagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/nightingale-rose/nightingale-rose-diagram.json -------------------------------------------------------------------------------- /nyt-spiral-graph/nyt-spiral-graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/nyt-spiral-graph/nyt-spiral-graph.json -------------------------------------------------------------------------------- /nyt-spiral-graph/us-covid-for-nyt-spiral.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/nyt-spiral-graph/us-covid-for-nyt-spiral.csv -------------------------------------------------------------------------------- /openai-chatgpt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/openai-chatgpt/README.md -------------------------------------------------------------------------------- /openai-chatgpt/openai-barchart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/openai-chatgpt/openai-barchart.json -------------------------------------------------------------------------------- /population-pyramid/Qatar1950-2100Population.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/population-pyramid/Qatar1950-2100Population.csv -------------------------------------------------------------------------------- /population-pyramid/population-pyramid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/population-pyramid/population-pyramid.json -------------------------------------------------------------------------------- /radar-chart/data-bike-annual.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/radar-chart/data-bike-annual.csv -------------------------------------------------------------------------------- /radar-chart/dataset-bike-weekly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/radar-chart/dataset-bike-weekly.csv -------------------------------------------------------------------------------- /radar-chart/radar-chart-bike-annual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/radar-chart/radar-chart-bike-annual.json -------------------------------------------------------------------------------- /radar-chart/radar-chart-bike-weekly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/radar-chart/radar-chart-bike-weekly.json -------------------------------------------------------------------------------- /radar-chart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/radar-chart/readme.md -------------------------------------------------------------------------------- /scatter-plot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/scatter-plot/README.md -------------------------------------------------------------------------------- /scatter-plot/data-bike-scatter-weather.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/scatter-plot/data-bike-scatter-weather.csv -------------------------------------------------------------------------------- /scatter-plot/scatter-plot-bike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/scatter-plot/scatter-plot-bike.json -------------------------------------------------------------------------------- /small-multiple-box-plot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/small-multiple-box-plot/README.md -------------------------------------------------------------------------------- /small-multiple-box-plot/data-bike-box-plot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/small-multiple-box-plot/data-bike-box-plot.csv -------------------------------------------------------------------------------- /small-multiple-box-plot/small-multiple-box-plot-bike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/small-multiple-box-plot/small-multiple-box-plot-bike.json -------------------------------------------------------------------------------- /small-multiple-combined/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/small-multiple-combined/README.md -------------------------------------------------------------------------------- /small-multiple-combined/small-multiple-combined-bike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/small-multiple-combined/small-multiple-combined-bike.json -------------------------------------------------------------------------------- /small-multiple-line-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/small-multiple-line-chart/README.md -------------------------------------------------------------------------------- /small-multiple-line-chart/data-bike-line-chart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/small-multiple-line-chart/data-bike-line-chart.csv -------------------------------------------------------------------------------- /small-multiple-line-chart/small-multiple-line-chart-bike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/small-multiple-line-chart/small-multiple-line-chart-bike.json -------------------------------------------------------------------------------- /table-matrix/table-matrix-flags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/table-matrix/table-matrix-flags.csv -------------------------------------------------------------------------------- /table-matrix/table-matrix-trade.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/table-matrix/table-matrix-trade.csv -------------------------------------------------------------------------------- /table-matrix/table-matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/table-matrix/table-matrix.json -------------------------------------------------------------------------------- /table-scrollbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/table-scrollbar/README.md -------------------------------------------------------------------------------- /table-scrollbar/table-scrollbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/table-scrollbar/table-scrollbar.json -------------------------------------------------------------------------------- /temperature-line-area/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/temperature-line-area/README.md -------------------------------------------------------------------------------- /temperature-line-area/air-temp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/temperature-line-area/air-temp.csv -------------------------------------------------------------------------------- /temperature-line-area/temperature-line-area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/temperature-line-area/temperature-line-area.json -------------------------------------------------------------------------------- /us-elections-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/us-elections-chart/README.md -------------------------------------------------------------------------------- /us-elections-chart/data-us-elections.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/us-elections-chart/data-us-elections.csv -------------------------------------------------------------------------------- /us-elections-chart/us-elections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/us-elections-chart/us-elections.json -------------------------------------------------------------------------------- /warming-heatmap/all-countries-heatmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/warming-heatmap/all-countries-heatmap.json -------------------------------------------------------------------------------- /warming-heatmap/temperature-change-country.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/warming-heatmap/temperature-change-country.csv -------------------------------------------------------------------------------- /warming-map/README.md: -------------------------------------------------------------------------------- 1 | # Warming map 2 | -------------------------------------------------------------------------------- /warming-map/warming-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/warming-map/warming-map.json -------------------------------------------------------------------------------- /warming-scatter-plot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/warming-scatter-plot/README.md -------------------------------------------------------------------------------- /warming-scatter-plot/warming-scatter-plot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/warming-scatter-plot/warming-scatter-plot.json -------------------------------------------------------------------------------- /warming-small-multiples/warming-small-multiples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/warming-small-multiples/warming-small-multiples.json -------------------------------------------------------------------------------- /warming-stripe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/warming-stripe/README.md -------------------------------------------------------------------------------- /warming-stripe/global-temp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/warming-stripe/global-temp.csv -------------------------------------------------------------------------------- /warming-stripe/warming-stripe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/warming-stripe/warming-stripe.json -------------------------------------------------------------------------------- /world-map-cities/43Kcities[1].csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/world-map-cities/43Kcities[1].csv -------------------------------------------------------------------------------- /world-map-cities/world-110m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/world-map-cities/world-110m.json -------------------------------------------------------------------------------- /world-map-cities/world-map-cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatorl/DataViz-Vega/HEAD/world-map-cities/world-map-cities.json --------------------------------------------------------------------------------