r - save the output of fix() or page() command to a text file -


how can save content of fix() or page() text file in r?

for example:

 hcity.d2 <- hclust(uscitiesd, "ward.d2") # example of hclust in r file 

i want save output of page(hcity.d2) in text file.

we can use dput() function.

dput(hcity.d2,"test.txt")


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -