[R] Text Vector Printing And Storage

2003-09-17 Thread Phil Saunders
I am using R 1.7.1 on Windows, running a program on a daily basis which produces a vector of text results, where the length of the vector may be different each day. While I can display this vector in the R console using a cat instruction, I am presently unable to either print it out on a

RE: [R] Text Vector Printing And Storage

2003-09-17 Thread Pfaff, Bernhard
how about: ?write something like: your.text - c(date(), insert name of your R object, end ) write(your.text, your-text.txt, append=TRUE) date() and end should help you to separate your daily changing character vectors. HTH, Bernhard I am using R 1.7.1 on Windows, running a