2

I have tried generating higher quality of data visualization plots from RStats. I tried increasing frame dimensions but it's still max at about ~350kb. How do I generate higher quality images from RStats?

BioIsaac
  • 23
  • 4
  • 1
    What is the quality problem exactly? Is the resolution which too small? What kind of plot and how do you export it as an image? A small jpeg file size doesn't necessarily mean low quality, plots are often simple images which get compressed very well. – Erwan Jan 05 '21 at 22:51
  • 1
    Yes, the resolution is small. ggplot graphs which I export as jpgs – BioIsaac Jan 06 '21 at 06:59

1 Answers1

0

I think if you save the plot as SVG (Scalable Vector Graphics) you can scale the image to any size. See this answer for an example.

Second, if you want to print larger, you might need to tweak the DPI (Dots per inch), as done here.

Shayan Shafiq
  • 1,012
  • 4
  • 11
  • 24