Message-ID: <x2ek9cl0hy.fsf@turmalin.kubism.ku.dk>
Date: 2005-08-02T17:19:53Z
From: Peter Dalgaard
Subject: how to print a data.frame without row.names
In-Reply-To: <17135.41487.149836.798318@stat.math.ethz.ch>
Martin Maechler <maechler at stat.math.ethz.ch> writes:
> >>>>> "Heinz" == Heinz Tuechler <tuechler at gmx.at>
> >>>>> 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
~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk) FAX: (+45) 35327907