writeText | R Documentation |
Write text to a file using writeLines
and output a debug
message by default
writeText(x, file, type = "", dbg = TRUE, ...)
x |
vector of character representing the lines to be written to
|
file |
path to file to be written, passed to |
type |
character string to be included in the debug message: "Writing <type>'file-path' ..." |
dbg |
if |
... |
further arguments passed to |
This function invisibly returns the path to the output file
.
# Define text to be written to file
x <- c("Hello", "world")
# Write text to a temporary file and catch the file path
file <- writeText(x, tempfile(fileext = ".txt"))
# Make the debug message more informative
writeText(x, file, type = "welcome file")
# Read lines back and show on the console
catLines(readLines(file))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.