scholar_search {tinyscholar}R Documentation

Search Google Scholar Highly Related Papers or Author

Description

Search Google Scholar Highly Related Papers or Author

Usage

scholar_search(
  keyword,
  is_author = TRUE,
  server_url = "https://api.scaleserp.com",
  server_key = NULL
)

Arguments

keyword

A keyword, can be author name, e.g. "Shixiang Wang".

is_author

Default is TRUE, find author information, if FALSE, return the first page result in search engine.

server_url

Server URL, here I use Scale SERP API.

server_key

Key for searching data (multiple is acceptable), you can obtain it from URL above. If not set, use personal key from Shixiang. Total 125x2 free searches per month.

Value

A data.frame or a list.

Examples


x <- scholar_search("Shixiang Wang")
x
x <- scholar_search("Shixiang Wang", is_author = FALSE)
if (!is.null(x)) {
  x$gt
}


[Package tinyscholar version 0.1.7 Index]