我正在使用R中的plotly包制作直方图,下面是图表。
这是我的代码:
plot_ly(test, x = ~count, type = 'histogram', marker = list(color = 'blue'))
我想知道是否有一种方法可以使颜色的图表更直观(例如,每个条形为不同的颜色),如下图所示。
以下是我在网上找到的示例:
谢谢。
答案 0 :(得分:2)
plot_ly(test, x = ~ count, type = 'histogram',
marker = list(color = viridis::viridis_pal(option = "C", direction = -1)(4)))
答案 1 :(得分:1)
plot_ly(test, x = ~count, color = ~count) %>%
add_histogram()