Re: [R] output data in a fixed format

2005-01-21 Thread Uwe Ligges
Shin, David wrote: Dear List, I would like to write my output data to a file with the fixed format like what you can do in SAS. See ?write.matrix in package "MASS". Uwe Ligges For example: put @1( variable1 ) (10.5) @11 ( variable 2) ($5.) : : etc. Is there a way in "R"

[R] output data in a fixed format

2005-01-21 Thread Shin, David
Dear List, I would like to write my output data to a file with the fixed format like what you can do in SAS. For example: put @1( variable1 ) (10.5) @11 ( variable 2) ($5.) : : etc. Is there a way in "R" that would allow me to do the same thing? Thank you for your a