RC.prepare.input {RC} | R Documentation |
This function converts the Raw Input (as archived in the repository) into a code snippet that can be reproduced in the R console. This function is called by RC.reproduce().
RC.prepare.input(rawinput)
rawinput |
rawinput from RC.meta.data() |
returns pre-processed R code which can be recomputed
#r <- RC.ls.user(id='UseR') #fetching meta data about a computation that was generated in the console #md <- RC.meta.data(r$url[21]) #prepare input #p <- RC.prepare.input(md$rawinput) #now it can be reproduced #RC.texteval(p)