Description Usage Arguments Value Note See Also Examples
Merge two or more MDlists.
1 2 |
... |
MDlists (objects from |
id.vars |
Specifications of the common variable(s). Default is NULL. |
sep |
A character string to separate the MDlist merged study names by + identifiers (id.vars). |
detect.class |
logical. If TRUE detects the class of the character string(s) for each variable. |
stringsAsFactors |
logical. Should character vectors be converted to factors if detect.class is TRUE? |
Returns a merged MDlist object.
General use is for merging multiple coders with different studies together into one MDlist. This is not recommended for combing the same studies coded by two different coders (double coded). Instead keep two different MDlist data sets for reliability checking.
1 2 3 4 5 6 7 8 9 | path <- system.file("extdata/bibTest.bib", package = "metaDAT")
dat1 <- read.MD(path)
path2 <- system.file("extdata/bibTest3.bib", package = "metaDAT")
dat2 <- read.MD(path2)
datMerged <- MDmerge(dat2, dat1)
datMerged
MDstr(datMerged)
names(datMerged)
MDmerge(dat2, dat1, id.vars = c("coder", "time"), sep = "%")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.