Public
Edited
Oct 31, 2023
7 forks
Insert cell
Insert cell
Insert cell
Insert cell
hallFile = FileAttachment("HallOfFame.csv").csv({typed:true})
Insert cell
Insert cell
db
SELECT DISTINCT playerID
FROM college
WHERE 250 < (
SELECT weight
FROM people
WHERE playerID = college.playerID
)
Insert cell
db
SELECT playerID
FROM people
WHERE 250 < (
SELECT weight
FROM college
WHERE playerID = people.playerID
)
Insert cell
db
SELECT DISTINCT playerID
FROM college
WHERE 1 = (
SELECT count(*)
FROM hall
WHERE playerID = college.playerID
) AND 'Y' = (
SELECT inducted
FROM hall
WHERE playerID = college.playerID
)
Insert cell
db
SELECT DISTINCT playerID
FROM hall
GROUP BY playerID
HAVING count(*) = 1 AND max(inducted) = 'Y' AND EXISTS (
SELECT *
FROM college
WHERE playerID = hall.playerID
)
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