Recently, while trying to make an R plot ready for a presentation, I exported my ggplot as a pdf, importing it into Inkscape. To my dismay, all of my points turned to q’s – and I ended up having to either make do with overlapping text (the reason I was importing my PDF into Inkscape in the first place), or suffer q’s for points. For those that don't know - Inkscape is a piece of free vector graphics editing software, similar to Adobe Illustrator.
I ultimately remembered that R can plot different shapes, and that all shapes may not respond in the same way in Inkscape – luckily I was right. There are 25 different shapes that R produces, and some of these don't change when imported into Inkscape
R Code:
plot(x=1:25,y=rep(1,25), pch = 1:25, cex=3)
savePlot("plot.pdf",type="pdf")
Luckily it is only circles that are affected, and any shape without a circle is completely fine.
A list of the R shapes that work with Inkscape are below
2,3,4,5,6,7,8,9,11,12,14,15,17,18,22,23,24,25
And a list of R shapes that don’t work with Inkscape:
1,10,13,16,19,20,21

