Skip to content

Instantly share code, notes, and snippets.

View n-dragon's full-sized avatar

ndragon n-dragon

  • Paris
View GitHub Profile
@n-dragon
n-dragon / spec.json
Created February 9, 2021 21:38
Vega spec from Tue Feb 09 2021
{
"$schema": "https://vega.github.io/schema/vega/v5.json",
"description": "A basic bar chart example, with value labels shown upon mouse hover.",
"width": 400,
"height": 200,
"padding": 5,
"title":"Infection par pays",
"data": [
{
@n-dragon
n-dragon / spec.json
Created February 9, 2021 10:12
vega architecture
{
"$schema": "https://vega.github.io/schema/vega/v5.json",
"description": "A basic bar chart example, with value labels shown upon mouse hover.",
"width": 200,
"height": 100,
"data": [
{
"name": "table",
@n-dragon
n-dragon / spec.json
Created January 25, 2021 21:05
Vega spec from Mon Jan 25 2021
{
"$schema": "https://vega.github.io/schema/vega/v5.json",
"width": 900,
"height": 560,
"padding": {"top": 0, "left": 0, "right": 0, "bottom": 0},
"signals": [],
"data": [ {
"name": "airports",
"url": "data/airports.csv",
"format": {"type": "csv", "parse": "auto"},