write - Write RevObject to file
| ... : | RevObject (pass by value) |
| A variable to write. | |
| ... : | RevObject (pass by const reference) |
| Additional variables to write. | |
| filename : | String (pass by value) |
| Writing to this file, or to the screen if name is empty. | |
| append : | Bool (pass by value) |
| Append or overwrite existing file? | |
| Default : FALSE | |
| separator : | String (pass by value) |
| How to separate values between variables. | |
| Default : |
# define RevObject to write
x <- matrix([[1, 1],[1, 1]])
# write to CSV file
write(x, "/path/to/file/filename.csv", false, ",")