Published
Edited
Apr 13, 2021
2 forks
8 stars
Insert cell
md`# JSON vs CSV`
Insert cell
data = Array.from({ length: 300 }).map((d, i) => ({
name: `John ${i}`,
age: Math.floor(Math.random() * 120),
height: Math.random() * 2.0
}))
Insert cell
csvText = `name,age,height
John,15,6.6
Andy,24,6.2
Drew,17,6`
Insert cell
dataCSV = d3.csvParse(csvText, d3.autoType)

Insert cell
jsonText = `[{"name":"John","age":15,"height":6.6},{"name":"Andy","age":24,"height":6.2},{"name":"Drew","age":17,"height":6}]`
Insert cell
dataJSON = JSON.parse(jsonText)
Insert cell
data3 = d3.json(
"https://gist.githubusercontent.com/john-guerra/a1bc0af51d76e620574ce47b1e8243e9/raw/9f0116d984f834cefa950d5e7c3cdaa4e431d59a/dataJSON.json"
)
Insert cell
FileAttachment("data.csv")
.text()
.then(res => d3.csvParse(res, d3.autoType))
Insert cell
d3.csvParse(await FileAttachment("data.csv").text(), d3.autoType)
Insert cell
viewof myFile = html`<input type="file"/>`
Insert cell
Files.text(myFile)
Insert cell
viewof alsoMyFile = fileInput({
initialValue: FileAttachment("data.csv")
})
Insert cell
d3.csvParse(await alsoMyFile.text())
Insert cell
d3 = require("d3@6")
Insert cell
import { fileInput } from "@mbostock/file-input-with-initial-value"
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more