Martin Maechler <[EMAIL PROTECTED]> writes:

> >>>>> "Heinz" == Heinz Tuechler <[EMAIL PROTECTED]>
> >>>>>     on Tue, 02 Aug 2005 17:46:07 +0200 writes:
> 
>   .......................
> 
>     Heinz> I tried this, but then the column headers and column
>     Heinz> contents are not aligned.
> 
>   ........................
> 
> Use the tabulator if you need them aligned :
> 
> write.table(USArrests, row.names = FALSE, sep = "\t")

Unless a column or a header is 8 chars or wider (and UrbanPop is!).

This seems to do it:

  x <- as.matrix(format(USArrests))
  rownames(x) <- rep("", nrow(x))
  print(x, quote=FALSE, right=TRUE)

-- 
   O__  ---- Peter Dalgaard             Ă˜ster Farimagsgade 5, Entr.B
  c/ /'_ --- Dept. of Biostatistics     PO Box 2099, 1014 Cph. K
 (*) \(*) -- University of Copenhagen   Denmark          Ph:  (+45) 35327918
~~~~~~~~~~ - ([EMAIL PROTECTED])                  FAX: (+45) 35327907

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to