如何使直方图条在 R 中的 Plotly 中具有不同的颜色
How to make histogram bars to have different colors in Plotly in R
我正在使用 R 中的 plotly 包制作直方图,下面是图表。
这是我的代码:
plot_ly(test, x = ~count, type = 'histogram', marker = list(color = 'blue'))
我想知道是否有一种方法可以使图表从颜色的角度(例如,每个条形不同的颜色)更直观,如下图所示。
这是我在网上找到的一个例子:
提前致谢。
plot_ly(test, x = ~ count, type = 'histogram',
marker = list(color = viridis::viridis_pal(option = "C", direction = -1)(4)))
plot_ly(test, x = ~count, color = ~count) %>%
add_histogram()
我正在使用 R 中的 plotly 包制作直方图,下面是图表。
这是我的代码:
plot_ly(test, x = ~count, type = 'histogram', marker = list(color = 'blue'))
我想知道是否有一种方法可以使图表从颜色的角度(例如,每个条形不同的颜色)更直观,如下图所示。
这是我在网上找到的一个例子:
提前致谢。
plot_ly(test, x = ~ count, type = 'histogram',
marker = list(color = viridis::viridis_pal(option = "C", direction = -1)(4)))
plot_ly(test, x = ~count, color = ~count) %>%
add_histogram()