| sourcify {jmvcore} | R Documentation |
Converts basic R object into their source representation
sourcify(object, indent = "")
object |
the object to convert to source |
indent |
the level of indentation to use |
a string of the equivalent source code
sourcify(NULL) # 'NULL' sourcify(c(1,2,3)) # 'c(1,2,3)' l <- list(a=7) l[['b']] <- 3 l[['c']] <- list(d=3, e=4) sourcify(l) # 'list( # a=7, # b=3, # c=list( # d=3, # e=4))'