标签: r plot data-visualization r-corrplot
当我在R-Studio中制作图形时,边距太小而无法切割绘图区域中的图形。下面的输出遵循this tutorial,它使用corrplot库来运行Pearson卡方残差。无论我如何调整绘图区域或缩放或输出,底部仍然被切断。我该如何调整呢?
corrplot
答案 0 :(得分:2)
我将图像显示得很好。也许您可以尝试使用mar
mar
corrplot()
这是我得到的一些利润:
corrplot(chisq$residuals, is.cor=FALSE, mar=c(5,2,2,1))
您也可以尝试移调矩阵,使其水平扩展,但不确定是否符合您的需求:
corrplot(t(chisq$residuals), is.cor=FALSE, mar=c(5,2,2,1))