带有图案填充的 R Plotly 等高线图

问题描述 投票:0回答:1

我对在 R 中使用

plotly
包相当陌生。我目前正在尝试使用 R 中的
plotly
包创建等高线图。对于等高线图的颜色,我想添加一个图案填充,例如使用以下代码创建的条形图:

plot_ly(x = LETTERS[1:3],
        y = 6:4,
        color = letters[8:10],
        marker = list(pattern = list(shape = "x")),
        type = "bar")

但是,

marker = list(pattern = list(shape="x"))
不适用于
type = "contour"

有没有办法填充图案和颜色?

r plotly
1个回答
0
投票

看来需要将

marker = list(pattern...)
更改为
marker = list(color...)
。然后,如果您将其输入控制台,则可以指定至少带有
colors()
的任何颜色。

library(plotly)
plot_ly(x = LETTERS[1:3],
        y = 6:4,
        color = letters[8:10],
        marker = list(color = c("darkgrey","yellow","turquoise3")),
        type = "bar")
© www.soinside.com 2019 - 2024. All rights reserved.