Snowballer tool automates snowball literature searches
- Get work entity ID(s)
- Hard-code in
control.R
? - Load from an external file?
- Search?
- Hard-code in
- Determine the desired number of degrees of separation from seed articles
- Create infrastructure for looping next top-level step at different degrees of separation
- For each entity ID
- Get works cited by the entity (
cited_by
filter)- Short query to get the number of works (see
meta
>count
field) - Loop to get all works
- Short query to get the number of works (see
- Get works that cite the entity (
cites
filter) -- repeat steps under parallel entry above
- Get works cited by the entity (
- Deduplicate works
- Load results
- Merge results
- Keep unique entries (where row
!duplicated()
)
- Seed article:
https://openalex.org/W3125944002
- Title search:
https://api.openalex.org/works?filter=title.search:Does-the-stock-market-fully-value-intangibles
- Cited by:
https://api.openalex.org/works?filter=cited_by:W3125944002
- Cites:
https://api.openalex.org/works?filter=cites:W3125944002