大規模なメタ分析データスクリーニングには誰でもMetagearを使用していますか?Metagear effort_redistributeは私が望むことをすることができません
私は、大規模なデータセットの1%を2人の査読者とともに新しい査読者に再配布しようとしています。 50:50を簡単に再配分することができます=労力を使って試しました=しかし、文字列パラメータ(99,1,0)または(98,1,1)などでエラーを取得し続ける。ビネットコードとサンプルデータセットを使用してテストし、あなたはeffort_redistribute
は数値引数を必要とするため、あなたに次のエラー
Error in remove_effort/(number_reviewers - 1) :
non-numeric argument to binary operator
を与える上で、それを与えているようなコードを実行中...
# load package
library(metagear)
# load a bibliographic dataset with the authors, titles, and abstracts of multiple study references
data(example_references_metagear)
#initialise refs
theRefs <- effort_initialize(example_references_metagear)
# randomly distribute screening effort to a team, but with Luc handeling 80% of the work
theTeam <- c("Christina", "Luc")
theRefs_unscreened <- effort_distribute(theRefs, reviewers = theTeam, effort = c(20, 80))
#results in christina with 2 papers, luc with 9
#give a small amount of work to new reviewer, patsy
theRefs_Patsy <- effort_redistribute(theRefs_unscreened,
reviewer = "Luc",
remove_effort = "20", # move 20% of Luc's work to Patsy
reviewers = c("Luc", "Patsy")) # team members loosing and picking
#results in christina with the same 2 papers, luc with 5 and patsy with 4
#shouldn't end up with chris 2, luc with 8, patsy with 2?