gpt4 book ai didi

R plotly : Adjust absolute marker size on 3D scatterplot

转载 作者:行者123 更新时间:2023-12-01 13:20:01 25 4
gpt4 key购买 nike

我正在 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))

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

最佳答案

你很接近,论点是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)

enter image description here

关于R plotly : Adjust absolute marker size on 3D scatterplot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50389355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com