我已经制作了数据帧df的corrplot。遗憾的是,corrplot不适合屏幕。缺少顶部的corrplot。我怎样才能让它适合屏幕?
答案 0 :(得分:0)
如果我使用mar作为corrplot的一部分指定边距,它对我有用。
library(corrplot)
M <- cor(mtcars)
corrplot(M, method="circle", mar=c(1,1,1,1))
corrplot(M, method="circle", mar=c(3,3,3,3))
边距的顺序是底部,左侧,顶部和右侧。
如果我指定上限也适用于我
corrplot(M, method="circle", mar=c(3,3,5,3), type = "upper")
答案 1 :(得分:0)