-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
env[[m]] in ahistory #269
Comments
I am not sure if I am following, If there is a different concern let me know. 2016-06-07 23:15 GMT+02:00 Marcin Kosiński [email protected]:
pozdrawiam serdecznie, |
This happened after changes in asearch. I think it's due to this commit We should remove this row in ahistory or substitute env[[m]] with an 2016-06-08 10:03 GMT+02:00 Przemysław Biecek [email protected]:
|
I thinik we should substitute this with original name, 2016-06-08 11:32 GMT+02:00 Marcin Kosiński [email protected]:
pozdrawiam serdecznie, |
Thi I'll go deeper |
Ok it was easier than I thought. It was the case that we used Example : > createLocalRepo("ahistory_check", default = TRUE)
Directory ahistory_check did not exist. Forced to create a new directory.
> library(dplyr)
> iris %a%
+ filter(Sepal.Length < 6) %a%
+ lm(Petal.Length~Species, data=.) %a%
+ summary() -> artifact
>
> ahistory(artifact)
iris [ff575c261c949d073b2895b05d1097c3]
-> filter(Sepal.Length < 6) [d3696e13d15223c7d0bbccb33cc20a11]
-> lm(Petal.Length ~ Species, data = .) [802857dee508b128b26564e6b9519bb1]
-> summary() [4e34b66ecaa7fc9f13c2aad4edd042f8]
>
> splitTagsLocal() %>%
+ select(-createdDate) %>%
+ filter(tagKey == "name") %>%
+ arrange(artifact)
artifact tagKey
1 4e34b66ecaa7fc9f13c2aad4edd042f8 name
2 802857dee508b128b26564e6b9519bb1 name
3 802857dee508b128b26564e6b9519bb1 name
4 d3696e13d15223c7d0bbccb33cc20a11 name
5 d3696e13d15223c7d0bbccb33cc20a11 name
6 ff575c261c949d073b2895b05d1097c3 name
tagValue
1 res_val
2 res_val
3 iris %a% filter(Sepal.Length < 6) %a% lm(Petal.Length ~ Species, data = .)
4 res_val
5 iris %a% filter(Sepal.Length < 6)
6 iris I am not sure whether additional name |
@pbiecek have you seen
ahistory
calls here http://r-addict.com/archivist.github/#32_partial_results_archiving_and_objects%E2%80%99_pedigree_restoration ?I think this is the result of improving such snippets with
asearch
to have
md5hash
columnshould we fix
ahistory
to now show the row with env[[m]] ?The text was updated successfully, but these errors were encountered: