https://laravel.com/docs/5.8/errors#the-exception-handler我不想为一个数据帧创建不同的不同图,而是想为一个数据帧创建一个密度图矩阵,从中可以看到一个图中的所有列。为了单独创建它,我使用以下代码。如何在一个图中获得所有列?
loan_amnt <- density(out_data$loan_amnt)
plot(loan_amnt, main="Loan Amount")
polygon(loan_amnt, col="red", border="blue")
答案 0 :(得分:1)
您可以合并库 dplyr 中的gather()
和 ggplot2 中的facet_grid()
或facet_wrap()
。
使用gather
,将所有列名重新分组到一个变量中(这些变量的值在第二个变量中),然后使用ggplot
和facet_wrap
来构建图,它将使用列名称为变量的每个级别创建一个图。