Public
Edited
Apr 12, 2023
2 forks
Insert cell
Insert cell
Insert cell
colores = [
{
"color": "negro",
"category": "hue",
"type": "primario",
"code": {
"rgba": [255,255,255,1],
"hex": "#000"
}
},
{
"color": "blanco",
"category": "value",
"code": {
"rgba": [0,0,0,1],
"hex": "#FFF"
}
},
{
"color": "rojo",
"category": "hue",
"type": "primario",
"code": {
"rgba": [255,0,0,1],
"hex": "#FF0"
}
},
{
"color": "azul",
"category": "hue",
"type": "primario",
"code": {
"rgba": [0,0,255,1],
"hex": "#00F"
}
},
{
"color": "amarillo",
"category": "hue",
"type": "primario",
"code": {
"rgba": [255,255,0,1],
"hex": "#FF0"
}
},
{
"color": "verde",
"category": "hue",
"type": "secundario",
"code": {
"rgba": [0,255,0,1],
"hex": "#0F0"
}
},
]
Insert cell
Insert cell
alumnos = d3.csvParse(`ID,Nombre,Apellido
34,Monica Carolina,FABBRO FRIAS
4,Santiago,GUTIERREZ
12,Federico Tomas,PONCIO
7,Fernando,VELIZ
16,Barbara,SIDORUK
24,Marga,KOTMILO
`,d3.autoType)
Insert cell
Insert cell
md`El ${colores[0].color} es un color ${colores[0].type}.`
Insert cell
md`La alumna ${alumnos[5].Nombre} ${alumnos[5].Apellido} está matriculada con el id:${alumnos[5].ID}.`
Insert cell
Insert cell
d3.csvParse(await FileAttachment("focosincendio-v10@1.csv").text(),d3.autoType)
Insert cell
Insert cell
// Link a csv con info sobre libros de Harry Potter en Git
d3.csv("https://gist.githubusercontent.com/um-zagaa/7f7631037d6bfd2f16a1cc48bf769f97/raw/aa19139ce167f66cda52872fcc4db9827343ba08/books.csv",d3.autoType)
Insert cell
Insert cell
artistQuery = (await fetch("https://musicbrainz.org/ws/2/artist/?query=artist:madonna&fmt=json")).json()
Insert cell
Insert cell
Insert cell
import {MockDatabaseClient as DatabaseClient} from "cc1c4f2583af6f34"
Insert cell
Insert cell
client = DatabaseClient("Baby Names") // instancia del cliente
Insert cell
Insert cell
names = client.query(`SELECT name, gender, year, SUM(number) AS number
FROM names
WHERE year > ?
GROUP BY name, gender, year`, [1920])
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
d3 = require("d3@5")
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