Difference between revisions of "Marc Sandbox"
Jump to navigation
Jump to search
Line 36: | Line 36: | ||
Insert scatterplot | Insert scatterplot | ||
− | + | { | |
+ | "$schema": "https://vega.github.io/schema/vega-lite/v4.json", | ||
+ | "data": {"url": "data/cars.json"}, | ||
+ | "transform": [{ | ||
+ | "calculate": "datum.Origin[0]", | ||
+ | "as": "OriginInitial" | ||
+ | }], | ||
+ | "mark": "text", | ||
+ | "encoding": { | ||
+ | "x": {"field": "Horsepower", "type": "quantitative"}, | ||
+ | "y": {"field": "Miles_per_Gallon", "type": "quantitative"}, | ||
+ | "color": {"field": "Origin", "type": "nominal"}, | ||
+ | "text": {"field": "OriginInitial", "type": "nominal"} | ||
+ | } | ||
+ | } | ||
Revision as of 20:27, 28 April 2020
The Sun is pretty big.[1] The Moon, however, is not so big.[2]
make a graph title
Insert scatterplot
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": {"url": "data/cars.json"}, "transform": [{ "calculate": "datum.Origin[0]", "as": "OriginInitial" }], "mark": "text", "encoding": { "x": {"field": "Horsepower", "type": "quantitative"}, "y": {"field": "Miles_per_Gallon", "type": "quantitative"}, "color": {"field": "Origin", "type": "nominal"}, "text": {"field": "OriginInitial", "type": "nominal"} }
}