Public
Edited
Apr 30
Insert cell
Insert cell
CON_DAO_48930099999.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
file = FileAttachment("CON_DAO_48930099999.csv").text()

Insert cell
data = d3.csvParse(await file)

Insert cell
Plot.line(data, {
x: d => new Date(d.DATE),
y: d => +d.TEMP_ATTRIBUTES,
stroke: "steelblue"
})

Insert cell
Plot.plot({
marks: [
Plot.line(data, {
x: d => new Date(d.DATE),
y: d => +d.TEMP_ATTRIBUTES,
stroke: "steelblue"
})
],
x: { label: "Ngày" },
y: { label: "Nhiệt độ (K)" },
height: 400
})

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