更改 R 中 ggplot2 图形条形图中条形的起点。

r programmingserver side programmingprogramming

要更改 R 中 ggplot2 图形条形图中条形的起点,我们可以使用 ggplot2 包中的 coord_cartesian 函数和 ylim 参数,我们可以在其中更改条形图值的起点和终点。

查看下面给出的示例以了解如何完成。

示例

以下代码片段创建了一个示例数据框 −

x<-c("A","B")
y<-c(45,42)
df<-data.frame(x,y)
df

创建了以下数据框

  x  y
1 A 45
2 B 42

要加载 ggplot2 包并在上面创建的数据框中为 df 中的数据创建条形图,请将以下代码添加到上面的代码片段 −

x<-c("A","B")
y<-c(45,42)
df<-data.frame(x,y)
library(ggplot2)
ggplot(df,aes(x,y))+geom_bar(stat="identity")

输出

如果将上述所有代码片段作为单个程序执行,则会生成以下输出 −

要在上述创建的数据框中为 df 中的数据创建条形图,条形从 10 开始,请将以下代码添加到上述代码片段 −

x<-c("A","B")
y<-c(45,42)
df<-data.frame(x,y)
library(ggplot2)
ggplot(df,aes(x,y))+geom_bar(stat="identity")+coord_cartesian(ylim=c(10,50))

输出

如果将上述所有代码片段作为一个程序执行,则会生成以下输出 −


相关文章