ggplot2 polar plot axis label location

前端 未结 2 1588
不思量自难忘°
不思量自难忘° 2021-02-19 18:28

This is just a extension for a old question ggplot2 polar plot arrows \"Compass

You will find th

相关标签:
2条回答
  • 2021-02-19 19:00

    You have not provided code to reproduce the problem so this will be just a guess.

    I've used whitespace, \n in particular, to move text "away" in the past. Perhaps a custom formatter might work here. Here is how you can write a custom tick mark label formatter.

    If this fails, you can always hide the axis labels and paint them yourself using geom_text by adding another layer.

    Hope this helps. @hadley's book on ggplot2 is very good, by the way.

    0 讨论(0)
  • 2021-02-19 19:09

    I came across this question while I was trying to fix a similar issue myself. One workaround is pretty much covered in the answer to this post: Remove extra space and ring at the edge of a polar plot

    You would have to adjust the limits of the x scale to match your axis labels. You would also have to create a new scale bar corresponding to the radial length of your arrows (the 0-300 scale bar on the left side of your plot), since

    axis.text = element_blank
    

    takes the scale bar away as well.

    0 讨论(0)
提交回复
热议问题