我正在使用具有各种连续变量的数据库,并且必须使用 ggplot2 制作多个图。当我制作循环时,我不能将变量的名称放在每个情节的主要部分。我的循环是下一个:
library(ggplot2)
for(i in 1:10)
{
(qplot(Total, data = BaseClientes, geom = "histogram",binwidth = 50, fill = BaseClientes[,i])+geom_histogram(breaks =c(0,5000,10000,15000,20000,25000,30000,35000,40000)))
}
我的问题是我必须手动添加每个变量的名称,如下所示:
(qplot(Total, data = BaseClientes, geom = "histogram",binwidth = 50, fill = 4 Groups,main="4 Groups Monto Total")+geom_histogram(breaks =c(0,5000,10000,15000,20000,25000,30000,35000,40000)))
4 groups
变量的名称在哪里。是否可以在 for 循环中添加所有图形的每个变量的名称。谢谢。