Description Usage Arguments Value See Also Examples
Randomly distributes screening tasks evenly or unevenly across multiple team members. It populates this effort in a data frame column that includes this screening work (e.g., ABSTRACTS and TITLES).
1 2 3 4 5 6 7 8 9 10 | effort_distribute(
aDataFrame = NULL,
dual = FALSE,
reviewers = NULL,
column_name = "REVIEWERS",
effort = NULL,
initialize = FALSE,
save_split = FALSE,
directory = getwd()
)
|
aDataFrame |
A data.frame containing the titles and abstracts to be
screened by a team. The default assumes that the data.frame has already
been formatted using |
dual |
When |
reviewers |
A vector with the names of each team member. |
column_name |
Changes the default label of the "REVIEWERS" column that contains the screening efforts of each team member. |
effort |
A vector of percentages used to allocate screening tasks among each team member. When not called explicitly, assumes effort to be distributed evenly among all members. Must be the same length as the number of team members, and also sum to 100. |
initialize |
When |
save_split |
Saves the allocated team effort into separate effort_*.csv
files for individual screening tasks. These files can be given to each
member to screen their random title/abstract subset. All files can be
merged once all screening tasks have been completed using
|
directory |
Changes the default location/directory for where the effort_*.csv will be saved. If not explicitly called, it will deposit files in the current working directory. |
A data.frame with title/abstract screening efforts randomly distributed across a team.
effort_initialize
, effort_merge
,
effort_summary
1 2 3 4 5 6 7 | ## Not run:
data(example_references_metagear)
theTeam <- c("Christina", "Luc")
effort_distribute(example_references_metagear, initialize = TRUE, reviewers = theTeam)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.