cwrite | R Documentation |
Write a vector to a file using C for fast writing. Not much more complicated than that. It's faster than the base R write functions.
cwrite(y, l, file, showWarnings = TRUE)
y |
vector to write. |
l |
length of the vector; (you can provide length(y)). |
file |
output filename. |
d = rnorm(1000);
cwrite(d, length(d), "output.txt")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.