R负半径的极坐标图

时间:2018-10-24 12:20:41

标签: r plotly polar-coordinates

this question有关。

是否有一种方法可以设置布局r> = 0,而不会在R中使用plotly丢失极坐标图的负值?

默认情况下,它给出:

library(plotly)
theta<-seq(0,360,5)
r<-(180-theta)/180
p <- plot_ly(
  type = 'scatterpolar',
  r = ~r,
  theta = ~theta,
  mode = 'line',
)
p

Negative radius using polar plot

此处中心等于r = -1,而极坐标图的行为通常应使r> = 0。 通过将天使手动移动半圈并将负半径设为正,对于r <0,我们得到所需的图:

positiv radius using polar plot

是否为此感到惊讶?我在文档中找不到任何内容,但没有降低负半径。

0 个答案:

没有答案