R - 条形图
条形图表示矩形条中的数据,条形的长度与变量的值成比例。R 使用函数barplot()创建条形图。R 可以在条形图中绘制垂直条形和水平条形。在条形图中,每个条形都可以指定不同的颜色。
句法
在 R 中创建条形图的基本语法是 -
barplot(H,xlab,ylab,main, names.arg,col)
以下是所使用参数的描述 -
- H是包含条形图中使用的数值的向量或矩阵。
- xlab是 x 轴的标签。
- ylab是 y 轴的标签。
- main是条形图的标题。
- name.arg是每个条形下出现的名称的向量。
- col用于为图表中的条形赋予颜色。
例子
仅使用输入向量和每个条形的名称即可创建简单的条形图。
下面的脚本将创建条形图并将其保存在当前 R 工作目录中。
# Create the data for the chart H <- c(7,12,28,3,41) # Give the chart file a name png(file = "barchart.png") # Plot the bar chart barplot(H) # Save the file dev.off()
当我们执行上面的代码时,它会产生以下结果 -
条形图标签、标题和颜色
可以通过添加更多参数来扩展条形图的功能。主要参数用于添加 标题。col参数用于向条形添加颜色。args.name是一个与输入向量具有相同数量值的向量,用于描述每个条形的含义。
例子
下面的脚本将创建条形图并将其保存在当前 R 工作目录中。
# Create the data for the chart H <- c(7,12,28,3,41) M <- c("Mar","Apr","May","Jun","Jul") # Give the chart file a name png(file = "barchart_months_revenue.png") # Plot the bar chart barplot(H,names.arg=M,xlab="Month",ylab="Revenue",col="blue", main="Revenue chart",border="red") # Save the file dev.off()
当我们执行上面的代码时,它会产生以下结果 -
组条形图和堆叠条形图
我们可以使用矩阵作为输入值来创建包含条形组和每个条形中的堆栈的条形图。
两个以上的变量表示为矩阵,用于创建组条形图和堆叠条形图。
# Create the input vectors. colors = c("green","orange","brown") months <- c("Mar","Apr","May","Jun","Jul") regions <- c("East","West","North") # Create the matrix of the values. Values <- matrix(c(2,9,3,11,9,4,8,7,3,12,5,2,8,10,11), nrow = 3, ncol = 5, byrow = TRUE) # Give the chart file a name png(file = "barchart_stacked.png") # Create the bar chart barplot(Values, main = "total revenue", names.arg = months, xlab = "month", ylab = "revenue", col = colors) # Add the legend to the chart legend("topleft", regions, cex = 1.3, fill = colors) # Save the file dev.off()