Public
Edited
Nov 28, 2022
Insert cell
Insert cell
Plot.plot({
inset: 8,
grid: true,
marks: [
Plot.dot(stats, {x: "usg_pct", y: d => d.ast_pct + d.ts_pct})
]
})
Insert cell
// github lets us fetch without cors problems
jdata1 = fetch("https://llimllib.github.io/nba_data/team_efficiency_2023.json").then(d => d.json())
Insert cell
statsdb = DuckDBClient.of()
Insert cell
statsdb.query(`CREATE TABLE stats AS SELECT * FROM "https://llimllib.github.io/nba_data/players_2023.parquet"`)
Insert cell
statsdb
SELECT * FROM stats
Insert cell
statsdb
select player_name, ast_pct, ts_pct from stats
Insert cell
// Thank you Michael Whitaker! https://observablehq.com/@monitus/get-remote-parquet-files-directly
function getRemoteFile(url) {
const baseURL = new URL(url);
return {
file: {
name: baseURL.pathname,
url: function () {
return url;
}
}
};
}
Insert cell
// You _can_ get a file directly from github.io, which has a loose CORS policy
thisworks = DuckDBClient.of({
nba: getRemoteFile("https://llimllib.github.io/nba_data/players_2023.parquet")
})
Insert cell
// But you can't get a file directly from github.com because of CORS
thisfails = DuckDBClient.of({
nba: getRemoteFile("https://github.com/llimllib/nba_data/raw/main/data/playerstats.parquet")
})
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