如何更改R highcharter柱状图上的bin宽度

时间:2016-12-15 15:36:20

标签: r highcharts

在R highcharter包生成的直方图的基本示例中:

hchart(diamonds$price)

bin宽度自动设置为200.我尝试了几个数据集,并且bin宽度不同。这让我觉得这是以某种方式自动设置的。如何手动设置?

1 个答案:

答案 0 :(得分:5)

hchart是一个通用函数,也适用于histogram个类。请尝试以下方法:

library(highcharter)
data(diamonds, package = "ggplot2")

h <- hist(diamonds$price, plot = FALSE)
hchart(h)


h2 <- hist(diamonds$price, breaks = 100, plot = FALSE)
hchart(h2)

因此,您可以使用基本hist函数创建所需的直方图,然后您可以使用高级图表对其进行绘制。