我正在尝试在 R 中使用 ipairs 包,并且在制作图像散点图时遇到了一些问题。我的数据集最初有大约 80 列,但我认为这是导致问题的原因,将其减少到 49 列。在此之后我仍然收到错误。下面是我的代码:
> length(names(ameshouse))
[1] 49
> ameshouse $SalePrice <- as.factor(ameshouse $SalePrice)
> zmax <- ipairs(ameshouse, pixs=.5, main="Ames Housing")
Error in layout(lom, widths = c(rep(1, nc), d.legend, w.legend), heights = c(h.main, :
too many rows in layout, limit 50
数据集确实有大约 2900 行,但肯定不是问题,任何人有任何建议或可能有其他优于 ipairs 的包?
先谢谢了。