Public
Edited
Jun 22, 2023
3 forks
6 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
actors = get_people({ occupation: "Q33999" }).then(d => d.derive({occupation: d => "actors"}))
Insert cell
musicians = get_people({ occupation: "Q639669" }).then(d => d.derive({occupation: d => "musicians"}))
Insert cell
writers = get_people({occupation: "Q36180"}).then(d => d.derive({occupation: d => "writers"}))
Insert cell
athletes = get_people({occupation: "Q2066131"}).then(d => d.derive({occupation: d => "athletes"}))
Insert cell
politicians = get_people({ occupation: "Q82955" }).then(d => d.derive({occupation: d => "politicians"}))
Insert cell
filmdirectors = get_people({occupation: "Q2526255"}).then(d => d.derive({occupation: d => "film director"}))
Insert cell
df = actors
.concat(musicians)
.concat(writers)
.concat(athletes)
.concat(politicians)
.concat(filmdirectors)
Insert cell
get_people = ({
occupation = "Q33999",
citizenship = "Q142",
birthyear = 1970
}) => {
const query = `PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX schema: <http://schema.org/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
SELECT DISTINCT ?item ?itemLabel ?year ?father ?mother WHERE {
?item wdt:P31 wd:Q5;
wdt:P106/wdt:P279* wd:${occupation};
wdt:P27 wd:${citizenship};
wdt:P569 ?birthdate;
rdfs:label ?itemLabel FILTER(lang(?itemLabel) = "fr") .
?sitelink schema:about ?item;
schema:isPartOf <https://fr.wikipedia.org/>.
FILTER(YEAR( ?birthdate ) >= ${birthyear} )
BIND(YEAR(?birthdate) AS ?year)
OPTIONAL {
?item wdt:P22 ?father.
?fatherlink schema:about ?father;
schema:isPartOf <https://fr.wikipedia.org/>.
}
OPTIONAL {
?item wdt:P25 ?mother.
?motherlink schema:about ?mother;
schema:isPartOf <https://fr.wikipedia.org/>.
}
}`;

return fetch(
`https://qlever.cs.uni-freiburg.de/api/wikidata?query=${encodeURIComponent(
query
)}`,
{ headers: { accept: "application/sparql-results+json" } }
)
.then((response) => response.json())
.then((res) =>
aq
.from(
res.results.bindings.map((d) => ({
item: d.item.value,
itemLabel: d.itemLabel.value,
year: d.year.value,
father: d.father?.value,
mother: d.mother?.value
}))
)
.derive({
daddy: (d) => 1 * (d.father !== undefined),
mommy: (d) => 1 * (d.mother !== undefined),
either: (d) => (d.father !== undefined) | (d.mother !== undefined),
both: (d) => (d.father !== undefined) & (d.mother !== undefined)
})
);
}
Insert cell
// colors from https://colorhunt.co/palette/86a3b8e8d2a6f48484f55050
function sparkbar(max) {
return (x) => htl.html`<div style="
background: #EAC7C7;
color: #444444 ;
width: ${(100 * x) / max}%;
float: left;
padding-right: 3px;
padding-left: 3px;
box-sizing: border-box;
overflow: visible;
display: flex;
justify-content: start;">${x.toLocaleString("en")}`;
}
Insert cell
Insert cell
import { aq, op } from "@uwdata/arquero"
Insert cell
Insert cell
import { stylesheet } from "@ajar/css"
Insert cell
stylesheet
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