我有以下示例数据:
d <- data.frame(x = rnorm(10), y = rnorm(10),
pheno1 = c(rep("a", 5), rep("b", 5)),
pheno2 = c(rep("d", 3), rep("e", 3), rep("f", 4)))
p <- ggplot(d, aes(x=x, y=y, colour = pheno1)) +
geom_point()
ggplotly(p)
现在我正在寻找一种方法将着色pheno1
方案pheno2
从plotly
.
我知道我可以改变配色方案
list(method = "restyle",
args = list("colorscale", "..."),
label = "...")
但我还没有找到任何可以改变着色基础数据的东西。