R plotly:在3D散点图上调整绝对标记大小

时间:2018-05-17 10:36:37

标签: r plotly r-plotly

我正在R中使用plotly创建一个3D散点图,我希望减少所有点的标记大小。

library(plotly)
plot_ly(iris,x=~Petal.Width,y=~Sepal.Width,z=~Petal.Length) %>% 
add_markers(color=~Species)

default

我尝试设置sizes参数,但这似乎没有任何改变。

plot_ly(iris,x=~Petal.Width,y=~Sepal.Width,z=~Petal.Length) %>%
  add_markers(color=~Species,sizes=0.02)

还尝试了另一个参数sizeref。但是,没有任何反应。

plot_ly(iris,x=~Petal.Width,y=~Sepal.Width,z=~Petal.Length) %>%
  add_markers(color=~Species,marker=list(sizeref=0.02))

任何其他减少所有点标记大小的解决方案?或者我做错了什么?

1 个答案:

答案 0 :(得分:2)

你很接近,论证是Caused by: org.scalatest.exceptions.TestFailedException: 1 did not equal 0 ,标记应该进入verify而不是size

plot_ly()

enter image description here