正如标题所示,我想从我的data.frame中绘制所有列,但我想以通用方式进行。我的所有专栏都是因素。 到目前为止,这是我的代码:
nums <- sapply(train_dataset, is.factor) #Select factor columns
factor_columns <- train_dataset[ , nums]
plotList <- list()
for (i in c(1:NCOL(factor_columns))){
name = names(factor_columns)[i]
p <- ggplot(data = factor_columns) + geom_bar(mapping = aes(x = name))
plotList[[i]] <- p
}
multiplot(plotList, cols = 3)
多点函数来自此处:http://www.cookbook-r.com/Graphs/Multiple_graphs_on_one_page_(ggplot2)/
我的数据集来自Kaggle(房屋定价预测):https://www.kaggle.com/c/house-prices-advanced-regression-techniques
编辑: 使用gridExtra作为@LAP建议也没有给我一个好结果。我使用它而不是多时隙。
nCol <- floor(sqrt(length(plotList)))
do.call("grid.arrange", c(plotList, ncol=nCol))
答案 0 :(得分:2)
使用tidyr,您可以执行以下操作:
compile' com.google.android.gms: play-services: 11.6.0