Thanks Yihui and to others who replied privately.
Very helpful information.
Regards,
Paul
pgseye wrote:
>
> Hi,
>
> Am wanting to save the summary of a PCA to file.
>
> Have tried:
>
>> write.table(summary(PCA), file="PCAvar.txt", sep="\t")
>
> but receive:
>
> Error in as.data.frame.de
Hi,
The returned value of summary.princomp() is NOT a data.frame and
cannot be coerced into a data.frame (it's a list), so you cannot write
it into a file using write.table().
I guess what you really intend to write is:
#
x <- summa
2 matches
Mail list logo