screen_titles {revtools} | R Documentation |
Shiny app for screening articles by their titles
Description
This is a simple app for displaying the titles in a bibliographic dataset in small groups, and manually selecting or excluding them. Articles can be ordered as in the input dataset, alphabetically by title, or in random order (the default).
Usage
screen_titles(x, max_file_size)
Arguments
x |
An (optional) object of class |
max_file_size |
Optional argument to set the maximum file size (in MB) that the app will accept. |
Value
This function launches a Shiny app in the users' default browser, allowing the user to select or exclude articles.
See Also
screen_abstracts
for screening articles one at a time rather than in groups; screen_topics
to view articles as a point cloud.
Examples
# to run the app and upload data interactively
## Not run: screen_titles()
# or to specify data from the workspace
file_location <- system.file(
"extdata",
"avian_ecology_bibliography.ris",
package = "revtools")
x <- read_bibliography(file_location)
# to run the app using these data:
## Not run: screen_titles(x)
# or to run the app & save results to the workspace:
## Not run: result <- screen_titles(x)
[Package revtools version 0.4.1 Index]