Published
Edited
May 30, 2022
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
eurirs = await d3.csv("https://raw.githubusercontent.com/gabacode/Eurirs-Charts/main/data/eurirs.csv", d3.autoType);
Insert cell
Insert cell
vega({
data: {values: eurirs},
width,
height: 500,
autosize: "fit",
mark: "line",
encoding: {
x: {"field": "Date", "type": "temporal"},
y: {"field": "20", "type": "quantitative"}
}
})
Insert cell
Insert cell
Insert cell
euribor = await d3.csv("https://raw.githubusercontent.com/gabacode/Eurirs-Charts/main/data/euribor.csv", d3.autoType);
Insert cell
Insert cell
vega({
data: {values: euribor},
width,
height: 500,
autosize: "fit",
mark: "line",
encoding: {
x: {"field": "Date", "type": "temporal"},
y: {"field": "6", "type": "quantitative"}
}
})
Insert cell
vega = require("@observablehq/vega-lite@0.1")
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more