Open
Description
I know it can be tough, since Julia doesn't support anything similar, but many people (including me) store important metadata in attributes.
I guess objects' metadata should be inserted as distinct items in the resulting dictionary.
E.g. if I read object a
generated as
a<-"text"
attr(a, 'label') <- 'my label'
save("a", file="obj_a.rda")
then it should produce dictionary with two entries:
"a" → "Kuku!"
"a|label" → "my label"
Character |
can be replaced with any other character that cannot occur in variable's name.
Activity