如何在R的Plotly中使直方图条具有不同的颜色

时间:2019-03-08 14:27:35

标签: r ggplot2 r-plotly

我正在使用R中的plotly包制作直方图,下面是图表。

enter image description here

这是我的代码:

plot_ly(test, x = ~count, type = 'histogram',  marker = list(color = 'blue'))

我想知道是否有一种方法可以使颜色的图表更直观(例如,每个条形为不同的颜色),如下图所示。

以下是我在网上找到的示例:

enter image description here

谢谢。

2 个答案:

答案 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()