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
)

Arguments

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"

Value

list representing author object

Details

Example of Accessible Paper Identifiers:

  • S2 Author ID : 1681232

Examples

if (FALSE) { S2_author(1681232) S2_author2(1681232, fields="affiliations,aliases,externalIds") S2_author2(1681232, fields="paperId,externalIds", details = "papers", offset=0, limit = 100) }