Re: [R] How to save Results in svg format

2020-12-04 Thread David Carlson
Another option is to open the svg file in Inkscape which is a vector-based editor. If you are planning to do this and work with the text labels, it is easier to use svglite() in the package of the same name which draws text as characters that can be selected and edited more easily than in files

Re: [R] How to save Results in svg format

2020-12-04 Thread Spencer Graves
I often have trouble with font sizes in the svg files, because they rarely are the same as what I see on the screen. I then have to read the documentation for "par" and play with the cex, cex.axis, cex.lab, cex.main, and cex.sub parameters until I get what I want in the svg file. I may

Re: [R] How to save Results in svg format

2020-12-03 Thread David Carlson
If you look at the examples on the manual pages for the upgma() and NJ() functions you will see that the results are generally sent to the plot() function. To save that graph as an .svg file you need to open a graphics device using the svg() function, plot the data, and close the graphics device.