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()
当我们执行上面的代码时,它会产生以下结果 -
X 和 Y 值的范围
要指定X轴和Y轴允许的值范围,我们可以使用xlim和ylim参数。
每个条形的宽度可以通过使用中断来确定。
# 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()
当我们执行上面的代码时,它会产生以下结果 -