save_lines {beastier} | R Documentation |
Save text (a container of strings) to a file
Description
Save text (a container of strings) to a file
Usage
save_lines(filename, lines)
Arguments
filename |
filename of the file to have the text written to |
lines |
lines of text to be written to file |
Value
Nothing. Will save the lines to file
Author(s)
Richèl J.C. Bilderbeek
Examples
text <- c("hello", "world")
filename <- get_beastier_tempfilename()
save_lines(filename = filename, lines = text)
file.remove(filename)
remove_beaustier_folders()
[Package beastier version 2.5.1 Index]