Published
Edited
Apr 14, 2022
18 forks
Importers
13 stars
Also listed in…
Curated Datasets
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
db
SELECT * FROM items
Insert cell
Insert cell
Insert cell
db
SELECT * FROM events LIMIT 100
Insert cell
Insert cell
db
SELECT type, COUNT(*)::INT AS count FROM events GROUP BY type ORDER BY count DESC
Insert cell
Insert cell
db
SELECT MIN(date) AS min, MAX(date) AS max FROM events
Insert cell
Insert cell
db
SELECT *
FROM events
JOIN items on events.item_id = items.id
WHERE type = 'purchase'
Insert cell
purchases
Insert cell
Plot.plot({
marks: [
Plot.rectY(
purchases,
Plot.binX(
{ y: "sum" },
{
x: "date",
y: "price_in_usd",
fill: "category",
thresholds: d3.utcDay,
}
)
)
],
color: { legend: true, columns: "100px" },
})
Insert cell
Insert cell
db
SELECT * FROM users LIMIT 100
Insert cell
Insert cell
db
SELECT date_trunc('day', date) as day, count(*)::INT as count
FROM users
WHERE date > TIMESTAMP '2020-07-01'
GROUP BY day
Insert cell
Insert cell
Plot.rectY(dailyFirstTouch, { x: "day", y: "count", interval: d3.utcDay }).plot()
Insert cell
Insert cell
Insert cell
Insert cell
items = FileAttachment("items.csv").csv({ typed: true })
Insert cell
events = FileAttachment("events@1.csv").csv({ typed: true })
Insert cell
users = FileAttachment("users.csv").csv({ typed: true })
Insert cell
Insert cell
Insert cell
Insert cell
db = DuckDBClient.of([
FileAttachment("items.parquet"),
FileAttachment("events@1.parquet"),
FileAttachment("users@1.parquet"),
])
Insert cell
db.describe()
Insert cell
Insert cell
Insert cell
Insert cell
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