Public
Edited
Jun 13, 2023
Insert cell
Insert cell
codigos_rendimiento = FileAttachment("codigos_rendimiento.xlsx").xlsx()
Insert cell
rendimiento = codigos_rendimiento.sheet("Hoja1", { headers: true })
Insert cell
rendimiento
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
data = [
{ name: "John", age: 25, city: "New York" },
{ name: "Jane", age: 30, city: "London" },
{ name: "Bob", age: 35, city: "Paris" },
{ name: "Bob", age: 35, city: "Paris" },
{ name: "Bob", age: 35, city: "Paris" },
{ name: "Bob", age: 35, city: "Paris" },
{ name: "Bob", age: 35, city: "Paris" },
];


Insert cell
table = html`<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>City</th>
</tr>
</thead>
<tbody>
${data.map((row) => html`
<tr>
<td>${row.name}</td>
<td>${row.age}</td>
<td>${row.city}</td>
</tr>
`)}
</tbody>
</table>`
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