我正在尝试在R中使用aggr(df)软件包的功能VIM
我的问题是,无法在图形图中获得标题。
我的编码如下:

aggr(df,combined = TRUE, numbers=TRUE, cex.numbers=0.5)




函数aggr没有像main = "Bla"title="Bla"这样的属性。因此,我尝试执行以下操作:

 plot(df, aggr(df, combined = TRUE, numbers = TRUE, cex.numbers = 0.5), main = "Caption")


要么

 plot(df, aggr(df, combined = TRUE, numbers = TRUE, cex.numbers = 0.5), title = "Caption")


我的输出现在更改。现在有一个标题,但是我想要第一张带有标题的图片。

现在输出看起来像这样:

最佳答案

aggr使用R的内置图形包,因此您可以使用其title功能提供标题。

aggr(...)
title(main = "Missingness Plots")

关于r - R使用带有标题的VIM软件包的函数“aggr”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37813991/

10-12 19:16