removeTagsRepo
removes selected Tags from selected objects in Repository.
removeTagsRepo(md5hashes, repoDir = NULL, tags = NULL)
md5hashes | a character vector of |
---|---|
repoDir | A character that specifies the directory of the Repository to which
new |
tags | A character vector which specifies what Tags should be removed. |
removeTagsRepo
function removes all Tags from all listed objects.
Note that some hashes are required for keeping erlations between objects in the repository.
Be carefull what are you removing.
Bug reports and feature requests can be sent to https://github.com/pbiecek/archivist/issues
Biecek P and Kosinski M (2017). "archivist: An R Package for Managing, Recording and Restoring Data Analysis Results." _Journal of Statistical Software_, *82*(11), pp. 1-28. doi: 10.18637/jss.v082.i11 (URL: http://doi.org/10.18637/jss.v082.i11). URL https://github.com/pbiecek/archivist
Other archivist: Repository
,
Tags
, %a%
,
addHooksToPrint
, addTagsRepo
,
aformat
, ahistory
,
alink
, aoptions
,
archivist-package
,
areadLocal
, aread
,
asearchLocal
, asearch
,
asession
, atrace
,
cache
, copyLocalRepo
,
createLocalRepo
,
createMDGallery
,
deleteLocalRepo
,
getRemoteHook
, getTagsLocal
,
loadFromLocalRepo
, md5hash
,
restoreLibs
, rmFromLocalRepo
,
saveToLocalRepo
,
searchInLocalRepo
,
setLocalRepo
,
shinySearchInLocalRepo
,
showLocalRepo
,
splitTagsLocal
,
summaryLocalRepo
,
zipLocalRepo
# NOT RUN { # Creating empty repository exampleRepoDir <- tempfile() createLocalRepo(exampleRepoDir, force=TRUE) # Saving lm artifacts into repository m1 <- lm(Sepal.Length~Species, iris) saveToLocalRepo(m1, exampleRepoDir) # We may see what kind of Tags are related to "m1" artifact corresponding to getTagsLocal("9e66edd297c2f291446f3503c01d443a", exampleRepoDir, "") # One more look at our Repo removeTagsRepo("9e66edd297c2f291446f3503c01d443a", exampleRepoDir, tags = "rank:3") # Deleting example repository deleteLocalRepo(exampleRepoDir, deleteRoot=TRUE) rm(exampleRepoDir) # }