Published
Edited
Jul 12, 2018
3 stars
Insert cell
Insert cell
Insert cell
multipilesGraph = ({
"nodes": [
{"name":"A"},
{"name":"B"},
{"name":"C"},
{"name":"D"}
],
"times": [
{"name": 1900, "matrix": [
[ 0, 1, 0.3, 0.1],
[ 1, 0, 0.5, 0.1],
[0.3, 0.5, 0, 0],
[0.1, 0.1, 0, 0]
]},
{"name": 1901, "matrix": [
[ 0, 0.9, 0.2, 0.3],
[0.9, 0, 0.6, 0.3],
[0.2, 0.6, 0, 0],
[0.3, 0.3, 0, 0]
]},
{"name": 1902, "matrix": [
[ 0, 0.6, 0.1, 0.5],
[0.6, 0, 0.7, 0.5],
[0.1, 0.7, 0, 0],
[0.5, 0.5, 0, 0]
]}
]
})
Insert cell
Insert cell
cxGraph = ({
"nodes": [{"@id": 1}, {"@id": 2}, {"@id": 3}],
"edges": [{"s": 1, "@id": 4, "t": 2},
{"s": 2, "@id": 5, "t": 3}],
"cartesianLayout": [{"x": 100, "node": 1, "y": 100},
{"x": 200, "node": 2, "y": 200},
{"x": 100, "node": 3, "y": 200}]
})
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
falcorGraph = ({
todosById: {
"44": {
name: "get milk from corner store",
done: false,
prerequisites: [{ $type: "ref", value: ["todosById", 54] }]
},
"54": {
name: "withdraw money from ATM",
done: false,
prerequisites: []
}
},
todos: [
{ $type: "ref", value: ["todosById", 44] },
{ $type: "ref", value: ["todosById", 54] }
]
})
Insert cell
Insert cell
Insert cell
Insert cell
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