Published
Edited
May 31, 2020
1 fork
Insert cell
md`# NLP on Participedia case`
Insert cell
data = FileAttachment("participedia-case-5729.json").json();
Insert cell
data.article.body
Insert cell
// PEOPLE
nlp(data.article.body).people().out("array");
Insert cell
// organizations
nlp(data.article.body).organizations().out("array");
Insert cell
// DATES
nlp(data.article.body).dates().out('array')
Insert cell
// VERBS
nlp(data.article.body).verbs().out('array')
Insert cell
// NOUNS
nlp(data.article.body).nouns().out('array')
Insert cell
nlp = {
let nlp = await require('compromise@latest')
let plugin = await require('compromise-dates')
nlp.extend(plugin)
return nlp
}
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