ahistory {archivist} | R Documentation |
Show Artifact's History
Description
ahistory
extracts artifact's history and creates a data frame with
history of calls and md5hashes of partial results. The overloaded
print.ahistory
function prints this history in a concise way. The overloaded
print.ahistoryKable
function prints this history in the same way as kable.
When alink=TRUE
one can create history table/kable with hooks to partial results (artifacts) as in the alink function.
Usage
ahistory(
artifact = NULL,
md5hash = NULL,
repoDir = aoptions("repoDir"),
format = "regular",
alink = FALSE,
...
)
Arguments
artifact |
An artifact which history is supposed to be reconstructed. It will be converted into md5hash. |
md5hash |
If |
repoDir |
A character denoting an existing directory in which an artifact will be saved. |
format |
A character denoting whether to print history in either a |
alink |
Whether to provide hooks to objects like in alink. See examples. |
... |
Further parameters passed to alink function. Used when |
Details
All artifacts created with %a% operator are archivised with
detailed information about it's source (both call and md5hash of the input).
The function ahistory
reads all artifacts that
precede artifact
and create a description of the input flow.
The generic print.ahistory
function plots the history in a human readable way.
Value
A data frame with two columns - names of calls and md5hashes of partial results.
Contact
Bug reports and feature requests can be sent to https://github.com/pbiecek/archivist/issues
Demonstration
This function is well explained on this https://www.r-bloggers.com/2016/06/r-hero-saves-backup-city-with-archivist-and-github/ blog post.
Note
There are provided functions (print.ahistory
and print.ahistoryKable
) to print the artifact's history.
History can be printed either in a regular
way which is friendy for the console output or in a kable
format which
prints the artifact's history in a way kable function would. This is convenient when one prints history
in .Rmd
files using rmarkdown.
Moreover when user passes format = 'kable'
and alink = TRUE
then one can use links for remote Repository.
Then mdhashes are taken from Local Repository, so user has to specify repo
, user
and repoDir
even though
they are set globally, because repo
is a substring of repoDir
and during evalutation of ...
R treats repo
as repoDir
.
Author(s)
Przemyslaw Biecek, przemyslaw.biecek@gmail.com
Marcin Kosinski, m.p.kosinski@gmail.com
References
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
See Also
Other archivist:
Repository
,
Tags
,
%a%()
,
addHooksToPrint()
,
addTagsRepo()
,
aformat()
,
alink()
,
aoptions()
,
archivist-package
,
areadLocal()
,
aread()
,
asearchLocal()
,
asearch()
,
asession()
,
atrace()
,
cache()
,
copyLocalRepo()
,
createLocalRepo()
,
createMDGallery()
,
deleteLocalRepo()
,
getRemoteHook()
,
getTagsLocal()
,
loadFromLocalRepo()
,
md5hash
,
removeTagsRepo()
,
restoreLibs()
,
rmFromLocalRepo()
,
saveToLocalRepo()
,
searchInLocalRepo()
,
setLocalRepo()
,
shinySearchInLocalRepo()
,
showLocalRepo()
,
splitTagsLocal()
,
summaryLocalRepo()
,
zipLocalRepo()
Examples
createLocalRepo("ahistory_check", default = TRUE)
library(dplyr)
iris %a%
filter(Sepal.Length < 6) %a%
lm(Petal.Length~Species, data=.) %a%
summary() -> artifact
ahistory(artifact)
ahistory(artifact, format = "kable")
print(ahistory(artifact, format = "kable"), format = "latex")
ahistory(artifact, format = "kable", alink = TRUE, repoDir = "ahistory_check",
repo = "repo", user = "user")
repoDir <- file.path(getwd(), "ahistory_check")
deleteLocalRepo(repoDir, deleteRoot = TRUE)
aoptions('repoDir', NULL, unset = TRUE)