R极坐标方程玫瑰曲线图问题

时间:2018-10-24 02:21:26

标签: r plotly polar-coordinates

我正在尝试使用R绘制极坐标方程。但是,当我绘制玫瑰曲线时,我没有在图中得到正确数量的花瓣。

我的代码...

library(plotly)

f <- function(){
   output <- matrix(ncol=2, nrow = 361)
   for (i in 0:360){
        output[i,1] <- i
       output[i,2] <- 3 * cos(2 * (i * pi/180))
   }
   return(output)
 }
 mf <- f()
 df <- data.frame("theta" = mf[,1], "r"=mf[,2])

 p <- plot_ly(
     df,
     type = 'scatterpolar',
     mode = 'lines'
   ) %>%
   add_trace(
     r = ~r,
     theta = ~theta,
     name = 'Function',
     line = list(
        color = 'red'
    )
   ) %>%
   layout(
      title = 'Polar Graph',
      font = list(
        family = 'Arial',
        size = 12,
        color = '#000'
      ),
      showlegend = F
 )
 p

结果图...

Graph

图形应类似于...

Graph

有人可以告诉我我在做什么错吗,或者是否有更简单的方法可以在R中做到这一点?谢谢。

1 个答案:

答案 0 :(得分:1)

对于常见的极坐标图,我习惯于半径为零的中心,但在您的情况下,该图的中心半径为-3。因此,使用plot_lt()时不会获得预期的结果。 plot_lt()可能允许您在配置中更改此设置,但我找不到它。

可能的解决方案是移动角度和半径,以使半径始终大于零。这在下面的函数“ shift_center_zero”中完成。对于每个负半径,乘以-1即可为正,对于这些行进行角度偏移,以使半径位于中心的另一侧。角度偏移是通过增加半个圆(180度)并采用完整圆的模量(360度)来限制角度,使其在单个圆内。

shift_center_zero <- function(m){
      m_negative <- m[,2]<0 # get negative rows
      m[m_negative,1] <- (m[m_negative,1]+180)%%360 # angle shift
      m[m_negative,2] <- -1*m[m_negative,2] # radius shift
      return(m)
    }

其余的代码几乎相同,使用nrow = 360 insted 361来删除NA和使用新的“ shift_center_zero”功能。

library(plotly)

f <- function(){
  output <- matrix(ncol=2, nrow = 360)
  for (i in 0:360){
    output[i,1] <- i
    output[i,2] <- 3 * cos(2 * (i * pi/180))
  }
  return(output)
}
mf <- f()

# make the shift
mf<-shift_center_zero(mf)

df <- data.frame("theta" = mf[,1], "r"=mf[,2])


p <- plot_ly(
  df,
  type = 'scatterpolar',
  mode = 'lines'
) %>%
  add_trace(
    r = ~r,
    theta = ~theta,
    name = 'Function',
    line = list(
      color = 'red'
    )
  ) %>%
  layout(
    title = 'Polar Graph',
    font = list(
      family = 'Arial',
      size = 12,
      color = '#000'
    ),
    showlegend = F
  )
p

The resulting plot