Displaying 1 result from an estimated 1 matches for "28x28".
Did you mean:
2828
2001 May 02
2
Export to File...
Hi,
I've been reading the Data Import and Export manual (page 25 on Connection
chapter) but somehow I can't manage to get what I want.
I have a 28x28 distance matrix, which I would like to export to a file.
What I did was something like:
zz <- file("ex.data", "w") # open an output file connection
cat( traffic.manDist, file = zz ) # traffic.manDist is my matrix name
close(zz)
But instead of exporting the matr...