开发手册 欢迎您!
软件开发者资料库

R - Bar图表

R Bar Charts - 从简单和简单的步骤学习R编程语言,从基本到高级概念,包括R安装,语言基础,语法,文字,数据类型,变量,函数,循环,决策,模块,数组,列表,矢量,数学,矩阵,列表,统计,图形,Excel数据,csv数据。

条形图表示矩形条中的数据,条的长度与变量的值成比例. R使用函数 barplot()来创建条形图.
R可以在条形图中绘制垂直条和水平条.
在条形图中,每个条形都可以有不同的颜色.

语法

创建一个基本语法R中的条形图是 :

barplot(H,xlab,ylab,main,names.arg,col)

以下是所用参数的说明及减号;

  • H 是包含条形图中使用的数值的矢量或矩阵.

  • xlab 是x轴的标签.

  • ylab 是y轴的标签.

  • main 是条形图的标题.

  • names.arg 是每个栏下出现的名字的矢量.

  • col 用于给出颜色到图表中的条形.

示例

仅使用输入向量创建简单条形图以及每个柱的名称.

下面的脚本将在当前的R工作目录中创建并保存条形图.

# Create the data for the chartH <- c(7,12,28,3,41)# Give the chart file a namepng(file = "barchart.png")# Plot the bar chart barplot(H)# Save the filedev.off()

当我们执行上面的代码时,它产生以下结果 :

条形图使用R

条形图标签,标题和颜色

可以通过添加更多参数来扩展条形图的功能. main 参数用于添加标题. col 参数用于向条形图添加颜色. args.name 是一个与输入向量具有相同数值的向量,用于描述每个条的含义.

示例

下面的脚本将在当前的R工作目录中创建并保存条形图.

# Create the data for the chartH <- c(7,12,28,3,41)M <- c("Mar","Apr","May","Jun","Jul")# Give the chart file a namepng(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 filedev.off()

当我们执行上面的代码时,它产生以下结果 :

标题使用R的条形图

组条形图和堆积条形图

我们可以使用矩阵作为输入值,在每个条形图中创建条形图和堆栈组的条形图./p>

两个以上的变量表示为矩阵,用于创建组条形图和堆积条形图.

# 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 namepng(file = "barchart_stacked.png")# Create the bar chartbarplot(Values, main = "total revenue", names.arg = months, xlab = "month", ylab = "revenue", col = colors)# Add the legend to the chartlegend("topleft", regions, cex = 1.3, fill = colors)# Save the filedev.off()

使用R的堆积条形图