Last active
January 24, 2018 14:48
-
-
Save kantord/57ec4e9533fcc91f8d413cc760fd9bcd to your computer and use it in GitHub Desktop.
Cereals
This file contains hidden or 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
{ | |
"component": "root", | |
"args": {"title": "Cereals"}, | |
"data": [ | |
{"component": "text", | |
"args": {"tagName": "h1"}, | |
"data": "Cereals" | |
}, | |
{"component": "text", | |
"args": {"tagName": "h2"}, | |
"data": "By calories" | |
}, | |
{"component": "chart", | |
"args": {"type": "bar", "loader": "csv", "query": "{\"columns\": [(sort_by(-(.calories | tonumber)) | .[] | [.name, .calories])]}"}, | |
"data": "https://gist.githubusercontent.com/ZeningQu/6184eaf8faa533e320abc938c4738c3e/raw/40f237de825061faa8721c2293b79c46979780b4/cereals.csv" | |
}, | |
{"component": "text", | |
"args": {"tagName": "h2"}, | |
"data": "By nutritional profile" | |
}, | |
{"component": "columns", | |
"args": {"loader": "csv", "columns": 4, "query": ".[] | {\"component\": \"rows\", \"data\": [{\"component\": \"text\", \"args\": {\"tagName\": \"h3\"}, \"data\": .name}, {\"component\": \"chart\", \"args\": {\"type\": \"pie\"}, \"data\": {\"columns\": [[\"protein\", .protein], [\"carbo\", .carbo], [\"sugars\", .sugars], [\"fat\", .fat]]}}]}"}, | |
"data": "https://gist.githubusercontent.com/ZeningQu/6184eaf8faa533e320abc938c4738c3e/raw/40f237de825061faa8721c2293b79c46979780b4/cereals.csv" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment