View download.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
wget https://transtats.bts.gov/PREZIP/$1 --quiet --no-check-certificate | |
unzip -q -o $1 | |
rm $1 |
View spec.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
"description": "A simple bar chart with embedded data.", | |
"data": { | |
"values": [ | |
{"a": "A", "b": 28}, {"a": "B", "b": 55}, {"a": "C", "b": 43}, | |
{"a": "D", "b": 91}, {"a": "E", "b": 81}, {"a": "F", "b": 53}, | |
{"a": "G", "b": 19}, {"a": "H", "b": 87}, {"a": "I", "b": 52} | |
] | |
}, |
View flights-10m.parquet
This file has been truncated, but you can view the full file.
View beer.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name | style | brewery_id | abv | ibu | |
---|---|---|---|---|---|
#002 American I.P.A. | American IPA | 211 | 0.071 | 60 | |
#004 Session I.P.A. | American IPA | 211 | 0.048 | 38 | |
#9 | Fruit / Vegetable Beer | 303 | 0.051 | 20 | |
077XX | American Double / Imperial IPA | 222 | 0.078 | 80 | |
113 IPA | American IPA | 371 | 0.07 | 113 | |
12th Round | American Strong Ale | 376 | 0.076 | 78 | |
13 Rebels ESB | Extra Special / Strong Bitter (ESB) | 433 | 0.052 | 42 | |
1327 Pod's ESB | Extra Special / Strong Bitter (ESB) | 380 | 0.056 | 37 | |
14° ESB | Extra Special / Strong Bitter (ESB) | 75 | 0.056 | 32 |
View spec.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega/v5.json", | |
"description": "An animated scatterplot with N points", | |
"width": 500, | |
"height": 300, | |
"autosize": "none", | |
"signals": [ | |
{ | |
"name": "t", | |
"value": 0, |
View Readme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From https://github.com/cwida/duckdb/releases/tag/master-builds on feb 23, 2021 |
View flights-1m.arrow
This file has been truncated, but you can view the full file.
View spec.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v4.json", | |
"data": {"url": "data/barley.json"}, | |
"hconcat": [ | |
{ | |
"mark": {"type": "line", "size": 3}, | |
"height": 250, | |
"width": {"step": 60}, | |
"encoding": { | |
"x": { |
View spec.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v4.json", | |
"description": "A simple bar chart with embedded data.", | |
"data": { | |
"values": [ | |
{"a": "A", "b": 28}, {"a": "B", "b": 55}, {"a": "C", "b": 43}, | |
{"a": "D", "b": 91}, {"a": "E", "b": 81}, {"a": "F", "b": 53}, | |
{"a": "G", "b": 19}, {"a": "H", "b": 87}, {"a": "I", "b": 52} | |
] | |
}, |
NewerOlder