R - 直方图



直方图表示变量值的频率,这些值被分桶到不同的范围内。直方图类似于条形图,但不同之处在于它将值分组到连续的范围内。直方图中的每个条形表示该范围内存在的数值的数量。

R 使用 **hist()** 函数创建直方图。此函数接受向量作为输入,并使用一些其他参数来绘制直方图。

语法

使用 R 创建直方图的基本语法如下:

hist(v,main,xlab,xlim,ylim,breaks,col,border)

以下是所用参数的描述:

  • **v** 是包含直方图中使用的数值的向量。

  • **main** 指示图表的标题。

  • **col** 用于设置条形的颜色。

  • **border** 用于设置每个条形的边框颜色。

  • **xlab** 用于给出 x 轴的描述。

  • **xlim** 用于指定 x 轴上的值范围。

  • **ylim** 用于指定 y 轴上的值范围。

  • **breaks** 用于指定每个条形的宽度。

示例

使用输入向量、标签、颜色和边框参数创建一个简单的直方图。

以下脚本将创建直方图并将其保存到当前 R 工作目录。

# Create data for the graph.
v <-  c(9,13,21,8,36,22,12,41,31,33,19)

# Give the chart file a name.
png(file = "histogram.png")

# Create the histogram.
hist(v,xlab = "Weight",col = "yellow",border = "blue")

# Save the file.
dev.off()

执行以上代码后,将产生以下结果:

Histogram Of V

X 和 Y 值的范围

要指定 X 轴和 Y 轴上允许的值范围,可以使用 xlim 和 ylim 参数。

每个条形的宽度可以使用 breaks 参数来确定。

# Create data for the graph.
v <- c(9,13,21,8,36,22,12,41,31,33,19)

# Give the chart file a name.
png(file = "histogram_lim_breaks.png")

# Create the histogram.
hist(v,xlab = "Weight",col = "green",border = "red", xlim = c(0,40), ylim = c(0,5),
   breaks = 5)

# Save the file.
dev.off()

执行以上代码后,将产生以下结果:

Histogram Line Breaks
广告