R pch plotting in illustator as “q”

前端 未结 2 896
日久生厌
日久生厌 2021-02-14 04:24

Every time I use pch=21 for plotting in R with lattice, my plot plots normally in the R plotting window and in pdf (circles with borders); however when I open a saved pdf versio

2条回答
  •  生来不讨喜
    2021-02-14 05:01

    I think you might want to use:

     useDingbats = FALSE 
    

    as in:

    pdf("myplot.pdf", useDingbats=FALSE)
    plot()
    dev.off()
    

提交回复
热议问题