├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── .travis.yml ├── CRAN-RELEASE ├── CRAN-SUBMISSION ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── aaa_utils.R ├── abstract_retrieval.R ├── affil_df.R ├── affil_list_to_df.R ├── affil_search.R ├── affiliation_retrieval.R ├── all_possible_affils.R ├── article_retrieval.R ├── author_df.R ├── author_retrieval.R ├── author_search.R ├── bibtex_core_data.R ├── citation_retrieval.R ├── elsevier_authenticate.R ├── embase_retrieval.R ├── entitlement_retrieval.R ├── entries_to_affil_list.R ├── entries_to_citation_df.R ├── entries_to_df.R ├── gen_entries_to_df.R ├── generic_elsevier_search.R ├── get_affiliation_info.R ├── get_all_coauthors.R ├── get_api_key.R ├── get_author_info.R ├── get_next.R ├── metadata_retrieval.R ├── multi_author_info.R ├── object_retrieval.R ├── plumx_analytics.R ├── print.scopus_api_key.R ├── process_affil_name.R ├── read_cto.R ├── recommendation_retrieval.R ├── replace_non_ascii.R ├── scopus_search.R ├── show.token.R ├── subject_areas.R └── utils-pipe.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── appveyor.yml ├── cran-comments.md ├── docs ├── 404.html ├── articles │ ├── api_key.html │ ├── index.html │ └── multi_author.html ├── authors.html ├── docsearch.css ├── docsearch.js ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── abstract_retrieval.html │ ├── affil_df.html │ ├── affil_list_to_df.html │ ├── affil_search.html │ ├── affiliation_retrieval.html │ ├── all_possible_affils.html │ ├── article_retrieval.html │ ├── author_df.html │ ├── author_retrieval.html │ ├── author_search.html │ ├── author_search_by_affil.html │ ├── bibtex_core_data.html │ ├── citation_retrieval.html │ ├── collapse_affil.html │ ├── complete_multi_author_info.html │ ├── elsevier_authenticate.html │ ├── embase_retrieval.html │ ├── entitlement_retrieval.html │ ├── entries_to_affil_list.html │ ├── entries_to_citation_df.html │ ├── entries_to_df.html │ ├── entry_to_affil.html │ ├── gen_entries_to_df.html │ ├── generic_elsevier_api.html │ ├── get_affiliation_info.html │ ├── get_api_key.html │ ├── get_author_info.html │ ├── get_complete_author_info.html │ ├── get_links.html │ ├── index.html │ ├── inst_token_header.html │ ├── metadata_retrieval.html │ ├── multi_author_info.html │ ├── nonull.html │ ├── object_retrieval-1.png │ ├── object_retrieval.html │ ├── plumx_metrics.html │ ├── print.scopus_api_key.html │ ├── print.token.html │ ├── process_affiliation_name.html │ ├── process_author_name.html │ ├── read_cto.html │ ├── recommendation_retrieval.html │ ├── replace_non_ascii.html │ ├── scopus_search.html │ ├── set_api_key.html │ └── subject_areas.html ├── dtd_data.R ├── icon.png ├── icon.psd ├── icon_black.png ├── inst └── extdata │ └── CTOExport.csv ├── man ├── abstract_retrieval.Rd ├── affil_df.Rd ├── affil_list_to_df.Rd ├── affil_search.Rd ├── affiliation_retrieval.Rd ├── all_possible_affils.Rd ├── article_retrieval.Rd ├── author_df.Rd ├── author_retrieval.Rd ├── author_search.Rd ├── author_search_by_affil.Rd ├── bibtex_core_data.Rd ├── citation_retrieval.Rd ├── collapse_affil.Rd ├── complete_multi_author_info.Rd ├── elsevier_authenticate.Rd ├── embase_retrieval.Rd ├── entitlement_retrieval.Rd ├── entries_to_affil_list.Rd ├── entries_to_citation_df.Rd ├── entries_to_df.Rd ├── entry_to_affil.Rd ├── gen_entries_to_df.Rd ├── generic_elsevier_api.Rd ├── get_affiliation_info.Rd ├── get_all_coauthors.Rd ├── get_api_key.Rd ├── get_author_info.Rd ├── get_complete_author_info.Rd ├── get_links.Rd ├── inst_token_header.Rd ├── metadata_retrieval.Rd ├── multi_author_info.Rd ├── nonull.Rd ├── object_retrieval.Rd ├── pipe.Rd ├── plumx_metrics.Rd ├── print.scopus_api_key.Rd ├── print.token.Rd ├── process_affiliation_name.Rd ├── process_author_name.Rd ├── read_cto.Rd ├── recommendation_retrieval.Rd ├── replace_non_ascii.Rd ├── scopus_search.Rd ├── set_api_key.Rd └── subject_areas.Rd ├── rscopus.Rproj ├── sticker.R ├── sticker.png ├── tests ├── testthat.R └── testthat │ └── test_author_df.R └── vignettes ├── .gitignore ├── api_key.Rmd └── multi_author.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/.travis.yml -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/aaa_utils.R -------------------------------------------------------------------------------- /R/abstract_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/abstract_retrieval.R -------------------------------------------------------------------------------- /R/affil_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/affil_df.R -------------------------------------------------------------------------------- /R/affil_list_to_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/affil_list_to_df.R -------------------------------------------------------------------------------- /R/affil_search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/affil_search.R -------------------------------------------------------------------------------- /R/affiliation_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/affiliation_retrieval.R -------------------------------------------------------------------------------- /R/all_possible_affils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/all_possible_affils.R -------------------------------------------------------------------------------- /R/article_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/article_retrieval.R -------------------------------------------------------------------------------- /R/author_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/author_df.R -------------------------------------------------------------------------------- /R/author_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/author_retrieval.R -------------------------------------------------------------------------------- /R/author_search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/author_search.R -------------------------------------------------------------------------------- /R/bibtex_core_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/bibtex_core_data.R -------------------------------------------------------------------------------- /R/citation_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/citation_retrieval.R -------------------------------------------------------------------------------- /R/elsevier_authenticate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/elsevier_authenticate.R -------------------------------------------------------------------------------- /R/embase_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/embase_retrieval.R -------------------------------------------------------------------------------- /R/entitlement_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/entitlement_retrieval.R -------------------------------------------------------------------------------- /R/entries_to_affil_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/entries_to_affil_list.R -------------------------------------------------------------------------------- /R/entries_to_citation_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/entries_to_citation_df.R -------------------------------------------------------------------------------- /R/entries_to_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/entries_to_df.R -------------------------------------------------------------------------------- /R/gen_entries_to_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/gen_entries_to_df.R -------------------------------------------------------------------------------- /R/generic_elsevier_search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/generic_elsevier_search.R -------------------------------------------------------------------------------- /R/get_affiliation_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/get_affiliation_info.R -------------------------------------------------------------------------------- /R/get_all_coauthors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/get_all_coauthors.R -------------------------------------------------------------------------------- /R/get_api_key.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/get_api_key.R -------------------------------------------------------------------------------- /R/get_author_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/get_author_info.R -------------------------------------------------------------------------------- /R/get_next.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/get_next.R -------------------------------------------------------------------------------- /R/metadata_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/metadata_retrieval.R -------------------------------------------------------------------------------- /R/multi_author_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/multi_author_info.R -------------------------------------------------------------------------------- /R/object_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/object_retrieval.R -------------------------------------------------------------------------------- /R/plumx_analytics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/plumx_analytics.R -------------------------------------------------------------------------------- /R/print.scopus_api_key.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/print.scopus_api_key.R -------------------------------------------------------------------------------- /R/process_affil_name.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/process_affil_name.R -------------------------------------------------------------------------------- /R/read_cto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/read_cto.R -------------------------------------------------------------------------------- /R/recommendation_retrieval.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/recommendation_retrieval.R -------------------------------------------------------------------------------- /R/replace_non_ascii.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/replace_non_ascii.R -------------------------------------------------------------------------------- /R/scopus_search.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/scopus_search.R -------------------------------------------------------------------------------- /R/show.token.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/show.token.R -------------------------------------------------------------------------------- /R/subject_areas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/subject_areas.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/articles/api_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/articles/api_key.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/multi_author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/articles/multi_author.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/abstract_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/abstract_retrieval.html -------------------------------------------------------------------------------- /docs/reference/affil_df.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/affil_df.html -------------------------------------------------------------------------------- /docs/reference/affil_list_to_df.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/affil_list_to_df.html -------------------------------------------------------------------------------- /docs/reference/affil_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/affil_search.html -------------------------------------------------------------------------------- /docs/reference/affiliation_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/affiliation_retrieval.html -------------------------------------------------------------------------------- /docs/reference/all_possible_affils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/all_possible_affils.html -------------------------------------------------------------------------------- /docs/reference/article_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/article_retrieval.html -------------------------------------------------------------------------------- /docs/reference/author_df.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/author_df.html -------------------------------------------------------------------------------- /docs/reference/author_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/author_retrieval.html -------------------------------------------------------------------------------- /docs/reference/author_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/author_search.html -------------------------------------------------------------------------------- /docs/reference/author_search_by_affil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/author_search_by_affil.html -------------------------------------------------------------------------------- /docs/reference/bibtex_core_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/bibtex_core_data.html -------------------------------------------------------------------------------- /docs/reference/citation_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/citation_retrieval.html -------------------------------------------------------------------------------- /docs/reference/collapse_affil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/collapse_affil.html -------------------------------------------------------------------------------- /docs/reference/complete_multi_author_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/complete_multi_author_info.html -------------------------------------------------------------------------------- /docs/reference/elsevier_authenticate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/elsevier_authenticate.html -------------------------------------------------------------------------------- /docs/reference/embase_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/embase_retrieval.html -------------------------------------------------------------------------------- /docs/reference/entitlement_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/entitlement_retrieval.html -------------------------------------------------------------------------------- /docs/reference/entries_to_affil_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/entries_to_affil_list.html -------------------------------------------------------------------------------- /docs/reference/entries_to_citation_df.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/entries_to_citation_df.html -------------------------------------------------------------------------------- /docs/reference/entries_to_df.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/entries_to_df.html -------------------------------------------------------------------------------- /docs/reference/entry_to_affil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/entry_to_affil.html -------------------------------------------------------------------------------- /docs/reference/gen_entries_to_df.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/gen_entries_to_df.html -------------------------------------------------------------------------------- /docs/reference/generic_elsevier_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/generic_elsevier_api.html -------------------------------------------------------------------------------- /docs/reference/get_affiliation_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/get_affiliation_info.html -------------------------------------------------------------------------------- /docs/reference/get_api_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/get_api_key.html -------------------------------------------------------------------------------- /docs/reference/get_author_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/get_author_info.html -------------------------------------------------------------------------------- /docs/reference/get_complete_author_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/get_complete_author_info.html -------------------------------------------------------------------------------- /docs/reference/get_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/get_links.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/inst_token_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/inst_token_header.html -------------------------------------------------------------------------------- /docs/reference/metadata_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/metadata_retrieval.html -------------------------------------------------------------------------------- /docs/reference/multi_author_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/multi_author_info.html -------------------------------------------------------------------------------- /docs/reference/nonull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/nonull.html -------------------------------------------------------------------------------- /docs/reference/object_retrieval-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/object_retrieval-1.png -------------------------------------------------------------------------------- /docs/reference/object_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/object_retrieval.html -------------------------------------------------------------------------------- /docs/reference/plumx_metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/plumx_metrics.html -------------------------------------------------------------------------------- /docs/reference/print.scopus_api_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/print.scopus_api_key.html -------------------------------------------------------------------------------- /docs/reference/print.token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/print.token.html -------------------------------------------------------------------------------- /docs/reference/process_affiliation_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/process_affiliation_name.html -------------------------------------------------------------------------------- /docs/reference/process_author_name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/process_author_name.html -------------------------------------------------------------------------------- /docs/reference/read_cto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/read_cto.html -------------------------------------------------------------------------------- /docs/reference/recommendation_retrieval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/recommendation_retrieval.html -------------------------------------------------------------------------------- /docs/reference/replace_non_ascii.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/replace_non_ascii.html -------------------------------------------------------------------------------- /docs/reference/scopus_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/scopus_search.html -------------------------------------------------------------------------------- /docs/reference/set_api_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/set_api_key.html -------------------------------------------------------------------------------- /docs/reference/subject_areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/docs/reference/subject_areas.html -------------------------------------------------------------------------------- /dtd_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/dtd_data.R -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/icon.png -------------------------------------------------------------------------------- /icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/icon.psd -------------------------------------------------------------------------------- /icon_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/icon_black.png -------------------------------------------------------------------------------- /inst/extdata/CTOExport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/inst/extdata/CTOExport.csv -------------------------------------------------------------------------------- /man/abstract_retrieval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/abstract_retrieval.Rd -------------------------------------------------------------------------------- /man/affil_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/affil_df.Rd -------------------------------------------------------------------------------- /man/affil_list_to_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/affil_list_to_df.Rd -------------------------------------------------------------------------------- /man/affil_search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/affil_search.Rd -------------------------------------------------------------------------------- /man/affiliation_retrieval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/affiliation_retrieval.Rd -------------------------------------------------------------------------------- /man/all_possible_affils.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/all_possible_affils.Rd -------------------------------------------------------------------------------- /man/article_retrieval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/article_retrieval.Rd -------------------------------------------------------------------------------- /man/author_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/author_df.Rd -------------------------------------------------------------------------------- /man/author_retrieval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/author_retrieval.Rd -------------------------------------------------------------------------------- /man/author_search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/author_search.Rd -------------------------------------------------------------------------------- /man/author_search_by_affil.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/author_search_by_affil.Rd -------------------------------------------------------------------------------- /man/bibtex_core_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/bibtex_core_data.Rd -------------------------------------------------------------------------------- /man/citation_retrieval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/citation_retrieval.Rd -------------------------------------------------------------------------------- /man/collapse_affil.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/collapse_affil.Rd -------------------------------------------------------------------------------- /man/complete_multi_author_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/complete_multi_author_info.Rd -------------------------------------------------------------------------------- /man/elsevier_authenticate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/elsevier_authenticate.Rd -------------------------------------------------------------------------------- /man/embase_retrieval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/embase_retrieval.Rd -------------------------------------------------------------------------------- /man/entitlement_retrieval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/entitlement_retrieval.Rd -------------------------------------------------------------------------------- /man/entries_to_affil_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/entries_to_affil_list.Rd -------------------------------------------------------------------------------- /man/entries_to_citation_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/entries_to_citation_df.Rd -------------------------------------------------------------------------------- /man/entries_to_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/entries_to_df.Rd -------------------------------------------------------------------------------- /man/entry_to_affil.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/entry_to_affil.Rd -------------------------------------------------------------------------------- /man/gen_entries_to_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/gen_entries_to_df.Rd -------------------------------------------------------------------------------- /man/generic_elsevier_api.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/generic_elsevier_api.Rd -------------------------------------------------------------------------------- /man/get_affiliation_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/get_affiliation_info.Rd -------------------------------------------------------------------------------- /man/get_all_coauthors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/get_all_coauthors.Rd -------------------------------------------------------------------------------- /man/get_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/get_api_key.Rd -------------------------------------------------------------------------------- /man/get_author_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/get_author_info.Rd -------------------------------------------------------------------------------- /man/get_complete_author_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/get_complete_author_info.Rd -------------------------------------------------------------------------------- /man/get_links.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/get_links.Rd -------------------------------------------------------------------------------- /man/inst_token_header.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/inst_token_header.Rd -------------------------------------------------------------------------------- /man/metadata_retrieval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/metadata_retrieval.Rd -------------------------------------------------------------------------------- /man/multi_author_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/multi_author_info.Rd -------------------------------------------------------------------------------- /man/nonull.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/nonull.Rd -------------------------------------------------------------------------------- /man/object_retrieval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/object_retrieval.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/plumx_metrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/plumx_metrics.Rd -------------------------------------------------------------------------------- /man/print.scopus_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/print.scopus_api_key.Rd -------------------------------------------------------------------------------- /man/print.token.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/print.token.Rd -------------------------------------------------------------------------------- /man/process_affiliation_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/process_affiliation_name.Rd -------------------------------------------------------------------------------- /man/process_author_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/process_author_name.Rd -------------------------------------------------------------------------------- /man/read_cto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/read_cto.Rd -------------------------------------------------------------------------------- /man/recommendation_retrieval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/recommendation_retrieval.Rd -------------------------------------------------------------------------------- /man/replace_non_ascii.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/replace_non_ascii.Rd -------------------------------------------------------------------------------- /man/scopus_search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/scopus_search.Rd -------------------------------------------------------------------------------- /man/set_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/set_api_key.Rd -------------------------------------------------------------------------------- /man/subject_areas.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/man/subject_areas.Rd -------------------------------------------------------------------------------- /rscopus.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/rscopus.Rproj -------------------------------------------------------------------------------- /sticker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/sticker.R -------------------------------------------------------------------------------- /sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/sticker.png -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_author_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/tests/testthat/test_author_df.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | *_cache* -------------------------------------------------------------------------------- /vignettes/api_key.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/vignettes/api_key.Rmd -------------------------------------------------------------------------------- /vignettes/multi_author.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muschellij2/rscopus/HEAD/vignettes/multi_author.Rmd --------------------------------------------------------------------------------