R/api.R
S2_author2.Rd
This function retrieves Semantic Scholar data for an author given the S2Author identifier
S2_author2( S2AuthorId, details = c("papers"), offset = 0, limit = 10, fields = NULL )
S2AuthorId | string with author identifier |
---|---|
details | one of "authors", "citations" or "references" |
offset | integer paging offset |
limit | integer paging length |
fields | extra fields to include, for example "title,authors" |
list representing author object
Example of Accessible Paper Identifiers:
S2 Author ID : 1681232
if (FALSE) { S2_author(1681232) S2_author2(1681232, fields="affiliations,aliases,externalIds") S2_author2(1681232, fields="paperId,externalIds", details = "papers", offset=0, limit = 100) }