R plotly:调整 3D 散点图上的绝对标记大小
R plotly: Adjust absolute marker size on 3D scatterplot
我正在使用 R 中的 plotly 创建 3D 散点图,我想减小所有点的标记大小。
library(plotly)
plot_ly(iris,x=~Petal.Width,y=~Sepal.Width,z=~Petal.Length) %>%
add_markers(color=~Species)
我尝试设置 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))
还有其他解决方案可以减小所有点的标记大小吗?还是我做错了什么?
你很接近,参数是 size
,标记应该进入 plot_ly()
而不是 add_markers()
。
library(plotly)
plot_ly(iris,x=~Petal.Width,y=~Sepal.Width,z=~Petal.Length,
marker = list(size = 20)) %>%
add_markers(color=~Species)
我正在使用 R 中的 plotly 创建 3D 散点图,我想减小所有点的标记大小。
library(plotly)
plot_ly(iris,x=~Petal.Width,y=~Sepal.Width,z=~Petal.Length) %>%
add_markers(color=~Species)
我尝试设置 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))
还有其他解决方案可以减小所有点的标记大小吗?还是我做错了什么?
你很接近,参数是 size
,标记应该进入 plot_ly()
而不是 add_markers()
。
library(plotly)
plot_ly(iris,x=~Petal.Width,y=~Sepal.Width,z=~Petal.Length,
marker = list(size = 20)) %>%
add_markers(color=~Species)