write.simplest | R Documentation |
Alternative to clipboard. This function takes a vector and appends it to a specified file.
write.simplest(
vec = LETTERS[1:11],
append = TRUE,
header = NULL,
prefix = kppws(substitute(vec), idate()),
file_path = "/groups/knoblich/Projects/connectomics/Analysis/__clipboard.txt"
)
vec |
A vector to be written to the file. Default: |
append |
Logical flag indicating whether to append the vector to the file. Default: |
header |
A string to be added to the header line (before the vector). Default: |
prefix |
A prefix to the header. Default: |
file_path |
A string specifying the file path where the vector will be written. Default:
|
A message indicating the length of the vector and the file path to which it was written.
## Not run:
write.simplest(letters[1:5], append = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.