You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are different [filters](https://ropensci.github.io/openalexR/articles/Filters)/arguments you can use in `oa_fetch`, depending on which [entity](https://docs.openalex.org/#data) you're interested in:
105
+
There are different [filters](https://ropensci.github.io/openalexR/articles/Filters)/arguments you can use in `oa_fetch`, depending on which [entity](https://developers.openalex.org/guides/key-concepts) you're interested in:
**Update 2024-09-15**: The n-gram API endpoint is [not currently in service](https://docs.openalex.org/api-entities/works/get-n-grams#api-endpoint).
386
+
**Update 2024-09-15**: The n-gram API endpoint is [not currently in service](https://developers.openalex.org/guides/deprecations).
387
387
The following code chunk is not evaluated.
388
388
389
-
OpenAlex offers (limited) support for [fulltext N-grams](https://docs.openalex.org/api-entities/works/get-n-grams#fulltext-coverage) of Work entities (these have IDs starting with `"W"`). Given a vector of work IDs, `oa_ngrams` returns a dataframe of N-gram data (in the `ngrams` list-column) for each work.
389
+
OpenAlex offers (limited) support for [fulltext N-grams](https://developers.openalex.org/guides/deprecations) of Work entities (these have IDs starting with `"W"`). Given a vector of work IDs, `oa_ngrams` returns a dataframe of N-gram data (in the `ngrams` list-column) for each work.
390
390
391
391
```{r ngrams, eval=FALSE, fig.height=3}
392
392
ngrams_data <- oa_ngrams(
@@ -414,7 +414,7 @@ ngrams_data |>
414
414
)
415
415
```
416
416
417
-
`oa_ngrams` can sometimes be slow because the N-grams data can get pretty big, but given that the N-grams are [`"cached via CDN"`](<https://docs.openalex.org/api-entities/works/get-n-grams#api-endpoint>), you may also consider parallelizing for this special case (`oa_ngrams` does this automatically if you have `{curl} >= v5.0.0`).
417
+
`oa_ngrams` can sometimes be slow because the N-grams data can get pretty big, but given that the N-grams are [`"cached via CDN"`](<https://developers.openalex.org/guides/deprecations>), you may also consider parallelizing for this special case (`oa_ngrams` does this automatically if you have `{curl} >= v5.0.0`).
0 commit comments