├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── check-standard.yaml │ └── pr-commands.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── BITR.R ├── BITR_geocode.R ├── authors_address.R ├── authors_clean.R ├── authors_georef.R ├── authors_match.R ├── authors_parse.R ├── authors_refine.R ├── countries.R ├── globalVariables.R ├── plot_addresses_country.R ├── plot_addresses_points.R ├── plot_net_address.R ├── plot_net_coauthor.R ├── plot_net_country.R ├── references_read.R ├── refsplitr-package.R └── split_names.R ├── README.Rmd ├── README.html ├── README.md ├── codecov.yml ├── codemeta.json ├── data ├── BITR.rda ├── BITR_geocode.rda └── countries.rda ├── inst ├── CITATION ├── REFERENCES.bib └── extdata │ ├── App2_Table1.csv │ ├── App3_Table1.csv │ ├── BITR_test.txt │ └── example_data.txt ├── man ├── BITR.Rd ├── BITR_geocode.Rd ├── authors_clean.Rd ├── authors_georef.Rd ├── authors_refine.Rd ├── countries.Rd ├── figures │ ├── author_locations_BITR.png │ ├── coauthor_connections_BITR.png │ ├── logo.png │ └── refsplitrhex.png ├── plot_addresses_country.Rd ├── plot_addresses_points.Rd ├── plot_net_address.Rd ├── plot_net_coauthor.Rd ├── plot_net_country.Rd ├── references_read.Rd └── refsplitr-package.Rd ├── paper ├── apa.csl ├── coauthor_connections_BITR_copy.png ├── paper.Rmd ├── paper.bib └── paper.md ├── tests ├── extdata │ ├── BadHeader.txt │ ├── ISItop.txt │ └── PubExample.txt ├── figs │ ├── deps.txt │ └── test-plot-addresses │ │ └── testplot.svg ├── testthat.R └── testthat │ ├── fontconfig-helper.R │ ├── test_authors_address.R │ ├── test_authors_clean.R │ ├── test_authors_georef.R │ ├── test_authors_match.R │ ├── test_authors_parse.R │ ├── test_authors_refine.R │ ├── test_plots.R │ ├── test_references_read.R │ └── test_split_names.R └── vignettes ├── App2_Table1.csv ├── App3_Table1.csv ├── example_a_clean_prelim.csv ├── example_a_clean_review.csv ├── images ├── AuthorMatch.PNG ├── NetPlotAddress.png ├── NetPlotBase.png ├── NetPlotCountry.png ├── Reference.PNG ├── WOSsearch_fig.tiff ├── WorldCountry.png ├── WorldPoint.png ├── app1-1.png ├── app1-2.png ├── appendix3.1.png ├── appendix3.2.png ├── appendix3.3.png ├── appendix3.4.png ├── appendix3.5.png ├── appendix3.6.png ├── appendix3.7.png ├── appendix3.8.png ├── authors_clean_prelim.png ├── corrected_review.png ├── flowchart.jpg ├── grouped_should_not_be.png ├── not_grouped_should_be.png ├── plot_addresses_country.png ├── plot_addresses_points.png ├── plot_net_address.png ├── plot_net_coauthor.png ├── plot_net_country.png ├── references_read.png ├── refnet_fig1.jpg └── review_file.png ├── refsplitr.Rmd ├── refsplitr.Rmd.orig └── refsplitr_fig1.jpg /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | doc 2 | Meta 3 | 4 | .Rproj.user 5 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/BITR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/BITR.R -------------------------------------------------------------------------------- /R/BITR_geocode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/BITR_geocode.R -------------------------------------------------------------------------------- /R/authors_address.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/authors_address.R -------------------------------------------------------------------------------- /R/authors_clean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/authors_clean.R -------------------------------------------------------------------------------- /R/authors_georef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/authors_georef.R -------------------------------------------------------------------------------- /R/authors_match.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/authors_match.R -------------------------------------------------------------------------------- /R/authors_parse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/authors_parse.R -------------------------------------------------------------------------------- /R/authors_refine.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/authors_refine.R -------------------------------------------------------------------------------- /R/countries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/countries.R -------------------------------------------------------------------------------- /R/globalVariables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/globalVariables.R -------------------------------------------------------------------------------- /R/plot_addresses_country.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/plot_addresses_country.R -------------------------------------------------------------------------------- /R/plot_addresses_points.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/plot_addresses_points.R -------------------------------------------------------------------------------- /R/plot_net_address.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/plot_net_address.R -------------------------------------------------------------------------------- /R/plot_net_coauthor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/plot_net_coauthor.R -------------------------------------------------------------------------------- /R/plot_net_country.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/plot_net_country.R -------------------------------------------------------------------------------- /R/references_read.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/references_read.R -------------------------------------------------------------------------------- /R/refsplitr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/refsplitr-package.R -------------------------------------------------------------------------------- /R/split_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/R/split_names.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/codecov.yml -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/codemeta.json -------------------------------------------------------------------------------- /data/BITR.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/data/BITR.rda -------------------------------------------------------------------------------- /data/BITR_geocode.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/data/BITR_geocode.rda -------------------------------------------------------------------------------- /data/countries.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/data/countries.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/REFERENCES.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/inst/REFERENCES.bib -------------------------------------------------------------------------------- /inst/extdata/App2_Table1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/inst/extdata/App2_Table1.csv -------------------------------------------------------------------------------- /inst/extdata/App3_Table1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/inst/extdata/App3_Table1.csv -------------------------------------------------------------------------------- /inst/extdata/BITR_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/inst/extdata/BITR_test.txt -------------------------------------------------------------------------------- /inst/extdata/example_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/inst/extdata/example_data.txt -------------------------------------------------------------------------------- /man/BITR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/BITR.Rd -------------------------------------------------------------------------------- /man/BITR_geocode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/BITR_geocode.Rd -------------------------------------------------------------------------------- /man/authors_clean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/authors_clean.Rd -------------------------------------------------------------------------------- /man/authors_georef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/authors_georef.Rd -------------------------------------------------------------------------------- /man/authors_refine.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/authors_refine.Rd -------------------------------------------------------------------------------- /man/countries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/countries.Rd -------------------------------------------------------------------------------- /man/figures/author_locations_BITR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/figures/author_locations_BITR.png -------------------------------------------------------------------------------- /man/figures/coauthor_connections_BITR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/figures/coauthor_connections_BITR.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/refsplitrhex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/figures/refsplitrhex.png -------------------------------------------------------------------------------- /man/plot_addresses_country.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/plot_addresses_country.Rd -------------------------------------------------------------------------------- /man/plot_addresses_points.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/plot_addresses_points.Rd -------------------------------------------------------------------------------- /man/plot_net_address.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/plot_net_address.Rd -------------------------------------------------------------------------------- /man/plot_net_coauthor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/plot_net_coauthor.Rd -------------------------------------------------------------------------------- /man/plot_net_country.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/plot_net_country.Rd -------------------------------------------------------------------------------- /man/references_read.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/references_read.Rd -------------------------------------------------------------------------------- /man/refsplitr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/man/refsplitr-package.Rd -------------------------------------------------------------------------------- /paper/apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/paper/apa.csl -------------------------------------------------------------------------------- /paper/coauthor_connections_BITR_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/paper/coauthor_connections_BITR_copy.png -------------------------------------------------------------------------------- /paper/paper.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/paper/paper.Rmd -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/paper/paper.md -------------------------------------------------------------------------------- /tests/extdata/BadHeader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/extdata/BadHeader.txt -------------------------------------------------------------------------------- /tests/extdata/ISItop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/extdata/ISItop.txt -------------------------------------------------------------------------------- /tests/extdata/PubExample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/extdata/PubExample.txt -------------------------------------------------------------------------------- /tests/figs/deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/figs/deps.txt -------------------------------------------------------------------------------- /tests/figs/test-plot-addresses/testplot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/figs/test-plot-addresses/testplot.svg -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/fontconfig-helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat/fontconfig-helper.R -------------------------------------------------------------------------------- /tests/testthat/test_authors_address.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat/test_authors_address.R -------------------------------------------------------------------------------- /tests/testthat/test_authors_clean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat/test_authors_clean.R -------------------------------------------------------------------------------- /tests/testthat/test_authors_georef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat/test_authors_georef.R -------------------------------------------------------------------------------- /tests/testthat/test_authors_match.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat/test_authors_match.R -------------------------------------------------------------------------------- /tests/testthat/test_authors_parse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat/test_authors_parse.R -------------------------------------------------------------------------------- /tests/testthat/test_authors_refine.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat/test_authors_refine.R -------------------------------------------------------------------------------- /tests/testthat/test_plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat/test_plots.R -------------------------------------------------------------------------------- /tests/testthat/test_references_read.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat/test_references_read.R -------------------------------------------------------------------------------- /tests/testthat/test_split_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/tests/testthat/test_split_names.R -------------------------------------------------------------------------------- /vignettes/App2_Table1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/App2_Table1.csv -------------------------------------------------------------------------------- /vignettes/App3_Table1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/App3_Table1.csv -------------------------------------------------------------------------------- /vignettes/example_a_clean_prelim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/example_a_clean_prelim.csv -------------------------------------------------------------------------------- /vignettes/example_a_clean_review.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/example_a_clean_review.csv -------------------------------------------------------------------------------- /vignettes/images/AuthorMatch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/AuthorMatch.PNG -------------------------------------------------------------------------------- /vignettes/images/NetPlotAddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/NetPlotAddress.png -------------------------------------------------------------------------------- /vignettes/images/NetPlotBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/NetPlotBase.png -------------------------------------------------------------------------------- /vignettes/images/NetPlotCountry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/NetPlotCountry.png -------------------------------------------------------------------------------- /vignettes/images/Reference.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/Reference.PNG -------------------------------------------------------------------------------- /vignettes/images/WOSsearch_fig.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/WOSsearch_fig.tiff -------------------------------------------------------------------------------- /vignettes/images/WorldCountry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/WorldCountry.png -------------------------------------------------------------------------------- /vignettes/images/WorldPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/WorldPoint.png -------------------------------------------------------------------------------- /vignettes/images/app1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/app1-1.png -------------------------------------------------------------------------------- /vignettes/images/app1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/app1-2.png -------------------------------------------------------------------------------- /vignettes/images/appendix3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/appendix3.1.png -------------------------------------------------------------------------------- /vignettes/images/appendix3.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/appendix3.2.png -------------------------------------------------------------------------------- /vignettes/images/appendix3.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/appendix3.3.png -------------------------------------------------------------------------------- /vignettes/images/appendix3.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/appendix3.4.png -------------------------------------------------------------------------------- /vignettes/images/appendix3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/appendix3.5.png -------------------------------------------------------------------------------- /vignettes/images/appendix3.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/appendix3.6.png -------------------------------------------------------------------------------- /vignettes/images/appendix3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/appendix3.7.png -------------------------------------------------------------------------------- /vignettes/images/appendix3.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/appendix3.8.png -------------------------------------------------------------------------------- /vignettes/images/authors_clean_prelim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/authors_clean_prelim.png -------------------------------------------------------------------------------- /vignettes/images/corrected_review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/corrected_review.png -------------------------------------------------------------------------------- /vignettes/images/flowchart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/flowchart.jpg -------------------------------------------------------------------------------- /vignettes/images/grouped_should_not_be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/grouped_should_not_be.png -------------------------------------------------------------------------------- /vignettes/images/not_grouped_should_be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/not_grouped_should_be.png -------------------------------------------------------------------------------- /vignettes/images/plot_addresses_country.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/plot_addresses_country.png -------------------------------------------------------------------------------- /vignettes/images/plot_addresses_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/plot_addresses_points.png -------------------------------------------------------------------------------- /vignettes/images/plot_net_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/plot_net_address.png -------------------------------------------------------------------------------- /vignettes/images/plot_net_coauthor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/plot_net_coauthor.png -------------------------------------------------------------------------------- /vignettes/images/plot_net_country.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/plot_net_country.png -------------------------------------------------------------------------------- /vignettes/images/references_read.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/references_read.png -------------------------------------------------------------------------------- /vignettes/images/refnet_fig1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/refnet_fig1.jpg -------------------------------------------------------------------------------- /vignettes/images/review_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/images/review_file.png -------------------------------------------------------------------------------- /vignettes/refsplitr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/refsplitr.Rmd -------------------------------------------------------------------------------- /vignettes/refsplitr.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/refsplitr.Rmd.orig -------------------------------------------------------------------------------- /vignettes/refsplitr_fig1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/refsplitr/HEAD/vignettes/refsplitr_fig1.jpg --------------------------------------------------------------------------------