kittygirl
kittygirl

Reputation: 2443

How to make plot big enough to see every word in R?

plot pic

enter image description here As the pic resolution is not high enough, I cannot read every word in my cluster dendogram.

How to fix this problem?

Upvotes: 1

Views: 355

Answers (1)

kittygirl
kittygirl

Reputation: 2443

As @DavidZ said, we can change the resolution like below;

You can save it by

png("plot.png", width=20, height=20, units="in", res=500)
plot(...) 
dev.off()

plot.png should be saved in your current working directory.

Upvotes: 1

Related Questions