Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bisaloo/coauthors
R package to determine the coauthors of a given person
https://github.com/bisaloo/coauthors
Last synced: 11 days ago
JSON representation
R package to determine the coauthors of a given person
- Host: GitHub
- URL: https://github.com/bisaloo/coauthors
- Owner: Bisaloo
- License: other
- Created: 2021-03-01T15:02:12.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-02T21:38:31.000Z (almost 4 years ago)
- Last Synced: 2024-10-24T16:18:34.859Z (about 2 months ago)
- Language: R
- Homepage: https://bisaloo.github.io/coauthors/
- Size: 65.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# `r devtools::as.package(".")$package`
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![R-CMD-check](https://github.com/Bisaloo/coauthors/workflows/R-CMD-check/badge.svg)](https://github.com/Bisaloo/coauthors/actions)## Installation
You can the latest version of this package from GitHub with:
```{r, eval = FALSE}
# install.packages("remotes")
remotes::install_github("bisaloo/coauthors")
```## Usage
```{r example}
library(coauthors)
```You can get the list of co-authors for a given person (e.g., Hugo Gruson here)
by running:```{r, eval = FALSE}
get_coauthors("Hugo Gruson")
```You can add an additional filter on your ORCiD. This is useful is the person of
interest has a lot of homonyms but it might result in the omission of some
co-authors if the ORCiD is absent from some publications:```{r, eval = FALSE}
get_coauthors("Hugo Gruson", orcid = "0000-0002-4094-1476")
```