dput(getAnywhere("function_name")) or for entire loaded object:
(if it contains a function)
readLines("yourfile.r", n = 5) # if text, you'll see code Use: decompile progress .r file
dput(data, file="reconstructed.R")
con <- file("yourfile.r", "rb") raw_content <- readBin(con, raw(), file.size("yourfile.r")) obj <- unserialize(raw_content) This works only if the file is a raw serialization stream. n = 5) # if text
file yourfile.r or inside R: