tinyscholar {tinyscholar} | R Documentation |
Get Google Scholar Profile
Description
Get Google Scholar Profile
Usage
tinyscholar(
id,
sortby_date = FALSE,
use_cache = TRUE,
cache_dir = file.path(tempdir(), "tinyscholar")
)
Arguments
id |
Your google scholar identifier. You can find it in the URL of your google scholar profile. |
sortby_date |
Logical. If |
use_cache |
If |
cache_dir |
A directory path. |
Value
a Profile
object with list structure.
Examples
# Put one unique Scholar ID from Google Scholar
r <- tinyscholar("FvNp0NkAAAAJ")
r
if (!is.null(r)) {
tb <- scholar_table(r)
tb$citations
tb$publications
pl <- scholar_plot(r)
pl$citations
pl$publications
}
[Package tinyscholar version 0.1.7 Index]