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
Post a Comment