R 简明教程

R - Histograms

直方图表示按范围分段的变量值的频率。直方图类似于条形图,但区别在于它将值分组为连续范围。直方图中的每个条形表示该范围内存在的值的数量的高度。

R 使用 hist() 函数创建直方图。该函数以向量作为输入,并使用更多参数绘制直方图。

Syntax

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

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

以下是所用参数的描述 -

  1. v 是一个包含直方图中使用的数值的向量。

  2. main 表示图表标题。

  3. col 用于设置条形颜色。

  4. border 用于设置各个条形的边框颜色。

  5. xlab 用于给出 x 轴的描述。

  6. xlim 用于指定 x 轴上的值范围。

  7. ylim 用于指定 y 轴上的值范围。

  8. breaks 用于指定每个条形的宽度。

Example

使用 input 向量、标签、col 和边框参数创建简单的直方图。

下方给出的脚本将在当前 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

Range of X and Y values

若要指定 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 lim breaks